Browse Source

提交栈板

master
常熟吴彦祖 4 months ago
parent
commit
9bd2b13c01
  1. 7
      src/views/modules/automatedWarehouse/callOut.vue
  2. 2
      src/views/modules/production-return/productionReturnPDA.vue
  3. 6
      src/views/modules/production-return/productionReturnPickingDetail.vue

7
src/views/modules/automatedWarehouse/callOut.vue

@ -244,7 +244,11 @@ export default {
// Cal
console.log('Cal操作,选中的栈板:', this.selectedPallets);
this.$message.success(`正在处理栈板: ${this.selectedPallets.map(p => p.palletId).join(', ')}`);
this.$confirm('确定进行[Call车]操作?', '提示', {
confirmButtonText: '确认',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
callPalletFromWcs(this.selectedPallets).then(({ data }) => {
if (data && data.code === 0) {
@ -257,6 +261,7 @@ export default {
console.error('处理栈板失败:', error);
this.$message.error('处理失败');
});
})
},
cleanData(){

2
src/views/modules/production-return/productionReturnPDA.vue

@ -360,7 +360,7 @@
<script>
import {
getWorkOrderMaterials,
// getWorkOrderMaterials,
parseMaterialLabel,
directReturn,
getReturnRequestMaterials,

6
src/views/modules/production-return/productionReturnPickingDetail.vue

@ -304,9 +304,9 @@
<script>
import {
getWorkOrderMaterials,
parseMaterialLabel,
directReturn,
// getWorkOrderMaterials,
// parseMaterialLabel,
// directReturn,
getInventoryPart
} from "@/api/production/production-return";
import moment from "moment";

Loading…
Cancel
Save