add包装关系维护

This commit is contained in:
2025-06-27 10:30:01 +08:00
parent 244fcbbaae
commit f368f15a99
6 changed files with 172 additions and 3 deletions

View File

@@ -610,4 +610,21 @@ export const confirmWeight = (cname, weight) => request({
container_name: cname,
weight: weight
}
})
/**
* 包装关系维护
*/
export const packagerelation = (sn, cname, cn, cd, product, desc, weight, think, type) => request({
url:'api/pdmBiSubpackagerelation/packagerelation',
data: {
sale_order_name: sn,
container_name: cname,
customer_name: cn,
customer_description: cd,
product_name: product,
product_description: desc,
net_weight: weight,
thickness: think,
material_type: type
}
})

View File

@@ -55,7 +55,8 @@ export const allAuthority = () => {
{menu_id: '10', path: 'RF15', title: '打包间管理', sonTree: [
{menu_id: '1', title: '子卷包装解绑', path: '/pages/SecondPhase/SubRollPackUnbind'},
{menu_id: '1', title: '装箱口木箱回库', path: '/pages/SecondPhase/BoxReturn'},
{menu_id: '1', title: '人工点维护', path: '/pages/SecondPhase/ManMaintain'}
{menu_id: '1', title: '人工点维护', path: '/pages/SecondPhase/ManMaintain'},
{menu_id: '1', title: '包装关系维护', path: '/pages/SecondPhase/PackRelation'}
]},
{menu_id: '6', path: 'RF04', title: '点位管理', sonTree: [
{menu_id: '1', title: '点位管理', path: '/pages/SecondPhase/point/PointManage'},