|
|
|
@ -52,6 +52,11 @@ |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="3"> |
|
|
|
<el-form-item :label="' '"> |
|
|
|
<el-checkbox v-model="searchData.shipFlag">筛选未发货清单</el-checkbox> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="2"> |
|
|
|
<el-form-item :label="' '"> |
|
|
|
<el-button type="primary" style="height: 20px;font-size: 14px;line-height: 10px" @click="searchDelHeaderList">查 询</el-button> |
|
|
|
@ -70,7 +75,7 @@ |
|
|
|
prop="delNotifyNo" |
|
|
|
header-align="center" |
|
|
|
align="left" |
|
|
|
width="130" |
|
|
|
width="150" |
|
|
|
label="通知单号"/> |
|
|
|
<el-table-column |
|
|
|
prop="notifyDate" |
|
|
|
@ -221,13 +226,13 @@ |
|
|
|
<el-table-column |
|
|
|
prop="notifyQty" |
|
|
|
header-align="center" |
|
|
|
align="left" |
|
|
|
align="right" |
|
|
|
width="120" |
|
|
|
label="通知单数量"/> |
|
|
|
<el-table-column |
|
|
|
prop="shipQty" |
|
|
|
header-align="center" |
|
|
|
align="left" |
|
|
|
align="right" |
|
|
|
width="120" |
|
|
|
label="发货数量"/> |
|
|
|
<el-table-column |
|
|
|
@ -327,18 +332,22 @@ |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="12"> |
|
|
|
<el-form-item label="工厂编号"> |
|
|
|
<el-form-item label="产品描述"> |
|
|
|
<el-input disabled v-model="delNotifyDetail.partDescription" readonly></el-input> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="10"> |
|
|
|
<el-form-item label="通知单数量"> |
|
|
|
<el-input disabled v-model="delNotifyDetail.notifyQty" readonly></el-input> |
|
|
|
<div class="right"> |
|
|
|
<el-input disabled v-model="delNotifyDetail.notifyQty" type="number" readonly></el-input> |
|
|
|
</div> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="12"> |
|
|
|
<el-form-item label="发货数量"> |
|
|
|
<el-input disabled v-model="delNotifyDetail.shipQty" readonly></el-input> |
|
|
|
<div class="right"> |
|
|
|
<el-input disabled v-model="delNotifyDetail.shipQty" type="number" readonly></el-input> |
|
|
|
</div> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="10"> |
|
|
|
@ -550,6 +559,7 @@ export default { |
|
|
|
endDate:dayjs().format("YYYY-MM-DD"), |
|
|
|
customerId:undefined, |
|
|
|
delNotifyNo:undefined, |
|
|
|
shipFlag:true, |
|
|
|
no:1, |
|
|
|
size:50, |
|
|
|
total:0, |
|
|
|
@ -592,6 +602,11 @@ export default { |
|
|
|
let params = JSON.parse(JSON.stringify(this.searchData)) |
|
|
|
params.no = this.no; |
|
|
|
params.size = this.size; |
|
|
|
if (this.searchData.shipFlag){ |
|
|
|
params.shipFlag = "N"; |
|
|
|
}else { |
|
|
|
params.shipFlag = null; |
|
|
|
} |
|
|
|
this.delNotifyHeaderList = []; |
|
|
|
this.delNotifyDetailList = []; |
|
|
|
this.delNotifyHeaderTableLoading = true; |
|
|
|
@ -768,4 +783,7 @@ export default { |
|
|
|
.el-select-dropdown__item{ |
|
|
|
font-size: 18px; |
|
|
|
} |
|
|
|
.right /deep/ .el-input--medium .el-input__inner{ |
|
|
|
text-align: right; |
|
|
|
} |
|
|
|
</style> |