| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- import request from '@/utils/request';
- /**
- * 列表
- */
- export async function getList (data) {
- const res = await request.post('/aps/productionplan/page', data);
- if (res.data.code == 0) {
- return res.data.data;
- }
- return Promise.reject(new Error(res.data.message));
- }
- /**
- * 保存
- */
- export async function save (data) {
- const res = await request.post('/aps/productionplan/save', data);
- if (res.data.code == 0) {
- return res.data.data;
- }
- return Promise.reject(new Error(res.data.message));
- }
- /**
- * 基本信息
- */
- export async function getById (id) {
- const res = await request.get(`/aps/productionplan/getById/${id}`);
- if (res.data.code == 0) {
- return res.data.data;
- }
- return Promise.reject(new Error(res.data.message));
- }
- /**
- * 发布信息返显
- */
- export async function getReleaseInfoById (id) {
- const res = await request.get(`/aps/productionplan/getReleaseInfoById/${id}`);
- if (res.data.code == 0) {
- return res.data.data;
- }
- return Promise.reject(new Error(res.data.message));
- }
- /**
- * 详情
- */
- export async function getProductPlanDetail (id) {
- const res = await request.get(
- `/aps/productionplan/getProductPlanDetail/${id}`
- );
- if (res.data.code == 0) {
- return res.data.data;
- }
- return Promise.reject(new Error(res.data.message));
- }
- /**
- * 根据计划id获取物料信息
- */
- export async function getMaterialinfo (planId) {
- const res = await request.get(`/aps/materialinfo/getByPlanId/${planId}`);
- if (res.data.code == 0) {
- return res.data.data;
- }
- return Promise.reject(new Error(res.data.message));
- }
- /**
- * 删除
- */
- export async function del (id) {
- const res = await request.delete(`/aps/productionplan/delete/${id}`);
- if (res.data.code == 0) {
- return res.data.data;
- }
- return Promise.reject(new Error(res.data.message));
- }
- // 拆分
- export async function splitWork (params) {
- const res = await request.post(`/aps/productionplan/splitBatch`, params);
- if (res.data.code == 0) {
- return res.data.data;
- }
- return Promise.reject(new Error(res.data.message));
- }
- // 计划合批
- export async function mergeBatch (params) {
- const res = await request.post(`/aps/productionplan/mergeBatch`, params);
- if (res.data.code == 0) {
- return res.data.data;
- }
- return Promise.reject(new Error(res.data.message));
- }
- // 修改优先级
- export async function updatePriority(data) {
- const res = await request.post(`/aps/productionplan/updatePriority`, data);
- if (res.data.code == 0) {
- return res.data.data;
- }
- return Promise.reject(new Error(res.data.message));
- }
- /**
- * 生产详情列表
- */
- export async function queryTaskDetail (data) {
- const res = await request.get('/aps/quality_details_work_order/queryPlanId/'+data);
- if (res.data.code == 0) {
- return res.data.data;
- }
- return Promise.reject(new Error(res.data.message));
- }
- // 计划分解(获取产品BOM)
- export async function getBom(params) {
- const res = await request.get(`/main/bomCategory/getBom`, { params });
- if (res.data.code == 0) {
- return res.data.data;
- }
- return Promise.reject(new Error(res.data.message));
- }
- // 计划分解 (保存)
- export async function batchSave(data) {
- const res = await request.post(`/aps/productionplan/batchSave`, data);
- if (res.data.code == 0) {
- return res.data.data;
- }
- return Promise.reject(new Error(res.data.message));
- }
- // 齐套性检查
- export async function homogeneityInspect(data) {
- const res = await request.post(`/aps/productionplan/homogeneityInspect`, data);
- if (res.data.code == 0) {
- return res.data.data;
- }
- return Promise.reject(new Error(res.data.message));
- }
- export async function getStockList (params) {
- const res = await request.get('/wms/outindetailtwo/page', {params});
- if (res.data.code == 0) {
- return res.data.data;
- }
- return Promise.reject(new Error(res.data.message));
- }
- export async function getCurrentList (data) {
- const res = await request.post('/eom/purchaseorder/getZtDetail', data);
- if (res.data.code == 0) {
- return res.data.data;
- }
- return Promise.reject(new Error(res.data.message));
- }
- // 齐套性检查
- export async function homogeneityInspectMerge(data) {
- const res = await request.post(`/aps/productionplan/homogeneityInspectMerge`, data);
- if (res.data.code == 0) {
- return res.data.data;
- }
- return Promise.reject(new Error(res.data.message));
- }
- // PBOM树
- export async function getBomRoot(data) {
- const res = await request.post(`/aps/productionplan/getBomRoot`, data);
- if (res.data.code == 0) {
- return res.data.data;
- }
- return Promise.reject(new Error(res.data.message));
- }
- // PBOM 齐套性检查
- export async function pbomHomogeneityInspect(data) {
- const res = await request.post(`/aps/productionplan/pbomHomogeneityInspect`, data);
- if (res.data.code == 0) {
- return res.data.data;
- }
- return Promise.reject(new Error(res.data.message));
- }
|