优化库位和库区管理的仓库选择交互,将下拉选择改为弹窗选择模式,新增库位必填字段验证,调整盘点管理导入功能从列表操作移至详情操作,优化查询条件从ID改为名称模糊查询

This commit is contained in:
WUSIJIAN
2026-02-28 16:03:33 +08:00
parent 95b97314a2
commit 7e2595467b
9 changed files with 607 additions and 115 deletions

View File

@@ -101,8 +101,9 @@ export function exportInventoryCountTemplate() {
}
// 上传盘点Excel
export function importInventoryCount(file: File) {
export function importInventoryCount(id: string, file: File) {
const formData = new FormData();
formData.append('id', id);
formData.append('file', file);
return newService({
url: 'assets/inventory/count/importInventoryCount',