凭证相关

This commit is contained in:
amarsoft 2018-07-31 14:41:30 +08:00
parent 8228d9849f
commit e425f7eeb1
2 changed files with 8 additions and 4 deletions

View File

@ -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);

View File

@ -13,10 +13,8 @@ public class auxiliaryContractOrg implements VoucherJavaParamService {
public Map<String, String> getJavaParam(JBOTransaction tx,
Map<String, String> param) throws BusinessException {
Map<String,String>returnValue=new HashMap<String,String>();
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;
}
}