|
@@ -76,6 +76,7 @@
|
|
|
<ws-form-item label="交货方式" span="1" prop="seller" class="readonly">
|
|
|
<el-radio v-model="deptBudgetList.deliverType" label="1">我方自提</el-radio>
|
|
|
<el-radio v-model="deptBudgetList.deliverType" label="2">对方送货</el-radio>
|
|
|
+ <el-checkbox v-model="deptBudgetList.acquisitionIn" v-if="deptBudgetList.deliverType == '1'">按收购业务入库</el-checkbox>
|
|
|
<!-- <el-radio v-model="deptBudgetList.deliverType" v-if="deptBudgetList.priceType == '随行就市'" disabled label="1">
|
|
|
我方自提</el-radio>
|
|
|
<el-radio v-model="deptBudgetList.deliverType" v-else label="1">我方自提</el-radio>
|
|
@@ -90,7 +91,7 @@
|
|
|
@select="handleSelect"></el-autocomplete>
|
|
|
-->
|
|
|
<el-select filterable v-model="deptBudgetList.seller" placeholder="请选择卖方名称" class="typeselect"
|
|
|
- @change="sellerSelect" filterable clearable>
|
|
|
+ @change="sellerSelect" clearable>
|
|
|
|
|
|
<el-option v-for="(item,index) in customerinfo" :key="index" :label="item.customerName"
|
|
|
:value="item.customerName" />
|
|
@@ -508,6 +509,7 @@ import { isUndefined } from 'xe-utils/methods'
|
|
|
},
|
|
|
contractProcessInfo: {},
|
|
|
settlementWeightMethod: '1',
|
|
|
+ acquisitionIn:false
|
|
|
},
|
|
|
acceptanceCheck: {},
|
|
|
pickerBeginDateBefore: {
|
|
@@ -1437,6 +1439,11 @@ import { isUndefined } from 'xe-utils/methods'
|
|
|
this.deptBudgetList.compId = this.compId
|
|
|
this.deptBudgetList.contractType = 2
|
|
|
this.deptBudgetList.goodsType = 1
|
|
|
+ if(this.deptBudgetList.acquisitionIn){
|
|
|
+ this.deptBudgetList.acquisitionIn = '1'
|
|
|
+ }else{
|
|
|
+ this.deptBudgetList.acquisitionIn = ''
|
|
|
+ }
|
|
|
addList(this.deptBudgetList)
|
|
|
.toPromise()
|
|
|
.then((response) => {
|