Initial commit: 景耀JY1.0项目
This commit is contained in:
@@ -11,6 +11,13 @@
|
||||
</div>-->
|
||||
<div style="margin-left: 10px">
|
||||
<el-input v-model="PickingListName" placeholder="领料单号/领料人" style="width: 170px" size="small" clearable/>
|
||||
<el-select v-model="orderNameValue" style="width:200px;margin-right: 0px" placeholder="订单号" size="small" filterable clearable @change="searchTable()">
|
||||
<el-option
|
||||
v-for="item in orderNumberType"
|
||||
:key="item.value"
|
||||
:label="item.label"
|
||||
:value="item.label"/>
|
||||
</el-select>
|
||||
<el-button type="primary" size="small" icon="el-icon-search" plain @click="searchTable">查询</el-button>
|
||||
<el-button type="success" size="small" icon="el-icon-printer" plain @click="exportTable">打印</el-button>
|
||||
</div>
|
||||
@@ -442,6 +449,8 @@ export default {
|
||||
pickValue: '',
|
||||
temporaryValue: '',
|
||||
PickingListName: '',
|
||||
orderNameValue: '',
|
||||
orderNumberType: [],
|
||||
dialogFormVisible: false,
|
||||
dialogFormVisible1: false,
|
||||
dialogFormVisible2: false,
|
||||
@@ -493,8 +502,22 @@ export default {
|
||||
this.getCustomer()
|
||||
this.searchTable()
|
||||
this.searchTable2()
|
||||
this.getOrderNumberType()
|
||||
},
|
||||
methods: {
|
||||
getOrderNumberType() {
|
||||
// this.orderNumberType = []
|
||||
var param = []
|
||||
var Data = this.CreateData('11', '领料单_未领订单_列表_查询', param)
|
||||
this.ExecDatabase(Data).then(response => {
|
||||
for (let i = 0; i < response.data.length; i++) {
|
||||
this.orderNumberType.push({
|
||||
label: response.data[i].订单号,
|
||||
value: response.data[i].订单流水号
|
||||
})
|
||||
}
|
||||
})
|
||||
},
|
||||
showRemark(row) {
|
||||
this.materialNumber1 = row.物料流水号
|
||||
this.remark = row.备注
|
||||
@@ -555,6 +578,7 @@ export default {
|
||||
var param = []
|
||||
param[0] = ['领料单号_check', check]
|
||||
param[1] = ['领料单号', this.PickingListName]
|
||||
param[2] = ['订单号', this.orderNameValue]
|
||||
var Data = this.CreateData('11', '装配管理_未领完领料单_查询', param)
|
||||
this.ExecDatabase(Data).then(response => {
|
||||
this.ProductionPick = response.data
|
||||
|
||||
Reference in New Issue
Block a user