From e425f7eeb1d97adb5fd58be90d100adc7c3b905c Mon Sep 17 00:00:00 2001 From: amarsoft Date: Tue, 31 Jul 2018 14:41:30 +0800 Subject: [PATCH] =?UTF-8?q?=E5=87=AD=E8=AF=81=E7=9B=B8=E5=85=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../CreateVoucherDistCautionMoneyRe.java | 6 ++++++ .../auxiliaryInfo/auxiliaryContractOrg.java | 6 ++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src_core/com/tenwa/voucher/CreateVoucherProcess/CreateVoucherDistCautionMoneyRe.java b/src_core/com/tenwa/voucher/CreateVoucherProcess/CreateVoucherDistCautionMoneyRe.java index 77f91f575..1299b1d29 100644 --- a/src_core/com/tenwa/voucher/CreateVoucherProcess/CreateVoucherDistCautionMoneyRe.java +++ b/src_core/com/tenwa/voucher/CreateVoucherProcess/CreateVoucherDistCautionMoneyRe.java @@ -75,6 +75,12 @@ public String CreateVoucher(String FlowUnid,String VOUCHERNO) throws Exception { param.put("CUSTID",DISTRIBUTOR_ID); param.put("CUSTNAME",DISTRIBUTOR_NAME); param.put("FlowUnid", FlowUnid); + + //param.put("LEASFORMASSET", "04"); // 融资租赁资产 + param.put("DEPT", "02"); // 部门 + + //param.put("FUNDTYPE", "01"); // 主营类型 + //param.put("BUSINESSTYPE", "06"); map.clear(); map.put("PROJ_TYPE", leas_form); map.put("VOUCHER_NO", VOUCHERNO); diff --git a/src_core/com/tenwa/voucher/CreateVoucherProcess/auxiliaryInfo/auxiliaryContractOrg.java b/src_core/com/tenwa/voucher/CreateVoucherProcess/auxiliaryInfo/auxiliaryContractOrg.java index 708fbfb7a..757f0c0aa 100644 --- a/src_core/com/tenwa/voucher/CreateVoucherProcess/auxiliaryInfo/auxiliaryContractOrg.java +++ b/src_core/com/tenwa/voucher/CreateVoucherProcess/auxiliaryInfo/auxiliaryContractOrg.java @@ -13,10 +13,8 @@ public class auxiliaryContractOrg implements VoucherJavaParamService { public Map getJavaParam(JBOTransaction tx, Map param) throws BusinessException { MapreturnValue=new HashMap(); - String ORGID=param.get("ORGID"); - String ORGNAME=param.get("ORGNAME"); - returnValue.put("ORGID",ORGID); - returnValue.put("ORGNAME",ORGNAME); + String DEPT=param.get("DEPT"); + returnValue.put("DEPT",DEPT); return returnValue; } }