From 0bb0bff90498bdec6f3d954dfc0bef2dec3b28c1 Mon Sep 17 00:00:00 2001 From: xiaoding721 <33130084+xiaoding721@users.noreply.github.com> Date: 星期二, 03 九月 2024 18:04:23 +0800 Subject: [PATCH] Merge branch 'dev' of http://47.101.211.7:10101/r/VWED into dev --- _Main/BL/Type_ChangeLossSettingExcel/StaticMethod_Import.qbl | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/_Main/BL/Type_ChangeLossSettingExcel/StaticMethod_Import.qbl b/_Main/BL/Type_ChangeLossSettingExcel/StaticMethod_Import.qbl index 94fe124..466849e 100644 --- a/_Main/BL/Type_ChangeLossSettingExcel/StaticMethod_Import.qbl +++ b/_Main/BL/Type_ChangeLossSettingExcel/StaticMethod_Import.qbl @@ -26,7 +26,7 @@ and cls.ProductSecond().ID() = excel.Product2() and cls.Unit().ID() = excel.Unit() ); if( isnull( cls ) ){ - cls := macroplan.ChangeLossSetting( relnew, ChangeLossNr := excel.ChangeLossNr() ); + cls := macroplan.ChangeLossSetting( relnew, ChangeLossNr := [Number]excel.ChangeLossNumber() ); product1 := selectobject( macroplan, Product_MP, product, product.ID() = excel.Product1() ); product2 := selectobject( macroplan, Product_MP, product, product.ID() = excel.Product2() ); unit := selectobject( macroplan, Unit, unit, unit.ID() = excel.Unit() ); @@ -34,7 +34,7 @@ cls.ProductSecond( relset, product2 ); cls.Unit( relset, unit ); }else { - cls.ChangeLossNr( excel.ChangeLossNr() ); + cls.ChangeLossNr( [Number]excel.ChangeLossNumber() ); } excel.Delete(); } -- Gitblit v1.9.3