业务单据回退代码copy
parent
19f32be2a0
commit
3306777722
@ -0,0 +1,34 @@
|
||||
package com.glxp.api.admin.entity.info;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class ProductRemarkSetEntity {
|
||||
|
||||
|
||||
private String remarkKey1;
|
||||
private String remarkKey2;
|
||||
private String remarkKey3;
|
||||
private String remarkKey4;
|
||||
private String remarkKey6;
|
||||
private String remarkKey5;
|
||||
private String remarkKey7;
|
||||
private String remarkKey8;
|
||||
private String remarkTitle1;
|
||||
private String remarkTitle2;
|
||||
private String remarkTitle3;
|
||||
private String remarkTitle4;
|
||||
private String remarkTitle5;
|
||||
private String remarkTitle6;
|
||||
private String remarkTitle7;
|
||||
private String remarkTitle8;
|
||||
private boolean remarkEnable1;
|
||||
private boolean remarkEnable2;
|
||||
private boolean remarkEnable4;
|
||||
private boolean remarkEnable3;
|
||||
private boolean remarkEnable5;
|
||||
private boolean remarkEnable6;
|
||||
private boolean remarkEnable7;
|
||||
private boolean remarkEnable8;
|
||||
|
||||
}
|
@ -0,0 +1,98 @@
|
||||
package com.glxp.api.admin.util;
|
||||
|
||||
|
||||
import com.glxp.api.admin.constant.ConstantStatus;
|
||||
import com.glxp.api.admin.entity.basic.BussinessTypeEntity;
|
||||
import com.glxp.api.admin.entity.inout.OrderEntity;
|
||||
|
||||
public class BusTypeCheckUtils {
|
||||
|
||||
public static boolean isFirstCheck(BussinessTypeEntity bussinessTypeEntity, OrderEntity orderEntity) {
|
||||
if (bussinessTypeEntity.isCheckEnable()) {
|
||||
if (orderEntity.getFromType().intValue() == ConstantStatus.FROM_UDIMS) {
|
||||
if (bussinessTypeEntity.isCheckUdims()) {
|
||||
|
||||
return true;
|
||||
}
|
||||
} else if (orderEntity.getFromType().intValue() == ConstantStatus.FROM_WEBNEW) {
|
||||
if (bussinessTypeEntity.isCheckWebNew()) {
|
||||
|
||||
return true;
|
||||
}
|
||||
} else if (orderEntity.getFromType().intValue() == ConstantStatus.FROM_PDAED) {
|
||||
if (bussinessTypeEntity.isCheckPdaEd()) {
|
||||
|
||||
return true;
|
||||
}
|
||||
} else if (orderEntity.getFromType().intValue() == ConstantStatus.FROM_PDAUN) {
|
||||
if (bussinessTypeEntity.isCheckPdaUn()) {
|
||||
|
||||
return true;
|
||||
}
|
||||
} else if (orderEntity.getFromType().intValue() == ConstantStatus.FROM_PC) {
|
||||
if (bussinessTypeEntity.isCheckPc()) {
|
||||
|
||||
return true;
|
||||
}
|
||||
} else if (orderEntity.getFromType().intValue() == ConstantStatus.FROM_CHANGE) {
|
||||
if (bussinessTypeEntity.isCheckChange()) {
|
||||
|
||||
return true;
|
||||
}
|
||||
} else if (orderEntity.getFromType().intValue() == ConstantStatus.FROM_PEACE_CHANGE) {
|
||||
if (bussinessTypeEntity.isCheckBalacne()) {
|
||||
|
||||
return true;
|
||||
}
|
||||
} else if (orderEntity.getFromType().intValue() == ConstantStatus.FROM_COPY) {
|
||||
if (bussinessTypeEntity.isCheckCopy()) {
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
public static boolean isSecondCheck(BussinessTypeEntity bussinessTypeEntity, OrderEntity orderEntity) {
|
||||
|
||||
if (bussinessTypeEntity.isSecCheckEnable()) {
|
||||
if (orderEntity.getFromType().intValue() == ConstantStatus.FROM_UDIMS) {
|
||||
if (bussinessTypeEntity.isSecCheckUdims()) {
|
||||
return true;
|
||||
}
|
||||
} else if (orderEntity.getFromType().intValue() == ConstantStatus.FROM_WEBNEW) {
|
||||
if (bussinessTypeEntity.isSecCheckWebNew()) {
|
||||
return true;
|
||||
}
|
||||
} else if (orderEntity.getFromType().intValue() == ConstantStatus.FROM_PDAED) {
|
||||
if (bussinessTypeEntity.isSecCheckPdaEd()) {
|
||||
return true;
|
||||
}
|
||||
} else if (orderEntity.getFromType().intValue() == ConstantStatus.FROM_PDAUN) {
|
||||
if (bussinessTypeEntity.isSecCheckPdaUn()) {
|
||||
return true;
|
||||
}
|
||||
} else if (orderEntity.getFromType().intValue() == ConstantStatus.FROM_PC) {
|
||||
if (bussinessTypeEntity.isSecCheckPc()) {
|
||||
return true;
|
||||
}
|
||||
} else if (orderEntity.getFromType().intValue() == ConstantStatus.FROM_CHANGE) {
|
||||
if (bussinessTypeEntity.isSecCheckChange()) {
|
||||
return true;
|
||||
}
|
||||
} else if (orderEntity.getFromType().intValue() == ConstantStatus.FROM_PEACE_CHANGE) {
|
||||
if (bussinessTypeEntity.isSecCheckBalacne()) {
|
||||
return true;
|
||||
}
|
||||
} else if (orderEntity.getFromType().intValue() == ConstantStatus.FROM_COPY) {
|
||||
if (bussinessTypeEntity.isSecCheckCopy()) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue