diff --git a/src/api/check/physicalInventory.js b/src/api/check/physicalInventory.js index 572212e..13d54e1 100644 --- a/src/api/check/physicalInventory.js +++ b/src/api/check/physicalInventory.js @@ -17,6 +17,9 @@ export const createCycleCount = data => createAPI(`/check/physicalInventory/crea // 创建空的手工盘点单(只有表头) export const createManualCount = data => createAPI(`/check/physicalInventory/createManualCount`, 'post', data) +// 年度盘点报告(年中/年末)- rqrq +export const generateYearInventoryReport = data => createAPI(`/check/physicalInventory/generateYearInventoryReport`, 'post', data) + // 手工盘点 - 查询物料汇总(用于添加物料弹框) export const queryMaterialForManualCount = data => createAPI(`/check/physicalInventory/queryMaterialForManualCount`, 'post', data) diff --git a/src/views/modules/check/rfidDailyCountResult.vue b/src/views/modules/check/rfidDailyCountResult.vue index 816aa81..dcadd5b 100644 --- a/src/views/modules/check/rfidDailyCountResult.vue +++ b/src/views/modules/check/rfidDailyCountResult.vue @@ -12,13 +12,6 @@ - - - - - - - 查询 - - - - {{ generateLoading ? '生成中...' : '生成盘点结果' }} - + + 导出 + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + v-for="(item, index) in mainColumnList" + :key="index" + :sortable="item.columnSortable" + :prop="item.columnProp" + :header-align="item.headerAlign" + :align="item.align" + :show-overflow-tooltip="item.showOverflowTooltip" + :fixed="item.fixed === '' ? false : item.fixed" + :min-width="item.columnWidth" + :label="item.columnLabel"> + @@ -189,155 +97,224 @@ diff --git a/src/views/modules/check/searchPhysicalInventory.vue b/src/views/modules/check/searchPhysicalInventory.vue index af0c13a..234470f 100644 --- a/src/views/modules/check/searchPhysicalInventory.vue +++ b/src/views/modules/check/searchPhysicalInventory.vue @@ -32,6 +32,8 @@ + + @@ -55,6 +57,7 @@ 重置 循环盘点 手工盘点 + 年度盘点报告 @@ -312,6 +315,26 @@ + + + + + + + + + + + + + + + + 确 认 + 取 消 + + +
@@ -408,7 +431,7 @@