修复:勾选局部拆单尺寸时拆单错误的问题

pull/2555/head
ChenX 9 months ago
parent 726502417b
commit db328f1002

@ -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();

Loading…
Cancel
Save