chenchuang 3 jaren geleden
bovenliggende
commit
321cae1319

+ 3 - 3
src/app/routes/efficiency-report/list/list.component.html

@@ -141,7 +141,7 @@
         <th nzAlign="center">订单数</th>
         <th>工序</th>
        
-        <th>人员编码</th>
+        <!-- <th>人员编码</th> -->
         <th>姓名</th>
         <!-- <th>上岗时间</th>
         <th>下岗时间</th> -->
@@ -161,7 +161,7 @@
         <td nzAlign="center">{{item.numberOfTasks}}</td>
         <td>{{item.fbsTechnologicalProcessItemName}}</td>
        
-        <td>{{item.personnelCode}}</td>
+        <!-- <td>{{item.personnelCode}}</td> -->
         <td>{{item.personnelName}}</td>
         <!-- <td>{{item.firstTime}}</td>
         <td>{{item.finalTime}}</td> -->
@@ -179,7 +179,7 @@
         <!-- <td></td> -->
         <td></td>
         <td nzAlign="center">{{totalList.numberOfTasks}}</td>
-        <td></td>
+        <!-- <td></td> -->
         <td></td>
         <td></td>
         <td nzAlign="center">{{totalList.standardWorkingHoursProcess}}</td>

+ 3 - 2
src/app/routes/efficiency-report/list/list.component.ts

@@ -169,7 +169,7 @@ export class EfficiencyReportListComponent implements OnInit {
         let data=[];
         //设置导出头
         let title=[
-          // ['项目编号'],
+          ['项目编号'],
           ['项目名称'],
           ['工作中心'],
           ['订单编号'],
@@ -190,7 +190,7 @@ export class EfficiencyReportListComponent implements OnInit {
         if(dataList){
           dataList.forEach(element => {
             let row=[];
-            // row.push(element.costItemCode)
+            row.push(element.costItemCode)
             row.push(element.projectName)
             row.push(element.workCenter)
             row.push(element.orderNumber)
@@ -217,6 +217,7 @@ export class EfficiencyReportListComponent implements OnInit {
             '',
             '',
             '',
+            '',
             this.totalList.numberOfTasks,
             '',
             '',