add子卷重量维护

This commit is contained in:
2024-08-16 10:56:06 +08:00
parent ed769ca057
commit fdc54a9e31
4 changed files with 105 additions and 2 deletions

View File

@@ -292,3 +292,10 @@ export const printTable = (pcsn, code, type) => request({
url:'api/twoPrintTable/printTable',
data: {pcsn: pcsn, print_code: code, type: type}
})
/**
* 子卷重量维护
*/
export const doSubRollWeightBinding = (cn, pw, rw) => request({
url:'api/pda/slitter/doSubRollWeightBinding',
data: {container_name: cn, paper_weight: pw, roll_weight: rw}
})