增加了token的公共参数
This commit is contained in:
parent
7342b958d2
commit
9f0e7b5d09
|
@ -43,7 +43,7 @@ public class AfterApprovePushRule implements IRule<OrderVO> {
|
||||||
}
|
}
|
||||||
HYSuperDMO dmo = new HYSuperDMO();
|
HYSuperDMO dmo = new HYSuperDMO();
|
||||||
ObjectMapper objectMapper = new ObjectMapper();
|
ObjectMapper objectMapper = new ObjectMapper();
|
||||||
String token="";
|
String token=EGAPParam.EGAPTOKEN;
|
||||||
for (int i = 0; i < vos.length; i++) {
|
for (int i = 0; i < vos.length; i++) {
|
||||||
if(vos[i].getHVO().getForderstatus().intValue()==3) {
|
if(vos[i].getHVO().getForderstatus().intValue()==3) {
|
||||||
HashMap<String, Object> h_bill = new HashMap<String, Object>();
|
HashMap<String, Object> h_bill = new HashMap<String, Object>();
|
||||||
|
@ -77,6 +77,7 @@ public class AfterApprovePushRule implements IRule<OrderVO> {
|
||||||
ArrayList<Object> l_items = new ArrayList<Object>();
|
ArrayList<Object> l_items = new ArrayList<Object>();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
OrderItemVO[] itemVOs= vos[i].getBVO();
|
OrderItemVO[] itemVOs= vos[i].getBVO();
|
||||||
for (int j = 0; j < itemVOs.length; j++) {
|
for (int j = 0; j < itemVOs.length; j++) {
|
||||||
HashMap<String, Object> b_item = new HashMap<String, Object>();
|
HashMap<String, Object> b_item = new HashMap<String, Object>();
|
||||||
|
|
|
@ -35,7 +35,7 @@ public INCCForEGAPIntf iNCCForEGAPIntf =null;
|
||||||
|
|
||||||
HYSuperDMO dmo = new HYSuperDMO();
|
HYSuperDMO dmo = new HYSuperDMO();
|
||||||
ObjectMapper objectMapper = new ObjectMapper();
|
ObjectMapper objectMapper = new ObjectMapper();
|
||||||
String token="";
|
String token=EGAPParam.EGAPTOKEN;;
|
||||||
for (int i = 0; i < vos.length; i++) {
|
for (int i = 0; i < vos.length; i++) {
|
||||||
if(vos[i].getHVO().getForderstatus().intValue()!=3) {
|
if(vos[i].getHVO().getForderstatus().intValue()!=3) {
|
||||||
HashMap<String, Object> h_bill = new HashMap<String, Object>();
|
HashMap<String, Object> h_bill = new HashMap<String, Object>();
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
package nc.impl.pu.m21.action.rule.def;
|
||||||
|
|
||||||
|
public class EGAPParam {
|
||||||
|
|
||||||
|
public static String EGAPTOKEN = "D6467205-7A71-4CF6-BD8C-3F9968BF0826";
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue