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.
44 lines
1.7 KiB
44 lines
1.7 KiB
import { createAPI } from '@/utils/httpRequest.js'
|
|
|
|
// 获取当前的卷的报工汇总数据
|
|
export const getFinishSchedulePageData = data => createAPI('schedule/getFinishSchedulePageData', 'POST', data)
|
|
|
|
// 获取派工单的时间记录
|
|
export const getSfdcTimeHistBySeqNo = data => createAPI('schedule/getSfdcTimeHistBySeqNo', 'POST', data)
|
|
|
|
// 获取派工单的工具记录
|
|
export const getSfdcToolHistBySeqNo = data => createAPI('schedule/getSfdcToolHistBySeqNo', 'POST', data)
|
|
|
|
// 获取派工单的材料记录
|
|
export const getSfdcMaterialHistBySeqNo = data => createAPI('schedule/getSfdcMaterialHistBySeqNo', 'POST', data)
|
|
|
|
// 获取当前卷sfdc表的报工数据
|
|
export const getSfdcReportedData = data => createAPI('schedule/getSfdcReportedData', 'POST', data)
|
|
|
|
// 获取当前卷的材料记录--在线的
|
|
export const getSfdcMaterialByRollNo = data => createAPI('schedule/getSfdcMaterialByRollNo', 'POST', data)
|
|
|
|
// 获取当前派工单的材料记录
|
|
export const getSfdcMaterialByCon = data => createAPI('schedule/getSfdcMaterialByCon', 'POST', data)
|
|
|
|
// 获取当前派工单的上机卷记录
|
|
export const getSfdcRollOpsByCon = data => createAPI('schedule/getSfdcRollOpsByCon', 'POST', data)
|
|
|
|
// 获取当前派工单的不良卷记录
|
|
export const getSfdcDefectByCon = data => createAPI('schedule/getSfdcDefectByCon', 'POST', data)
|
|
|
|
// 获取当前上机卷信息
|
|
export const getSfdcRollByCon = data => createAPI('schedule/getSfdcRollByCon', 'POST', data)
|
|
|
|
// 结束卷的验证
|
|
export const checkFinishRollWithNoFqc = data => createAPI('schedule/checkFinishRollWithNoFqc', 'POST', data)
|
|
|
|
// 结束卷的操作
|
|
export const finishRollWithNoFqc = data => createAPI('schedule/finishRollWithNoFqc', 'POST', data)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|