|
@@ -15,7 +15,6 @@ export async function batchSave(params) {
|
|
|
|
|
|
|
|
|
|
|
|
|
// 统计领料数量
|
|
// 统计领料数量
|
|
|
-
|
|
|
|
|
export async function pickStatistics() {
|
|
export async function pickStatistics() {
|
|
|
const data = await postJ(
|
|
const data = await postJ(
|
|
|
Vue.prototype.apiUrl + `/pda/mes/workorder/pickStatistics`, {}, true,
|
|
Vue.prototype.apiUrl + `/pda/mes/workorder/pickStatistics`, {}, true,
|
|
@@ -27,4 +26,14 @@ export async function pickStatistics() {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
+// 领料单详细信息
|
|
|
|
|
+export async function pickDetails(params) {
|
|
|
|
|
+ const data = await postJ(
|
|
|
|
|
+ Vue.prototype.apiUrl + `/pda/mes/pickorder/list`, params, true,
|
|
|
|
|
+ );
|
|
|
|
|
+ if (data.code == 0) {
|
|
|
|
|
+ return data.data;
|
|
|
|
|
+ }
|
|
|
|
|
+ return Promise.reject(data.message);
|
|
|
|
|
+}
|
|
|
|
|
|