diff --git a/warehousing-system/project_web_ui/src/views/component/outStorehouseManagement/add/outListAdd.vue b/warehousing-system/project_web_ui/src/views/component/outStorehouseManagement/add/outListAdd.vue
index 234a4db8..f7e608aa 100644
--- a/warehousing-system/project_web_ui/src/views/component/outStorehouseManagement/add/outListAdd.vue
+++ b/warehousing-system/project_web_ui/src/views/component/outStorehouseManagement/add/outListAdd.vue
@@ -50,14 +50,14 @@
-
+
+ :label="custName.enterpriseName"
+ :value="custName.sid">
-
+
@@ -122,6 +122,11 @@
+
+
+
+
+
@@ -239,14 +244,16 @@
},
clearList() {
this.purchaseForm={
- applicationDate:'',
- no:'',
- storehouseName:'',
- storeHouseSid:"",
- custerName:'',
- custerSid:'',
- storehouse: '',
- status: '',
+ purchaseId: '',
+ product: '',
+ barCode: '',
+ applicationDate:'',
+ no:'',
+ creatorName:'',
+ storehouseName:'',
+ storeHouseSid:"",
+ custerName:'',
+ custerSid:'',
list:[]
}
},
@@ -256,12 +263,15 @@
this.purchaseForm.storehouseName = v.name
}
})
- this.supplierList.forEach((v, i) => {
- if(v.name == this.purchaseForm.custerSid){
- this.purchaseForm.custerName = v.name
- this.purchaseForm.custerSid = v.id
- }else if(v.id == this.purchaseForm.custerSid){
- this.purchaseForm.custerName = v.name
+ this.custList.forEach((v, i) => {
+ // if(v.name == this.purchaseForm.custerSid){
+ // this.purchaseForm.custerName = v.name
+ // this.purchaseForm.custerSid = v.id
+ // }else if(v.id == this.purchaseForm.custerSid){
+ // this.purchaseForm.custerName = v.name
+ // }
+ if(v.sid == this.purchaseForm.custerSid){
+ this.purchaseForm.custerName = v.enterpriseName
}
})
if (this.viewTitle === "【新增】出库订单") return this.addStorehouse();