|
|
|
@ -38,6 +38,7 @@ export class AggregatingModule extends VuexModule {
|
|
|
|
|
* 查询结果辅料列表
|
|
|
|
|
*/
|
|
|
|
|
accessoryList: any[] = [];
|
|
|
|
|
lockCode: any = '';
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 库存地点列表
|
|
|
|
@ -251,6 +252,12 @@ export class AggregatingModule extends VuexModule {
|
|
|
|
|
});
|
|
|
|
|
return { orderList };
|
|
|
|
|
}
|
|
|
|
|
@MutationAction
|
|
|
|
|
async lock(params: any) {
|
|
|
|
|
const res: any = await http.post(url.sortscan.lock.list, params);
|
|
|
|
|
const lockCode = res.code;
|
|
|
|
|
return { lockCode };
|
|
|
|
|
}
|
|
|
|
|
/**
|
|
|
|
|
* 查询结果-辅料列表
|
|
|
|
|
* @param params
|
|
|
|
|