diff --git a/src/api/check/physicalInventory.js b/src/api/check/physicalInventory.js index 189d2b8..9366713 100644 --- a/src/api/check/physicalInventory.js +++ b/src/api/check/physicalInventory.js @@ -91,5 +91,27 @@ 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) + +// ==================== 盘点模式管理 ==================== - rqrq + +// 获取当前盘点模式状态 - rqrq +export const getSysIfCount = data => createAPI(`/check/physicalInventory/getSysIfCount`, 'post', data) + +// 开启或关闭盘点模式 - rqrq +export const updateSysIfCount = data => createAPI(`/check/physicalInventory/updateSysIfCount`, 'post', data) + +// ==================== 自动盘盈盘亏处理 ==================== - rqrq + +// 检查是否有需要系统处理的异常结果 - rqrq +export const checkSystemHandleCount = data => createAPI(`/check/physicalInventory/checkSystemHandleCount`, 'post', data) + +// 执行自动盘盈盘亏处理 - rqrq +export const executeSystemAdjustment = data => createAPI(`/check/physicalInventory/executeSystemAdjustment`, 'post', data) + +// 查询盘盈盘亏事务记录 - rqrq +export const queryAdjustmentTransList = data => createAPI(`/check/physicalInventory/queryAdjustmentTransList`, 'post', data) + +// 查询盘盈盘亏事务子明细 - rqrq +export const queryAdjustmentTransSubList = data => createAPI(`/check/physicalInventory/queryAdjustmentTransSubList`, 'post', data) \ No newline at end of file diff --git a/src/views/modules/check/currentPhysicalInventory.vue b/src/views/modules/check/currentPhysicalInventory.vue index 7a7f2d5..3a2cd41 100644 --- a/src/views/modules/check/currentPhysicalInventory.vue +++ b/src/views/modules/check/currentPhysicalInventory.vue @@ -19,7 +19,11 @@ 处理异常 + :disabled="headerLoading || handleExceptionLoading">选择处理方式 + + {{ autoAdjustLoading ? '处理中...' : '自动处理盈亏' }} @@ -202,7 +206,7 @@ width="150" :label="'操作'"> - {{'人工处理完成'}} + {{'人工处理完成'}} {{'Call栈板'}} @@ -246,6 +250,54 @@ + + + + + + 事务明细 + + + + + {{ scope.row.transTypeDesc }} + + + + + + + + + + {{ scope.row.directionDesc }} + + + + + + + + + 事务子明细 + + + + + + + + + + + {{ scope.row.directionDesc }} + + + + + + @@ -323,7 +375,8 @@ diff --git a/src/views/modules/check/searchPhysicalInventory.vue b/src/views/modules/check/searchPhysicalInventory.vue index 38f06d5..c61d5c2 100644 --- a/src/views/modules/check/searchPhysicalInventory.vue +++ b/src/views/modules/check/searchPhysicalInventory.vue @@ -1,6 +1,26 @@ + + + + + + + 盘点模式: + {{ countModeStatus === 'Y' ? '已开启' : '已关闭' }} + + + (盘点模式下其他业务操作将受限) + (关闭盘点模式后可进行其他业务操作) + + @@ -222,6 +242,54 @@ + + + + + + 事务明细 + + + + + {{ scope.row.transTypeDesc }} + + + + + + + + + + {{ scope.row.directionDesc }} + + + + + + + + + 事务子明细 + + + + + + + + + + + {{ scope.row.directionDesc }} + + + + + + @@ -310,12 +378,17 @@