Browse Source

空托堆叠入库

master
常熟吴彦祖 2 months ago
parent
commit
494a6c42b2
  1. 20
      src/views/modules/automatedWarehouse/emptyPalletAssembly.vue
  2. 1
      src/views/modules/automatedWarehouse/palletSorting.vue
  3. 1
      src/views/modules/automatedWarehouse/palletSortingNoAgv.vue

20
src/views/modules/automatedWarehouse/emptyPalletAssembly.vue

@ -47,6 +47,18 @@
</el-select> </el-select>
</div> </div>
<div class="input-group">
<label class="input-label">空托数量</label>
<el-select v-model="count">
<el-option value=1 label=1></el-option>
<el-option value=2 label=2></el-option>
<el-option value=3 label=3></el-option>
<el-option value=4 label=4></el-option>
<el-option value=5 label=5></el-option>
<el-option value=6 label=6></el-option>
</el-select>
</div>
<!-- 当前站点信息 - rqrq --> <!-- 当前站点信息 - rqrq -->
<div class="info-row"> <div class="info-row">
<label class="info-label">当前站点ID:</label> <label class="info-label">当前站点ID:</label>
@ -107,7 +119,7 @@ export default {
// - rqrq // - rqrq
currentPalletType: '', currentPalletType: '',
palletTypeOptions: [], palletTypeOptions: [],
count: 1,
// - rqrq // - rqrq
notifyLoading: false, notifyLoading: false,
transportLoading: false transportLoading: false
@ -237,7 +249,8 @@ export default {
notifyEmptyPalletInbound({ notifyEmptyPalletInbound({
site: this.site, site: this.site,
palletId: this.palletCode, palletId: this.palletCode,
transportFlag: 'N'
transportFlag: 'N',
count: Number(this.count),
}).then(({ data }) => { }).then(({ data }) => {
if (data && data.code === 0) { if (data && data.code === 0) {
this.$message.success('通知入库成功'); this.$message.success('通知入库成功');
@ -280,7 +293,8 @@ export default {
notifyEmptyPalletInbound({ notifyEmptyPalletInbound({
site: this.site, site: this.site,
palletId: this.palletCode, palletId: this.palletCode,
transportFlag: 'Y'
transportFlag: 'Y',
count: Number(this.count),
}).then(({ data }) => { }).then(({ data }) => {
if (data && data.code === 0) { if (data && data.code === 0) {
this.$message.success('入库并运输成功'); this.$message.success('入库并运输成功');

1
src/views/modules/automatedWarehouse/palletSorting.vue

@ -416,7 +416,6 @@ import {
getPalletDetails, getPalletDetails,
getLayersByPosition, getLayersByPosition,
savePalletDetail, savePalletDetail,
deletePalletDetail,
restorePalletDetail, restorePalletDetail,
getLabelInfo, getLabelInfo,
getLayersForEdit, getLayersForEdit,

1
src/views/modules/automatedWarehouse/palletSortingNoAgv.vue

@ -416,7 +416,6 @@ import {
getPalletDetails, getPalletDetails,
getLayersByPosition, getLayersByPosition,
savePalletDetail, savePalletDetail,
deletePalletDetail,
restorePalletDetail, restorePalletDetail,
getLabelInfo, getLabelInfo,
getLayersForEdit, getLayersForEdit,

Loading…
Cancel
Save