fix(wms/coil/stock, wms/report): 修复两处功能问题
1. 补充卷库存查询的质检状态参数 2. 修复自定义导出列重复添加和缓存解析重复数据的问题
This commit is contained in:
@@ -497,7 +497,11 @@ export default {
|
||||
loadDialogData() {
|
||||
if (!this.currentWarehouse) return;
|
||||
this.dialogLoading = true;
|
||||
const baseParams = { warehouseId: this.currentWarehouse.warehouseId, dataType: 1, status: 0 };
|
||||
const baseParams = {
|
||||
warehouseId: this.currentWarehouse.warehouseId,
|
||||
qualityStatusCsv: this.queryParams.qualityStatusCsv || '',
|
||||
dataType: 1, status: 0,
|
||||
};
|
||||
Promise.all([
|
||||
listLightCoil({ ...baseParams, pageSize: 99999, pageNum: 1 }),
|
||||
listMaterialCoil({ ...baseParams, pageNum: this.dialogPageNum, pageSize: this.dialogPageSize }),
|
||||
|
||||
Reference in New Issue
Block a user