fix:
1.外销合同贸易术语赋值
This commit is contained in:
parent
b8170416a7
commit
b207d40d76
@ -1109,9 +1109,9 @@ public class SalesOrderUtils {
|
||||
for (DynamicObject destport : destports) {
|
||||
DynamicObject port = destport.getDynamicObject("fbasedataid");
|
||||
if (port == null) continue;
|
||||
port = BusinessDataServiceHelper.loadSingle(port.getPkValue(), port.getDataEntityType().getName(), "yem_factory");
|
||||
if (!port.getString("yem_factory").isEmpty()) {
|
||||
sb.append(port.getString("yem_factory")).append(";");
|
||||
port = BusinessDataServiceHelper.loadSingle(port.getPkValue(), port.getDataEntityType().getName(), "yem_namecn");
|
||||
if (!port.getString("yem_namecn").isEmpty()) {
|
||||
sb.append(port.getString("yem_namecn")).append(";");
|
||||
}
|
||||
}
|
||||
if (sb.lastIndexOf(";") == sb.length() - 1) {
|
||||
|
Loading…
Reference in New Issue
Block a user