Browse Source

备件库移导入

hella_online_20250328
陈放 3 weeks ago
parent
commit
8013f5cdbf
  1. 12
      src/api/wms/inventorymoveRecordDetail/index.ts
  2. 13
      src/api/wms/inventorymoveRecordMain/index.ts
  3. 6
      src/views/wms/moveManage/inventorymove/inventorymoveRecordMainNewSparePart/index.vue

12
src/api/wms/inventorymoveRecordDetail/index.ts

@ -45,6 +45,18 @@ export const getInventorymoveRecordDetailPage = async (params) => {
}
}
// 查询库存转移记录子列表(备件专用)
export const getInventorymoveRecordDetailPageSparePart = async (params) => {
if (params.isSearch) {
delete params.isSearch
const data = {...params}
return await request.post({ url: '/wms/inventorymove-record-detail/seniorSparePart', data })
} else {
return await request.get({ url: `/wms/inventorymove-record-detail/pageSparePart`, params })
}
}
// 查询库存转移记录子详情
export const getInventorymoveRecordDetail = async (id: number) => {
return await request.get({ url: `/wms/inventorymove-record-detail/get?id=` + id })

13
src/api/wms/inventorymoveRecordMain/index.ts

@ -70,6 +70,19 @@ export const exportInventorymoveRecordMain = async (params) => {
}
}
// 导出库存转移记录主 Excel
export const exportInventorymoveRecordMainSparePart = async (params) => {
params.businessType = 'Move'
if (params.isSearch) {
delete params.isSearch
const data = {...params}
return await request.downloadPost({ url: '/wms/inventorymove-record-main/export-excel-seniorSparePart', data })
} else {
return await request.download({ url: `/wms/inventorymove-record-main/export-excelSparePart`, params })
}
}
// 导出合格转隔离记录主 Excel
export const exportOkToHoldRecordMain = async (params) => {
params.businessType = 'OkToHold'

6
src/views/wms/moveManage/inventorymove/inventorymoveRecordMainNewSparePart/index.vue

@ -72,12 +72,12 @@
:allSchemas="InventorymoveRecordMainNew.allSchemas"
:detailAllSchemas="InventorymoveRecordDetailNew.allSchemas"
:detailAllSchemasRules="InventorymoveRecordDetailNewRules"
:apiPage="InventorymoveRecordDetailApi.getInventorymoveRecordDetailPage"
:apiPage="InventorymoveRecordDetailApi.getInventorymoveRecordDetailPageSparePart"
/>
<!-- 标签打印 -->
<SearchTable style="width:905px" ref="searchTableRef" @searchTableSuccess="searchTableSuccessLabel" />
<!-- 导入 -->
<ImportForm ref="importFormRef" url="/wms/inventorymove-record-main/import" :importTemplateData="importTemplateData"
<ImportForm ref="importFormRef" url="/wms/inventorymove-record-main/importSparePart" :importTemplateData="importTemplateData"
@success="importSuccess" :updateIsDisable="true" :coverIsDisable="true" :mode="2" :fromInventoryStatus= "fromInventoryStatus" :toInventoryStatus="toInventoryStatus" />
</template>
@ -122,7 +122,7 @@ const updataTableColumns = (val) => {
}
const { tableObject, tableMethods } = useTable({
getListApi: InventorymoveRecordDetailApi.getInventorymoveRecordDetailPage //
getListApi: InventorymoveRecordDetailApi.getInventorymoveRecordDetailPageSparePart //
})
tableObject.params.businessType = 'Move'

Loading…
Cancel
Save