You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.0 KiB
34 lines
1.0 KiB
import {createAPI} from '@/utils/httpRequest.js'
|
|
|
|
// 获取产品列表
|
|
export const getPrdList = data => createAPI(`prd/list`, 'get', data);
|
|
|
|
|
|
|
|
|
|
// 日计划排产table
|
|
export const getShopOrderData = data => createAPI(`dailyPlan/getShopOrderData`, 'post', data);
|
|
|
|
// 查询已派工数量
|
|
|
|
export const getSchedulingSize=data => createAPI(`dailyPlan/getSchedulingSize`, 'post', data);
|
|
|
|
//保存和修改日计划
|
|
|
|
export const savePlan=data => createAPI(`dailyPlan/savePlan`, 'post', data);
|
|
|
|
//排产清单table
|
|
export const getWorkPlanData=data => createAPI(`dailyPlan/getWorkPlanData`, 'post', data);
|
|
//删除日计划
|
|
export const delPlan=data => createAPI(`dailyPlan/delPlan`, 'post', data);
|
|
|
|
|
|
export const getShiftData=data => createAPI(`dailyPlan/getShiftData`, 'post', data);
|
|
|
|
|
|
export const saveNewShift =data => createAPI(`dailyPlan/saveNewShift`, 'post', data);
|
|
|
|
export const deleteShift= data => createAPI(`dailyPlan/deleteShift`, 'post', data);
|
|
|
|
|
|
export const savePlans= data => createAPI(`dailyPlan/savePlans`, 'post', data);
|