feat:外销合同是否礼品赠送=是

This commit is contained in:
violet 2024-09-02 20:18:28 +08:00
parent 8dc728d79f
commit e4bbc145d8

View File

@ -60,7 +60,11 @@ public class SalesOrderAuditOp extends AbstractOperationServicePlugIn {
for(DynamicObject dataEntitie : dataEntities){
dataEntitie = BusinessDataServiceHelper.loadSingle(dataEntitie.getPkValue(),dataEntitie.getDynamicObjectType().getName());
frameworkContract(dataEntitie);
//是否礼品赠送 =
String yem_isgiftgive = dataEntitie.getString("yem_isgiftgive");
if(yem_isgiftgive.equals("A")){
giftAmount(dataEntitie);
}
giftSpecialAmount(dataEntitie);
}