From beb9e876e5db5568623593f0c0fa18277ef98401 Mon Sep 17 00:00:00 2001 From: kilo Date: Thu, 3 Nov 2022 15:57:10 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/activiti/mixins/activitiMixin.js | 4 ++++ src/views/activiti/processInsManage.vue | 16 +++++++++------ .../operationlog/ProcessOperationLogList.vue | 20 +++++++++++-------- .../ProcessWasteMaterialsLists.vue | 4 ++-- 4 files changed, 28 insertions(+), 16 deletions(-) diff --git a/src/views/activiti/mixins/activitiMixin.js b/src/views/activiti/mixins/activitiMixin.js index c8a2f60..2f32b5b 100644 --- a/src/views/activiti/mixins/activitiMixin.js +++ b/src/views/activiti/mixins/activitiMixin.js @@ -82,6 +82,10 @@ export const activitiMixin = { }, historicDetail:function () { return () => import(`@/views/activiti/historicDetail`) + }, + //流程操作记录显示地址 + operatingRecordDetail:function (){ + return () => import('@/views/operationlog/ProcessOperationLogList') } }, methods:{ diff --git a/src/views/activiti/processInsManage.vue b/src/views/activiti/processInsManage.vue index 11f463f..181387a 100644 --- a/src/views/activiti/processInsManage.vue +++ b/src/views/activiti/processInsManage.vue @@ -142,6 +142,11 @@ :processData="lcModa.processData" :isNew = "lcModa.isNew" @close="lcModa.visible=false,lcModa.disabled = false"> + +
+ +
+
@@ -187,6 +192,9 @@ export default { }, modalLsVisible: false, procInstId: '', + //用于控制流程操作记录的显示 + operatingRecord: false, + tableId: '', lcModa: { title:'', disabled:false, @@ -274,12 +282,8 @@ export default { this.$message.error("流程主表id不存在"); return; } - this.lcModa.disabled = true; - this.lcModa.title = '查看流程业务信息:'+v.name; - this.lcModa.formComponent = this.getFormComponent(v.routeName).component; - this.lcModa.processData = v; - this.lcModa.isNew = false; - this.lcModa.visible = true; + this.tableId = v.tableId; + this.operatingRecord = true; }, detail(r) { if (!r.routeName) { diff --git a/src/views/operationlog/ProcessOperationLogList.vue b/src/views/operationlog/ProcessOperationLogList.vue index 9697cf4..00311d1 100644 --- a/src/views/operationlog/ProcessOperationLogList.vue +++ b/src/views/operationlog/ProcessOperationLogList.vue @@ -48,6 +48,7 @@ import { JeecgListMixin } from '@/mixins/JeecgListMixin' import ProcessOperationLogModal from './modules/ProcessOperationLogModal' import JSuperQuery from '@/components/jeecg/JSuperQuery.vue' + import { getAction } from '@api/manage' export default { name: 'ProcessOperationLogList', @@ -56,8 +57,18 @@ ProcessOperationLogModal, JSuperQuery, }, + props: { + tableId: { + type: String, + default: '', + required: true + }, + }, data () { return { + queryParam: { + processRelevanceId: this.tableId + }, description: '流程操作记录', // 表头 columns: [ @@ -88,14 +99,6 @@ customRender:function (text) { return !text?"":(text.length>10?text.substr(0,10):text) } - }, - { - title: '操作', - dataIndex: 'action', - align:"center", - fixed:"right", - width:147, - scopedSlots: { customRender: 'action' } } ], url: { @@ -119,6 +122,7 @@ }, }, methods: { + initDictConfig(){ }, getSuperFieldList(){ diff --git a/src/views/wastematerials/ProcessWasteMaterialsLists.vue b/src/views/wastematerials/ProcessWasteMaterialsLists.vue index 252126f..b797be7 100644 --- a/src/views/wastematerials/ProcessWasteMaterialsLists.vue +++ b/src/views/wastematerials/ProcessWasteMaterialsLists.vue @@ -232,7 +232,7 @@ { title:'单价(元)', align:"center", - dataIndex: 'price' + dataIndex: 'materialPrice' }, { title:'金额(元)', @@ -369,7 +369,7 @@ fieldList.push({type:'string',value:'freightSpace',text:'库存仓位',dictCode:''}) fieldList.push({type:'string',value:'materialsUnit',text:'计量单位',dictCode:''}) fieldList.push({type:'int',value:'materialQuantity',text:'数量',dictCode:''}) - fieldList.push({type:'BigDecimal',value:'price',text:'单价',dictCode:''}) + fieldList.push({type:'BigDecimal',value:'materialPrice',text:'单价',dictCode:''}) fieldList.push({type:'BigDecimal',value:'materialAmount',text:'金额',dictCode:''}) fieldList.push({type:'date',value:'productionDate',text:'生产日期'}) fieldList.push({type:'String',value:'expirationDate',text:'保质期'}) From 34349505ff9432fca1cb4197a27017cd1ffc45a2 Mon Sep 17 00:00:00 2001 From: caoyizhong <1270296080@qq.com> Date: Thu, 3 Nov 2022 16:41:39 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=87=87=E8=B4=AD?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2=E6=B5=81=E7=A8=8B=E6=98=BE=E7=A4=BA=E6=95=B0?= =?UTF-8?q?=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../form/ProcessMaterialsAllotForm.vue | 9 +- .../activiti/form/ProcessUdgetPlanForm.vue | 216 ++++++++++++------ .../ProcessSuppliesStrongerList.vue | 2 +- .../ProcessSuppliesStrongerLists.vue | 4 +- 4 files changed, 160 insertions(+), 71 deletions(-) diff --git a/src/views/activiti/form/ProcessMaterialsAllotForm.vue b/src/views/activiti/form/ProcessMaterialsAllotForm.vue index 7f34026..62b2f73 100644 --- a/src/views/activiti/form/ProcessMaterialsAllotForm.vue +++ b/src/views/activiti/form/ProcessMaterialsAllotForm.vue @@ -365,10 +365,10 @@ if (item.merchandiseNewsId === record.row.equipment) { materialName = { name: item.merchandiseName, - unit: item.unit, + unit: item.materialsUnit, supplierName: item.supplierName, - price: item.price, - number : item.number === undefined ? 0 : item.number, + price: item.materialPrice, + number : item.residueNumber === undefined ? 0 : item.residueNumber, } } }) @@ -398,7 +398,7 @@ this.bigIdMerchandiseNewsList.forEach(item => { if (item.merchandiseNewsId === record.row.equipment) { materialName = { - number : item.number === undefined ? 0 : item.number, + number : item.residueNumber === undefined ? 0 : item.residueNumber, } } }) @@ -501,6 +501,7 @@ let par = { delFlag: 0, accountingAttributes: value, + sysOrgCode: this.data.sysOrgCode } getAction(this.url.descriptionRake,par).then((res)=>{ if(res.success){ diff --git a/src/views/activiti/form/ProcessUdgetPlanForm.vue b/src/views/activiti/form/ProcessUdgetPlanForm.vue index fa36c57..9564e96 100644 --- a/src/views/activiti/form/ProcessUdgetPlanForm.vue +++ b/src/views/activiti/form/ProcessUdgetPlanForm.vue @@ -34,7 +34,7 @@ + placeholder="请选择物资类型" @change="elect" /> @@ -73,12 +73,23 @@ :maxHeight="300" :action-button="true" :rowNumber="true" + :disabled="hieg" :rowSelection="true" :actionButton="true"> + +