|
|
|
@ -50,7 +50,8 @@
|
|
|
|
|
</a-col> |
|
|
|
|
<a-col :span="8" > |
|
|
|
|
<a-form-item label="入库目标库" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
|
|
|
<a-input-number v-decorator="['targetLibrary',validatorRules.targetLibrary]" placeholder="请输入入库目标库" style="width: 100%" /> |
|
|
|
|
<a-input v-decorator="['targetLibrary']" placeholder="入库目标库" style="width: 100%" disabled/> |
|
|
|
|
<!-- <a-radio v-for="item in puwwOptions" :key="item.id" :label="item.invisibleCode" :value="item.id"></a-radio>--> |
|
|
|
|
</a-form-item> |
|
|
|
|
</a-col> |
|
|
|
|
<a-col :span="8" > |
|
|
|
@ -121,6 +122,9 @@ import JSelectCompany from '../../../components/jeecgbiz/JSelectCompany'
|
|
|
|
|
}, |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
libraryAssociationIdInvisible:'ZK', |
|
|
|
|
invisibleCode:null, |
|
|
|
|
puwwOptions: [], |
|
|
|
|
labelCol: { |
|
|
|
|
xs: { span: 24 }, |
|
|
|
|
sm: { span: 6 }, |
|
|
|
@ -255,6 +259,7 @@ import JSelectCompany from '../../../components/jeecgbiz/JSelectCompany'
|
|
|
|
|
edit: "/hy/processMaterialWarehousing/edit", |
|
|
|
|
queryById: "/hy/processMaterialWarehousing/queryById", |
|
|
|
|
list: "/hy/processUdgetPlan/queryProcessUdgetPlanMaterialByMainId", |
|
|
|
|
puwwlist: "/unitwaste/processUnitWasteWarehouseCode/queryById", |
|
|
|
|
processMaterialWarehousingList: { |
|
|
|
|
list: '/hy/processMaterialWarehousing/queryProcessMaterialWarehousingListByMainId' |
|
|
|
|
}, |
|
|
|
@ -324,10 +329,11 @@ import JSelectCompany from '../../../components/jeecgbiz/JSelectCompany'
|
|
|
|
|
this.init(); |
|
|
|
|
} |
|
|
|
|
let company = sessionStorage.getItem("PARENT_ID"); |
|
|
|
|
let puwwcid = sessionStorage.getItem("PUWWC_Id"); |
|
|
|
|
let userInfo=sessionStorage.getItem("USER_INFORMATION"); |
|
|
|
|
console.log(userInfo) |
|
|
|
|
// userInfo.company=company; |
|
|
|
|
this.popupCallback(company,userInfo); |
|
|
|
|
this.popupCallback(company,userInfo,puwwcid); |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
/*回显数据*/ |
|
|
|
@ -376,6 +382,7 @@ import JSelectCompany from '../../../components/jeecgbiz/JSelectCompany'
|
|
|
|
|
formData.procDefId = this.processData.id; |
|
|
|
|
formData.procDeTitle = this.processData.name; |
|
|
|
|
formData.title=this.processData.description; |
|
|
|
|
formData.targetLibrary = this.libraryAssociationIdInvisible |
|
|
|
|
if (!formData.tableName)formData.tableName = this.processData.businessTable; |
|
|
|
|
var url = this.url.add; |
|
|
|
|
let method='post'; |
|
|
|
@ -464,18 +471,29 @@ import JSelectCompany from '../../../components/jeecgbiz/JSelectCompany'
|
|
|
|
|
this.form.setFieldsValue(fieldval) |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
popupCallback(company,row) { |
|
|
|
|
popupCallback(company,row,puwwcid) { |
|
|
|
|
let res=JSON.parse(row); |
|
|
|
|
console.log('获取我的数据',res.id) |
|
|
|
|
let param={} |
|
|
|
|
param.createBy=res.username; |
|
|
|
|
param.company=company; |
|
|
|
|
param.sysOrgCode=res.departIds; |
|
|
|
|
param.createTime= getCurrentTime(); |
|
|
|
|
this.data=param; |
|
|
|
|
let fieldval =pick(this.data, 'createBy','company','sysOrgCode','createTime') |
|
|
|
|
this.$nextTick(() => { |
|
|
|
|
this.form.setFieldsValue(fieldval) |
|
|
|
|
let params={} |
|
|
|
|
params.id=puwwcid; |
|
|
|
|
let invisibleCode=null; |
|
|
|
|
getAction(this.url.puwwlist,params).then((rest)=>{ |
|
|
|
|
if(rest.success){ |
|
|
|
|
invisibleCode =rest.result.invisibleCode |
|
|
|
|
this.libraryAssociationIdInvisible = rest.result.unit |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
let param={} |
|
|
|
|
param.createBy=res.username; |
|
|
|
|
param.company=company; |
|
|
|
|
param.targetLibrary =invisibleCode==null?"ZK":invisibleCode; |
|
|
|
|
param.sysOrgCode=res.departIds; |
|
|
|
|
param.createTime= getCurrentTime(); |
|
|
|
|
this.data=param; |
|
|
|
|
console.log('获取我的数据',this.data) |
|
|
|
|
let fieldval =pick(this.data, 'createBy','company','sysOrgCode','createTime','targetLibrary') |
|
|
|
|
this.$nextTick(() => { |
|
|
|
|
this.form.setFieldsValue(fieldval) |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|