分切上料

This commit is contained in:
2022-12-09 15:07:53 +08:00
parent 50515d878c
commit 2f7ce78ef1
4 changed files with 178 additions and 4 deletions

View File

@@ -40,10 +40,11 @@ export const authority = () => {
{menu_id: '2', name: '半成品出库', path: '/pages/WarehouseManage/SemifinishedOutStore'},
]},
{menu_id: '3', path: 'RF03', name: '分切管理', sonTree: [
{menu_id: '1', name: '子卷套管', path: '/pages/ProductManage/ZjCasing'},
{menu_id: '2', name: '子卷配送', path: '/pages/ProductManage/ZjDelivery'},
{menu_id: '3', name: '子卷进站', path: '/pages/ProductManage/ZjInStore'},
{menu_id: '4', name: '子卷站', path: '/pages/ProductManage/ZjOutStore'},
{menu_id: '1', name: '分切上料', path: '/pages/ProductManage/SlittingFeeding'},
{menu_id: '2', name: '子卷套管', path: '/pages/ProductManage/ZjCasing'},
{menu_id: '3', name: '子卷配送', path: '/pages/ProductManage/ZjDelivery'},
{menu_id: '4', name: '子卷站', path: '/pages/ProductManage/ZjInStore'},
{menu_id: '5', name: '子卷出站', path: '/pages/ProductManage/ZjOutStore'},
]},
{menu_id: '4', path: 'RF04', name: '点位管理', sonTree: [
{menu_id: '1', name: '点位管理', path: '/pages/ProductManage/PointManage'},
@@ -335,4 +336,23 @@ export const customerPrint = (box_no, ptype) => request({
export const virtualprintType = (url) => request1({
url: `${url}/` + 'api/pda/virtual/printType',
data: {}
})
/**
* 分切上料
*/
// 1.1分切计划初始化查询
export const feedingQueryMaterialInfo = (area, code) => request({
url:'api/pda/feeding/queryMaterialInfo',
data: {
product_area: area,
device_code: code
}
})
// 1.2呼叫
export const feedingConfirm = (row) => request({
url:'api/pda/feeding/confirm',
data: {
cut_rows: row
}
})