常熟吴彦祖 3 months ago
parent
commit
15468c74a2
  1. 1
      src/api/automatedWarehouse/callOutToStation.js
  2. 1
      src/views/modules/automatedWarehouse/callOutToStation.vue
  3. 44
      src/views/modules/automatedWarehouse/palletPacking.vue

1
src/api/automatedWarehouse/callOutToStation.js

@ -5,3 +5,4 @@ import { createAPI } from "@/utils/httpRequest.js";
// Call料并运输到指定区域/站点 - rqrq
export const callOutToStation = data => createAPI(`/wcsIntegration/callOutToStation`, 'post', data)

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

@ -481,3 +481,4 @@ export default {
}
</style>

44
src/views/modules/automatedWarehouse/palletPacking.vue

@ -146,7 +146,7 @@
<button class="action-btn warning" style="flex: 0.3; margin: 0;" @click="showScanOutModal" :disabled="scanOutList.length === 0">
扫出({{scanOutList.length}})
</button>
<button class="action-btn secondary" style="flex: 0.3; margin: 0;" @click="handleTransportOrder">运输</button>
<button class="action-btn secondary" style="flex: 0.3; margin: 0;" @click="handleTransportOrder">运输入库</button>
</div>
<div class="list-title" style="flex: 0.5; margin: 0;">
<label style="margin-left: 5px;">条码数:{{detailList.length}}</label>
@ -438,18 +438,25 @@
<!-- 目标区域选择 -->
<div class="input-group">
<label class="input-label">目标区域</label>
<el-select
v-model="selectedTargetArea"
placeholder="请选择目标区域"
style="width: 100%;"
>
<el-option
v-for="area in transportAreaOptions"
:key="area.stationArea"
:label="area.stationArea"
:value="area.stationArea"
/>
</el-select>
<el-input
value="立库入口"
placeholder="当前栈板位置"
class="form-input"
readonly
/>
<!-- <el-select-->
<!-- v-model="selectedTargetArea"-->
<!-- placeholder="请选择目标区域"-->
<!-- disabled-->
<!-- style="width: 100%;"-->
<!-- >-->
<!-- <el-option-->
<!-- v-for="area in transportAreaOptions"-->
<!-- :key="area.stationArea"-->
<!-- :label="area.stationArea"-->
<!-- :value="area.stationArea"-->
<!-- />-->
<!-- </el-select>-->
</div>
</div>
@ -1484,11 +1491,12 @@ export default {
this.$message.error('无法获取当前栈板位置');
return;
}
if (!this.selectedTargetArea) {
this.$message.error('请选择目标区域');
return;
}
// if (!this.selectedTargetArea) {
// this.$message.error('');
// return;
// }
//
this.selectedTargetArea='Z103'
// loading
this.transportTaskLoading = true;

Loading…
Cancel
Save