This commit is contained in:
chikyun.kim
2018-10-23 08:50:11 +09:00
parent 74d52a3e70
commit 28cde78186
30 changed files with 8100 additions and 1377 deletions

View File

@@ -70,11 +70,16 @@ namespace FCM0000
{
var dr = drv.Row as dsMSSQL.ItemsRow;
item = dr.idx;
itemName = dr.name;
itemmodel = dr.model;
itemprice = dr.price;
itemSupply = dr.supply;
itemSupplyidx = dr.supplyidx;
if (dr.IsnameNull()) itemName = string.Empty;
else itemName = dr.name;
if (dr.IsmodelNull()) itemmodel = string.Empty;
else itemmodel = dr.model;
if (dr.IspriceNull()) itemprice = 0;
else itemprice = dr.price;
if (dr.IssupplyNull()) itemSupply = string.Empty;
else itemSupply = dr.supply;
if (dr.IssupplyidxNull()) itemSupplyidx = -1;
else itemSupplyidx = dr.supplyidx;
SID = dr.sid;
}
btOK.PerformClick();