Browse Source

优化

master
常熟吴彦祖 3 weeks ago
parent
commit
05ceca5ffc
  1. 2
      src/api/check/physicalInventory.js
  2. 4
      src/views/modules/check/currentPhysicalInventory.vue
  3. 22
      src/views/modules/warehouse/pallet.vue
  4. 16
      src/views/modules/wcsSystem/agvStation.vue
  5. 15
      src/views/modules/wcsSystem/labelChangeLocation.vue

2
src/api/check/physicalInventory.js

@ -92,7 +92,7 @@ export const searchUnhandledExceptionList = data => createAPI(`/check/physicalIn
export const saveExceptionHandle = data => createAPI(`/check/physicalInventory/saveExceptionHandle`, 'post', data)
export const manualHandleCount = data => createAPI(`/check/physicalInventory/manualHandleCount`, 'post', data)
export const scanAndCallPalletForHetuo = data => createAPI(`/wcsIntegration/scanAndCallPalletForHetuo`,'post',data)
export const scanAndCallPalletForPandian = data => createAPI(`/wcsIntegration/scanAndCallPalletForPandian`,'post',data)
// ==================== 盘点模式管理 ==================== - rqrq

4
src/views/modules/check/currentPhysicalInventory.vue

@ -374,7 +374,7 @@
</template>
<script>
import {scanAndCallPalletForHetuo, getCurrentActiveCount, releaseCount, pushCountToWcs, continuePushCount, approveCount, completeCount, cancelCount, searchCountLabelList, searchCountPalletList, searchCountResultList, searchMaterialSummary, searchOrderTaskByCountNo, searchOrderTaskDetail, hasUncompletedTask, createReviewTask, searchUnhandledExceptionList, saveExceptionHandle, checkSystemHandleCount, executeSystemAdjustment, queryAdjustmentTransList, queryAdjustmentTransSubList} from '@/api/check/physicalInventory'
import {scanAndCallPalletForPandian, getCurrentActiveCount, releaseCount, pushCountToWcs, continuePushCount, approveCount, completeCount, cancelCount, searchCountLabelList, searchCountPalletList, searchCountResultList, searchMaterialSummary, searchOrderTaskByCountNo, searchOrderTaskDetail, hasUncompletedTask, createReviewTask, searchUnhandledExceptionList, saveExceptionHandle, checkSystemHandleCount, executeSystemAdjustment, queryAdjustmentTransList, queryAdjustmentTransSubList} from '@/api/check/physicalInventory'
import {manualHandleCount} from '../../../api/check/physicalInventory'
export default {
@ -1115,7 +1115,7 @@ export default {
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
scanAndCallPalletForHetuo({
scanAndCallPalletForPandian({
site: row.site,
palletId: row.palletId
}).then(({data}) => {

22
src/views/modules/warehouse/pallet.vue

@ -94,17 +94,17 @@
style="width: 100px; height: 80px"/></span>
</template>
</el-table-column>
<el-table-column
fixed="right"
header-align="center"
align="center"
width="100"
label="操作">
<template slot-scope="scope">
<a @click="initModel(scope.row)" type="text" >编辑</a>
<!-- <a @click="delHeaderData(scope.row)" type="text" >删除</a>-->
</template>
</el-table-column>
<!-- <el-table-column-->
<!-- fixed="right"-->
<!-- header-align="center"-->
<!-- align="center"-->
<!-- width="100"-->
<!-- label="操作">-->
<!-- <template slot-scope="scope">-->
<!-- <a @click="initModel(scope.row)" type="text" >编辑</a>-->
<!--&lt;!&ndash; <a @click="delHeaderData(scope.row)" type="text" >删除</a>&ndash;&gt;-->
<!-- </template>-->
<!-- </el-table-column>-->
</el-table>
<el-pagination

16
src/views/modules/wcsSystem/agvStation.vue

@ -190,14 +190,14 @@
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="自动续盘" prop="autoCallBlankPallet">
<el-select v-model="formData.autoCallBlankPallet" placeholder="请选择" style="width: 100%">
<el-option label="是" value="Y"></el-option>
<el-option label="否" value="N"></el-option>
</el-select>
</el-form-item>
</el-col>
<!-- <el-col :span="6">-->
<!-- <el-form-item label="自动续盘" prop="autoCallBlankPallet">-->
<!-- <el-select v-model="formData.autoCallBlankPallet" placeholder="请选择" style="width: 100%">-->
<!-- <el-option label="是" value="Y"></el-option>-->
<!-- <el-option label="否" value="N"></el-option>-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<!-- </el-col>-->
</el-row>
<el-row>

15
src/views/modules/wcsSystem/labelChangeLocation.vue

@ -129,21 +129,22 @@
<el-row :gutter="20">
<el-col :span="8">
<el-form-item label="仓库" prop="warehouseId">
<el-input v-model="editForm.warehouseId" placeholder="请输入仓库"></el-input>
<el-input v-model="editForm.warehouseId" placeholder="请输入仓库" readonly></el-input>
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item label="库位" prop="locationId">
<el-input v-model="editForm.locationId" placeholder="请输入库位"></el-input>
<el-input v-model="editForm.locationId" placeholder="请输入库位" readonly></el-input>
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item label="是否在库" prop="inStockFlag">
<el-select v-model="editForm.inStockFlag" placeholder="请选择" style="width: 100%">
<el-option label="在库" value="Y"></el-option>
<el-option label="已出库" value="N"></el-option>
<el-option label="未入库" value="X"></el-option>
</el-select>
<el-input v-model="editForm.inStockFlag" readonly></el-input>
<!-- <el-select v-model="editForm.inStockFlag" placeholder="请选择" readonly style="width: 100%">-->
<!-- <el-option label="在库" value="Y"></el-option>-->
<!-- <el-option label="已出库" value="N"></el-option>-->
<!-- <el-option label="未入库" value="X"></el-option>-->
<!-- </el-select>-->
</el-form-item>
</el-col>
</el-row>

Loading…
Cancel
Save