From db328f1002876f1c997fc517e51a93e08e1f7fe7 Mon Sep 17 00:00:00 2001 From: ChenX Date: Thu, 11 Jan 2024 16:30:11 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D:=E5=8B=BE=E9=80=89=E5=B1=80?= =?UTF-8?q?=E9=83=A8=E6=8B=86=E5=8D=95=E5=B0=BA=E5=AF=B8=E6=97=B6=E6=8B=86?= =?UTF-8?q?=E5=8D=95=E9=94=99=E8=AF=AF=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Production/Product.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Production/Product.ts b/src/Production/Product.ts index 0640ceb9c..1bbba09b2 100644 --- a/src/Production/Product.ts +++ b/src/Production/Product.ts @@ -415,7 +415,7 @@ export namespace Production const isEffect = HostApplicationServices.chaidanOption.partialSplitValueCanTakesEffect; const param = { L: br.Height, W: br.Width, H: br.Thickness }; - if (isEffect || (spHeight && spWidth && spThickness)) + if (isEffect ? (spHeight || spWidth || spThickness) : (spHeight && spWidth && spThickness)) { spHeight = spHeight || br.Height.toString(); spWidth = spWidth || br.Width.toString();