Просмотр исходного кода

添加工序字段 流程图修改

yusheng 1 год назад
Родитель
Сommit
9f3fb00859

+ 7 - 0
src/views/bpm/handleTask/components/purchaseOrder/invoice/receiptInfo.vue

@@ -210,6 +210,13 @@
             slot: 'orderTotalCount',
             align: 'center'
           },
+          {
+            minWidth: 120,
+            prop: 'taskName',
+            label: '工序',
+            slot: 'taskName',
+            align: 'center'
+          },
           {
             width: 80,
             prop: 'measuringUnit',

+ 7 - 0
src/views/bpm/handleTask/components/purchaseOrder/outSourceSend/detailDialog.vue

@@ -241,6 +241,13 @@
             slot: 'totalCount',
             align: 'center'
           },
+          {
+            minWidth: 150,
+            prop: 'taskName',
+            label: '工序',
+            slot: 'taskName',
+            align: 'center'
+          },
           {
             width: 120,
             prop: 'measuringUnit',

+ 7 - 0
src/views/bpm/handleTask/components/purchaseOrder/outSourceSendCk/inventoryTable.vue

@@ -312,6 +312,13 @@ export default {
           headerSlot: 'headerTotalCount',
           align: "center"
         },
+        {
+            minWidth: 150,
+            prop: 'taskName',
+            label: '工序',
+            slot: 'taskName',
+            align: 'center'
+          },
         // {
         //   width: 120,
         //   prop: 'orderTotalCount',

+ 2 - 2
src/views/bpm/processInstance/detail.vue

@@ -183,9 +183,9 @@
           this.tasks = [];
           // 移除已取消的审批
           response.forEach((task) => {
-            if (task.result !== 4) {
+            // if (task.result !== 4) {
               this.tasks.push(task);
-            }
+            // }
           });
           // 排序,将未完成的排在前面,已完成的排在后面;
           this.tasks.sort((a, b) => {