|
@@ -6,7 +6,13 @@
|
|
|
var ServiceWorkhour={
|
|
|
// 根据物料统计
|
|
|
getByMaterial:function(){
|
|
|
- return MethodGetService.methodGet("/workingStatistics/fbsWorkingStatistics/getByMaterial");
|
|
|
+ var byMaterial=MethodGetService.methodGet("/workingStatistics/fbsWorkingStatistics/getByMaterial");
|
|
|
+ if(!byMaterial){
|
|
|
+ byMaterial={
|
|
|
+ "生产":0
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return byMaterial;
|
|
|
// return MethodGetService.methodGet("/fbsWorkshopDispatchList/fbsWorkshopDispatchList/getProductHoursMonthReport");
|
|
|
// return {
|
|
|
// "物料A 20*30":250,
|
|
@@ -23,7 +29,15 @@ var ServiceWorkhour={
|
|
|
// "物料C":200,
|
|
|
// "物料D":400,
|
|
|
// };
|
|
|
- return MethodGetService.methodGet("/workingStatistics/fbsWorkingStatistics/getByMaterial?type=1");
|
|
|
+ var map=MethodGetService.methodGet("/workingStatistics/fbsWorkingStatistics/getByMaterial?type=1");
|
|
|
+ if(!map||Object.keys(map).length<=0){
|
|
|
+ map={
|
|
|
+ "生产":0
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ return map;
|
|
|
// return MethodGetService.methodGet("/fbsWorkshopDispatchList/fbsWorkshopDispatchList/getByMaterial?type=1");
|
|
|
},
|
|
|
// 获取物料的标准工时和实际工时
|
|
@@ -81,7 +95,7 @@ var ServiceWorkhour={
|
|
|
item.sum2 = item.manHoursCompleted;
|
|
|
});
|
|
|
|
|
|
- if(list){
|
|
|
+ if(list&&list.length>0){
|
|
|
var remainingQuantity=3-(list.length%3);
|
|
|
if(remainingQuantity!=3){
|
|
|
for(var i=0;i<remainingQuantity;i++){
|
|
@@ -89,8 +103,14 @@ var ServiceWorkhour={
|
|
|
list.push({label:"",label1:"标准工时",sum1:0,label2:"实际工时",sum2:0})
|
|
|
}
|
|
|
}
|
|
|
+ }else{
|
|
|
+ list.push({label:"",label1:"标准工时",sum1:0,label2:"实际工时",sum2:0});
|
|
|
+ list.push({label:"",label1:"标准工时",sum1:0,label2:"实际工时",sum2:0});
|
|
|
+ list.push({label:"",label1:"标准工时",sum1:0,label2:"实际工时",sum2:0});
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+
|
|
|
return list;
|
|
|
|
|
|
}
|