feat:提交--更新字段 boardHeight=>boardLength

This commit is contained in:
2025-08-01 10:28:13 +08:00
parent 8c00def696
commit 61e47e24b7
3 changed files with 6 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "@imes-procesor/libs", "name": "@imes-procesor/libs",
"version": "0.1.0", "version": "0.1.1",
"description": "", "description": "",
"type": "module", "type": "module",
"scripts": { "scripts": {
@@ -21,7 +21,7 @@
"./utils": "./src/utils/index.ts" "./utils": "./src/utils/index.ts"
}, },
"dependencies": { "dependencies": {
"cut-abstractions": "http://gitea.cf/MES-FE/cut-abstractions/releases/download/0.2/cut-abstractions-0.2.0.tgz" "cut-abstractions": "http://gitea.cf/MES-FE/cut-abstractions/releases/download/0.2/cut-abstractions-0.2.1.tgz"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^24.0.10", "@types/node": "^24.0.10",

View File

@@ -28,7 +28,7 @@ export class CutOrderProc extends ProcessorBase<CutOrderInput, CutorderOutput, C
let beginId = 0; let beginId = 0;
let dt = context.input?.gap || 6; let dt = context.input?.gap || 6;
let k = context.input?.boardWidth || 0; let k = context.input?.boardWidth || 0;
let g = context.input?.boardHeight || 0; let g = context.input?.boardLength || 0;
for (let i = 0; i < length; i++) { for (let i = 0; i < length; i++) {
let block = context.input?.blocks[i]; let block = context.input?.blocks[i];
@@ -110,9 +110,9 @@ export class CutOrderProc extends ProcessorBase<CutOrderInput, CutorderOutput, C
} else if (input.boardWidth == undefined) { } else if (input.boardWidth == undefined) {
info.isOk = false info.isOk = false
info.msg = 'context.input.boardWidth is undefind' info.msg = 'context.input.boardWidth is undefind'
} else if (input.boardHeight == undefined) { } else if (input.boardLength == undefined) {
info.isOk = false info.isOk = false
info.msg = 'context.input.boardHeight is undefind' info.msg = 'context.input.boardLength is undefind'
} }

View File

@@ -47,7 +47,7 @@ test('cutOrderTest', async () => {
let input: CutOrderInput = { let input: CutOrderInput = {
boardWidth: 1220, boardWidth: 1220,
boardHeight: 2440, boardLength: 2440,
gap: 6, gap: 6,
blocks blocks
} }