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
}
})