Browse Source

科室出库走总库

dev
long 2 years ago
parent
commit
463a49f236
  1. 89
      src/views/activiti/form/ProcessMaterialsDeliveryForm.vue

89
src/views/activiti/form/ProcessMaterialsDeliveryForm.vue

@ -45,14 +45,14 @@
date-format="YYYY-MM-DD HH:mm:ss" style="width: 100%" disabled/>
</a-form-item>
</a-col>
<a-col :span="8" v-if="this.deliveryType==1">
<a-col :span="8" v-if="this.deliveryType==1 || this.isOffice==1">
<a-form-item label="物资类型" :labelCol="labelCol" :wrapperCol="wrapperCol">
<j-dict-select-tag type="list" @change="isMaterialType"
v-decorator="['materialType',validatorRules.materialType]" :trigger-change="true"
dictCode="stronger_material_type" placeholder="请选择物资类型"/>
</a-form-item>
</a-col>
<a-col :span="8" v-if="this.deliveryType==2">
<a-col :span="8" v-if="this.deliveryType==2 && this.isOffice==2">
<a-form-item label="物资类型" :labelCol="labelCol" :wrapperCol="wrapperCol">
<j-dict-select-tag type="list" @change="isMaterialType"
v-decorator="['materialType',validatorRules.materialType]" :trigger-change="true"
@ -74,7 +74,8 @@
</a-form>
</j-form-container>
<!-- 子表单区域 -->
<a-tabs v-model="activeKey" @change="handleChangeTabs" style="background-color: #eaf3ea;margin-top: 20px;padding: 0px 10px">
<a-tabs v-model="activeKey" @change="handleChangeTabs"
style="background-color: #eaf3ea;margin-top: 20px;padding: 0px 10px">
<a-tab-pane tab="物资出库流程出库清单" :key="refKeys[0]" :forceRender="true">
<c-editable-table
ref="processMaterialsDeliveryList"
@ -232,7 +233,7 @@
placeholder: '请输入${title}',
// defaultValue:'',
options: [],
disabled: this.disabled,
disabled: this.disabled
},
{
title: 'WBS',
@ -242,7 +243,7 @@
width: '200px',
placeholder: '请输入${title}',
defaultValue: '',
disabled: this.disabled,
disabled: this.disabled
},
{
title: '物料名称及规格型号',
@ -252,7 +253,7 @@
width: '200px',
placeholder: '请输入${title}',
defaultValue: '',
disabled: this.disabled,
disabled: this.disabled
},
// {
// title: '',
@ -279,7 +280,7 @@
width: '130px',
placeholder: '请输入${title}',
defaultValue: '',
disabled: this.disabled,
disabled: this.disabled
},
// {
// title: '',
@ -296,7 +297,7 @@
width: '130px',
placeholder: '请输入${title}',
defaultValue: '',
disabled: this.disabled,
disabled: this.disabled
// slotName: 'qing'
},
{
@ -306,7 +307,7 @@
width: '130px',
placeholder: '请输入${title}',
defaultValue: '',
disabled: this.actualNumber,
disabled: this.actualNumber
},
{
title: '库存',
@ -316,7 +317,7 @@
// placeholder: '${title}',
// defaultValue: '',
slotName: 'repertory',
disabled: this.disabled,
disabled: this.disabled
// scopedSlots: {customRender: 'fileSlot'}
},
{
@ -327,7 +328,7 @@
width: '200px',
placeholder: '请输入${title}',
defaultValue: '',
disabled: this.disabled,
disabled: this.disabled
},
{
title: '单价(元)',
@ -420,7 +421,7 @@
},
materialGroupId: undefined,
accountingAttributesVal: '',
hiegs:true,
hiegs: true
}
},
props: {
@ -483,7 +484,7 @@
return true
}
// console.log("============================",this.hiegs=this.hieg);
console.log("2222222222222222",this.actualNumber)
console.log('2222222222222222', this.actualNumber)
// if(this.disabled){
// this.isabled = false;
// }
@ -527,16 +528,15 @@
methods: {
async chaKan(log) {
let pas =await log.target.getValuesPromise(log.rowIds);
let pas = await log.target.getValuesPromise(log.rowIds)
// console.log("",pas);
if (!!pas[log.index].repertory) {
this.wateNumber = pas[log.index].repertory;
this.wateNumber = pas[log.index].repertory
} else {
this.wateNumber = 0;
this.wateNumber = 0
}
},
//
async addid(val) {
// this.addId = val.row.id
@ -553,6 +553,10 @@
//
await this.fetchMerchandiseNews()
}
if (this.isOffice == 1) {
//
await this.fetchMerchandiseNews()
}
},
//
async isMaterialType(val) {
@ -574,7 +578,7 @@
},
async onSelect(record) {
// console.log(record)
let isMA = true;
let isMA = true
// if (!!record.row.materialGroup && !!record.row.materialGroup ) {
// // console.log("materialGroup111")
// if (!!record.row.id && record.row.materialGroup !== this.materialGroupId && record.column.key !== "allotNumber") {
@ -611,18 +615,18 @@
// isMA = false
// }
// }
let eAll = 0;
let eAll = 0
// if (!!record.row.materialGroup && !! record.row.equipment && isMA) {
let b = false;
let b = false
for (const res of this.bigIdMerchandiseNewsList) {
if (res.merchandiseNewsId === record.row.equipment) {
b = true;
b = true
}
}
if (record.column.key == 'equipment' && isMA && record.row.materialGroup !== this.materialGroupId) {
// console.log("materialNumber")
if (!b) {
if (this.accountingAttributesVal === "1" ) {
if (this.accountingAttributesVal === '1') {
//
await this.fetchMerchandiseNewsZW(record.row.equipment)
} else {
@ -652,7 +656,7 @@
]
// console.log("sadf1111")
this.$refs.processMaterialsDeliveryList.setValues(values)
return ;
return
}
})
@ -694,7 +698,7 @@
'supplierId': materialName.supplierName,
'materialPrice': materialName.price,
// 'actualSendNumber': materialName.residueNumber,
'repertory': materialName.residueNumber,
'repertory': materialName.residueNumber
// 'materialAmount': materialName.price * materialName.residueNumber
}
}
@ -704,8 +708,8 @@
// console.log("this.data.materialType",this.data.materialType)
if (parseInt(this.deliveryType) !== 1) {
//
await this.getEquipmentInvisible(record.row.equipment);
eAll = 2;
await this.getEquipmentInvisible(record.row.equipment)
eAll = 2
} else {
//
await this.getEquipmentAll(record.row.equipment)
@ -894,7 +898,7 @@
let par = {
delFlag: 0,
merchandiseNewsId: value,
accountingAttributes: this.accountingAttributesVal,
accountingAttributes: this.accountingAttributesVal
}
let ue = sessionStorage.getItem('USER_INFORMATION')
let res = JSON.parse(ue)
@ -903,9 +907,9 @@
}
let data = await getAction(this.url.queryPageDepare, de)
// console.log(data.result);
if(data.result.orgType === "3"){
if (data.result.orgType === '3') {
//
par.departId = data.result.parentId;
par.departId = data.result.parentId
} else {
//
par.departId = res.departIds
@ -1386,22 +1390,22 @@
},
/*通过审批*/
async passTask() {
let qing = false;
let qing = false
if (!this.actualNumber) {
await this.getAllTable().then(tables => {
return validateFormAndTables(this.form, tables)
}).then(allValues => {
let formData = this.classifyIntoFormData(allValues);
let formData = this.classifyIntoFormData(allValues)
if (formData.processMaterialsDeliveryListList.length > 0) {
formData.processMaterialsDeliveryListList.forEach(item => {
if (!item.actualSendNumber) {
qing = true;
qing = true
}
})
if (qing) {
console.log("============",qing);
this.$message.warning("请填写实发数!!!")
console.log('============', qing)
this.$message.warning('请填写实发数!!!')
} else {
let method = 'put'
httpAction(this.url.edit, formData, method).then((res) => {
@ -1417,7 +1421,7 @@
})
}
if (!qing) {
console.log("============",qing);
console.log('============', qing)
this.$emit('passTask')
}
@ -1481,19 +1485,19 @@
formData.processInstanceId = this.processData.id
}
if (formData.processMaterialsDeliveryListList.length > 0) {
let qing = false;
let qing = false
formData.processMaterialsDeliveryListList.forEach(item => {
if (!!item.equipment) {
if (!item.pleaseSendNumber) {
qing = true;
qing = true
}
} else {
this.$message.warning("请填写数据!!!")
this.$message.warning('请填写数据!!!')
}
})
if (qing) {
this.$message.warning("请填写请发数!!!")
this.$message.warning('请填写请发数!!!')
return
}
}
@ -1653,7 +1657,7 @@
})
if (this.actualNumber) {
// console.log(item,"===========");
item.actualSendNumber = null;
item.actualSendNumber = null
}
})
tab.dataSource = dataSource
@ -1700,12 +1704,12 @@
}
console.log('获取我的数据', res)
if (res.orgType != 3) {
let isDepartId=res.departIds;
let isDepartId = res.departIds
this.getAction('/officeConfig/queryByDepartId', {
id: isDepartId
}).then((res) => {
if (res.success) {
console.log(res.result.length,"***********************************************************")
console.log(res.result.length, '***********************************************************')
if (res.result.length != 0) {
this.isOffice = 1
this.deliveryType = 2
@ -1757,6 +1761,7 @@
.div_process {
margin-top: 30px;
}
.ant-col-8 {
height: 50px;
}

Loading…
Cancel
Save