|
@@ -193,7 +193,26 @@
|
|
|
</el-date-picker>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
- <el-col :xs="24" :sm="24" :lg="6" class="tr">
|
|
|
+ <el-col :xs="24" :sm="12" :lg="6">
|
|
|
+ <el-form-item label="申请发货单类型" prop="types">
|
|
|
+ <el-select
|
|
|
+ v-model="screenForm.types"
|
|
|
+ placeholder="选择申请发货单类型"
|
|
|
+ clearable
|
|
|
+ filterable
|
|
|
+ style="width: 100%"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in invoiceList"
|
|
|
+ :key="item.value"
|
|
|
+ :label="item.label"
|
|
|
+ :value="item.value"
|
|
|
+ >
|
|
|
+ </el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :xs="24" :sm="24" :lg="24" class="tr">
|
|
|
<el-form-item label="">
|
|
|
<el-button @click="resetScreenForm">清空</el-button>
|
|
|
<el-button type="primary" @click="submitScreenForm"
|
|
@@ -856,7 +875,22 @@ export default {
|
|
|
k3ServiceId: "",
|
|
|
mainOrderId: "",
|
|
|
approvaTime: "",
|
|
|
+ types:''
|
|
|
},
|
|
|
+ invoiceList:[
|
|
|
+ {
|
|
|
+ value:1,
|
|
|
+ label:'申请发货单'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ value:2,
|
|
|
+ label:'退货单'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ value:3,
|
|
|
+ label:'直调发货单'
|
|
|
+ }
|
|
|
+ ],
|
|
|
categoryList: [],
|
|
|
salesmanList: [],
|
|
|
tableSelection: [],
|
|
@@ -908,6 +942,7 @@ export default {
|
|
|
? this.screenForm.approvaTime[0]
|
|
|
: "",
|
|
|
correspondId: this.screenForm.correspondId.join(","),
|
|
|
+ type:this.screenForm.types
|
|
|
};
|
|
|
},
|
|
|
comRefundableQty() {
|
|
@@ -1019,6 +1054,8 @@ export default {
|
|
|
? this.screenForm.approvaTime[0]
|
|
|
: "",
|
|
|
correspondId: this.screenForm.correspondId.join(","),
|
|
|
+ type:this.screenForm.types
|
|
|
+
|
|
|
};
|
|
|
|
|
|
getSumList(params).then((res) => {
|
|
@@ -1073,6 +1110,8 @@ export default {
|
|
|
? this.screenForm.approvaTime[0]
|
|
|
: "",
|
|
|
correspondId: this.screenForm.correspondId.join(","),
|
|
|
+ type:this.screenForm.types
|
|
|
+
|
|
|
};
|
|
|
getListInvoiceNumber(params).then((res) => {
|
|
|
// console.log(res,'ii');
|