|
|
|
|
@ -25,7 +25,7 @@
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<span class="img-box-title">
|
|
|
|
|
品规:
|
|
|
|
|
品规选择:
|
|
|
|
|
</span>
|
|
|
|
|
<span class="img-box-value">
|
|
|
|
|
|
|
|
|
|
@ -45,16 +45,26 @@
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<span class="img-box-title">
|
|
|
|
|
个数:
|
|
|
|
|
上位个数:
|
|
|
|
|
</span>
|
|
|
|
|
<span class="img-box-value">
|
|
|
|
|
{{this.checkObj.wmsCount}}
|
|
|
|
|
</span>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<span class="img-box-title">
|
|
|
|
|
识别+顶部个数:
|
|
|
|
|
</span>
|
|
|
|
|
<span class="img-box-value">
|
|
|
|
|
{{this.checkObj.count}}+
|
|
|
|
|
<a-input-number
|
|
|
|
|
id="inputNumber"
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
v-model="checkObj.count"
|
|
|
|
|
style="width: 50%"
|
|
|
|
|
v-model="checkObj.countTop"
|
|
|
|
|
:min="0"
|
|
|
|
|
:max="150"
|
|
|
|
|
/>
|
|
|
|
|
={{getCountAdd()}}
|
|
|
|
|
|
|
|
|
|
</span>
|
|
|
|
|
</li>
|
|
|
|
|
@ -125,7 +135,7 @@
|
|
|
|
|
type="primary"
|
|
|
|
|
style="background:#29c12b;border-color:#29c12b;"
|
|
|
|
|
@click="checkSure(checkObj.row,checkObj.column,checkObj.shelveId,index)"
|
|
|
|
|
>核对品规
|
|
|
|
|
>核对上传
|
|
|
|
|
</a-button>
|
|
|
|
|
|
|
|
|
|
<a-button
|
|
|
|
|
@ -292,7 +302,9 @@ export default {
|
|
|
|
|
this.column = 1;
|
|
|
|
|
this.getStockInfo(1, 1);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
getCountAdd(){
|
|
|
|
|
return this.checkObj.count + this.checkObj.countTop
|
|
|
|
|
},
|
|
|
|
|
checkSure(row, column, shelveId, index) {
|
|
|
|
|
this.$api.httpApi
|
|
|
|
|
.stockCheckCorrect({
|
|
|
|
|
@ -302,7 +314,7 @@ export default {
|
|
|
|
|
side: Number(this.side),
|
|
|
|
|
streetId: Number(this.streetId),
|
|
|
|
|
direction: Number(this.direction),
|
|
|
|
|
conut: this.checkObj.count,
|
|
|
|
|
countTop: this.checkObj.countTop,
|
|
|
|
|
category: this.checkObj.category,
|
|
|
|
|
|
|
|
|
|
ok: 1,
|
|
|
|
|
@ -337,6 +349,7 @@ export default {
|
|
|
|
|
.catch((err) => {});
|
|
|
|
|
},
|
|
|
|
|
showModel(checkObj, index) {
|
|
|
|
|
console.log("1111");
|
|
|
|
|
this.visible = true;
|
|
|
|
|
this.modelData = checkObj;
|
|
|
|
|
this.index = index;
|
|
|
|
|
|