|
|
|
@ -121,7 +121,7 @@ public class OaSrmVendorAdmitAction extends BaseBean implements Action, EsbServe
|
|
|
|
|
// 现有合格供应商
|
|
|
|
|
String xyhggys = String.valueOf(map.get("XYHGGYSMC"));
|
|
|
|
|
VdDlvApplyHandlerServiceServiceStub.DlvApplyIn dlvapplyin = new VdDlvApplyHandlerServiceServiceStub.DlvApplyIn();
|
|
|
|
|
dlvapplyin.setRequestId(Integer.parseInt(requestid));
|
|
|
|
|
dlvapplyin.setRequestId(Integer.parseInt(getFormno(requestid)));
|
|
|
|
|
dlvapplyin.setApplyNo(lcbh);
|
|
|
|
|
dlvapplyin.setCompanyCode(sqdwbm);
|
|
|
|
|
dlvapplyin.setCompanyName(sqdw);
|
|
|
|
@ -193,6 +193,16 @@ public class OaSrmVendorAdmitAction extends BaseBean implements Action, EsbServe
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getFormno(String requestid){
|
|
|
|
|
String formno = "";
|
|
|
|
|
if(requestid.length()>8){
|
|
|
|
|
formno = "1"+requestid.substring(requestid.length()-8);
|
|
|
|
|
}else{
|
|
|
|
|
formno = requestid;
|
|
|
|
|
}
|
|
|
|
|
return formno;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Map<String, Object> getResultMapForAction(Map<String, Object> map, String key, Object value, RequestManager requestManager) {
|
|
|
|
|
if (key != null && !key.isEmpty()) {
|
|
|
|
|
map.put(key, value);
|
|
|
|
|