1
This commit is contained in:
parent
527b187d9d
commit
c16e245145
@ -35,7 +35,7 @@ public class LBCustomerRelaProjToContractBusiness extends BaseBussiness {
|
||||
fromCondtion.put("contract_id","");
|
||||
Map<String,String> other=new HashMap<String, String>();
|
||||
other.put("flowunid",this.getAttribute("FlowUnid").toString());
|
||||
DataOperatorUtil.copySingleJBO(LB_GUARANTEE_UNIT.CLASS_NAME, fromCondtion, LB_GUARANTEE_UNIT_TEMP.CLASS_NAME, null, other, Sqlca);
|
||||
DataOperatorUtil.copyJBOSet(LB_GUARANTEE_UNIT.CLASS_NAME, fromCondtion, LB_GUARANTEE_UNIT_TEMP.CLASS_NAME, null, other, null,Sqlca);
|
||||
DataOperatorUtil.copyJBOSet(CUSTOMER_FAMILY.CLASS_NAME, fromCondtion, CUSTOMER_FAMILY_TEMP.CLASS_NAME, null, other, null, Sqlca);
|
||||
List<BizObject> unionList= DataOperatorUtil.getSetJBO(LB_UNION_LESSEE.CLASS_NAME, fromCondtion, Sqlca);
|
||||
//List<BizObject> unitList=DataOperatorUtil.getSetJBO(LB_GUARANTEE_UNIT.CLASS_NAME, fromCondtion, Sqlca);
|
||||
|
||||
@ -49,7 +49,7 @@ public class BusinessApprovalStartAction extends BaseFlowStartAction{
|
||||
if(businessType.equals("1")){//1是汽车业务
|
||||
//补充业务逻辑,如果贴息余额不够的情况,就不给通过
|
||||
Map<String, String> discount = ProductParamUtil.getProductComponentAllParameters(this.getProductId(), "PRD0315", "DISCOUNT");
|
||||
if(!discount.isEmpty() && null != discount.get("DISCOUNT_ALL") && null != discount.get("CostType08")) {
|
||||
if(!discount.isEmpty() && !"".equals(discount.get("DISCOUNT_ALL")) && !"".equals(discount.get("CostType08"))) {
|
||||
synchronized (this) {
|
||||
String discountAll = discount.get("DISCOUNT_ALL");
|
||||
String discountValue = discount.get("CostType08");
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user