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