|
@@ -863,7 +863,10 @@ export default {
|
|
|
this.shippingFeesList = this.form.shippingFeesList
|
|
|
this.shippingFileList = this.form.shippingFileList
|
|
|
this.form.serviceItems = this.form.serviceItems.split(',')
|
|
|
- this.shippingBillDetails = this.form.shippingBillDetails
|
|
|
+ this.shippingBillDetails = {
|
|
|
+ ...this.form.shippingBillDetails,
|
|
|
+ accountingDeptId:this.shippingBillDetails.accountingDeptId.split(',')
|
|
|
+ }
|
|
|
delete this.form.shippingBoxTypeList
|
|
|
delete this.form.shippingMatchBoxList
|
|
|
delete this.form.shippingFeesList
|
|
@@ -979,7 +982,10 @@ export default {
|
|
|
if (valid) {
|
|
|
let form = {
|
|
|
...this.form,
|
|
|
- shippingBillDetails: this.shippingBillDetails,
|
|
|
+ shippingBillDetails: {
|
|
|
+ ...this.shippingBillDetails,
|
|
|
+ accountingDeptId:this.shippingBillDetails.accountingDeptId.join(',')
|
|
|
+ },
|
|
|
shippingBoxTypeList: this.shippingBoxTypeList,
|
|
|
shippingMatchBoxList: this.shippingMatchBoxList,
|
|
|
shippingFeesList: this.shippingFeesList,
|
|
@@ -1045,7 +1051,10 @@ export default {
|
|
|
if (valid) {
|
|
|
let form = {
|
|
|
...this.form,
|
|
|
- shippingBillDetails: this.shippingBillDetails,
|
|
|
+ shippingBillDetails: {
|
|
|
+ ...this.shippingBillDetails,
|
|
|
+ accountingDeptId:this.shippingBillDetails.accountingDeptId.join(',')
|
|
|
+ },
|
|
|
shippingBoxTypeList: this.shippingBoxTypeList,
|
|
|
shippingMatchBoxList: this.shippingMatchBoxList,
|
|
|
shippingFeesList: this.shippingFeesList,
|