优化库位和库区管理的仓库选择交互,将下拉选择改为弹窗选择模式,新增库位必填字段验证,调整盘点管理导入功能从列表操作移至详情操作,优化查询条件从ID改为名称模糊查询
This commit is contained in:
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user