diff --git a/src/views/activiti/form/ProcessMaterialWarehousingForm.vue b/src/views/activiti/form/ProcessMaterialWarehousingForm.vue index 1142861..547f3d5 100644 --- a/src/views/activiti/form/ProcessMaterialWarehousingForm.vue +++ b/src/views/activiti/form/ProcessMaterialWarehousingForm.vue @@ -84,7 +84,7 @@ :disabled="formDisabled" :rowNumber="true" :rowSelection="true" - :actionButton="true" /> + :actionButton="false" />
diff --git a/src/views/activiti/form/ProcessMaterialsAllotForm.vue b/src/views/activiti/form/ProcessMaterialsAllotForm.vue index 4a67b83..317be20 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/ProcessMaterialsDeliveryForm.vue b/src/views/activiti/form/ProcessMaterialsDeliveryForm.vue index 5dba608..7f440b9 100644 --- a/src/views/activiti/form/ProcessMaterialsDeliveryForm.vue +++ b/src/views/activiti/form/ProcessMaterialsDeliveryForm.vue @@ -941,9 +941,8 @@ init(){ this.btndisabled = true; var r = this.processData; - this.getAction(this.url.getForm,{ - tableId:r.tableId, - tableName:r.tableName, + this.getAction(this.url.queryById,{ + id:r.tableId }).then((res)=>{ if (res.success){ let formData = res.result; @@ -973,11 +972,13 @@ this.getAllTable().then(tables => { return validateFormAndTables(this.form, tables) }).then(allValues=>{ - console.log('所有数据',allValues) + if (typeof this.classifyIntoFormData !== 'function') { throw this.throwNotFunction('classifyIntoFormData') } let formData = this.classifyIntoFormData(allValues) + formData.fileId = getStringArry(formData.fileId) + console.log('所有数据',formData) if (new Date(formData.createTime).getTime()/100>new Date(formData.deliveryTime).getTime()/100){ this.$message.error("出库时间不能小于当前流程发起时间") return; @@ -1033,6 +1034,12 @@ }, /** 调用完edit()方法之后会自动调用此方法 */ editAfter() { + if (this.data.id != null && this.data.id != '' && this.data.id != undefined && this.data.fileId != null && this.data.fileId != '') { + //1、文件回显 + this.data = getRecord(this.data) + + } + console.log('回显数据',this.data) let fieldval = pick(this.data,'id','company','createTime','sysOrgCode','createBy','materialType','deliveryTime','fileId') this.$nextTick(() => { this.form.setFieldsValue(fieldval) 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"> + + @@ -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/suppliesstronger/ProcessSuppliesStrongerList.vue b/src/views/suppliesstronger/ProcessSuppliesStrongerList.vue index 50830dc..50dd3e8 100644 --- a/src/views/suppliesstronger/ProcessSuppliesStrongerList.vue +++ b/src/views/suppliesstronger/ProcessSuppliesStrongerList.vue @@ -203,7 +203,7 @@ methods: { handleDetaills(record){ console.log(record); - this.$router.push({name:'src-views-suppliesstronger-ProcessSuppliesStrongerLists',params:{item: record.materialsNumber}}) + this.$router.push({name:'src-views-suppliesstronger-ProcessSuppliesStrongerLists',params:{item: record.merchandiseNewsId}}) }, initDictConfig(){ }, diff --git a/src/views/suppliesstronger/ProcessSuppliesStrongerLists.vue b/src/views/suppliesstronger/ProcessSuppliesStrongerLists.vue index 10ef51e..771f6d2 100644 --- a/src/views/suppliesstronger/ProcessSuppliesStrongerLists.vue +++ b/src/views/suppliesstronger/ProcessSuppliesStrongerLists.vue @@ -163,7 +163,7 @@ queryParam: { supplier: null, itemGroup: null, - materialsNumber: this.$route.params.item, + merchandiseNewsId: this.$route.params.item, itemDescription: null, unitWasteWarehouseCodeId: null, freightSpace: null, @@ -314,7 +314,7 @@ }, watch: { $route() { - this.queryParam.materialsNumber = this.$route.params.item + this.queryParam.merchandiseNewsId = this.$route.params.item this.loadData() } }, 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:'保质期'})