修改SITC 冷冻 湿度、通风默认填写单位

master
jianghaiqing 1 month ago
parent f66889f639
commit f381f1821b

@ -135,8 +135,12 @@ namespace Myshipping.Application.EDI.SITC
e.tempMax = InttrEdi.BSLIST[0].TEMPMAX;
e.tempSetting = InttrEdi.BSLIST[0].TEMPSET;
e.unit = "C";
e.humdity = InttrEdi.BSLIST[0].HUMIDITY;
e.vent = InttrEdi.BSLIST[0].REEFERF;
if(!string.IsNullOrWhiteSpace(InttrEdi.BSLIST[0].HUMIDITY))
e.humdity = $"{InttrEdi.BSLIST[0].HUMIDITY}%";
if(!string.IsNullOrWhiteSpace(InttrEdi.BSLIST[0].REEFERF))
e.vent = $"{InttrEdi.BSLIST[0].REEFERF}CBM/H";
postModel.extras.Add(e);
}

Loading…
Cancel
Save