诊断拉取业务单去掉括号内容

dev
anthonywj 2 years ago
parent e05062f4e5
commit 29dfa9eb92

@ -282,6 +282,12 @@ public class PzhzdClient implements BaseHttpClient {
UdiwmsInvProductResponse invProductResponse = new UdiwmsInvProductResponse();
invProductResponse.setName(onhandQueryResponse.getCinventory_name());
invProductResponse.setBatchNo(onhandQueryResponse.getVbatchcode());
// if (StrUtil.isNotEmpty(onhandQueryResponse.getVbatchcode())) {
// String str = onhandQueryResponse.getVbatchcode();
// String regex = "\\(.*?\\)";
// str = str.replaceAll(regex, "");
// invProductResponse.setBatchNo(str);
// }
invProductResponse.setCode(onhandQueryResponse.getCinventory_code());
invProductResponse.setCount(onhandQueryResponse.getNnum());
invProductResponse.setSpec(onhandQueryResponse.getInvspec());
@ -532,6 +538,12 @@ public class PzhzdClient implements BaseHttpClient {
subErpOrder.setCount(childrenvoBean.getNinnum());
subErpOrder.setReCount(childrenvoBean.getNshouldinnum());
subErpOrder.setBatchNo(childrenvoBean.getVbatchcode());
if (StrUtil.isNotEmpty(childrenvoBean.getVbatchcode())) {
String str = childrenvoBean.getVbatchcode();
String regex = "\\(.*?\\)";
str = str.replaceAll(regex, "");
subErpOrder.setBatchNo(str);
}
subErpOrder.setPrice(BigDecimal.valueOf(childrenvoBean.getNprice()));
subErpOrder.setExpireDate(childrenvoBean.getDvalidate());
subPurchases.add(subErpOrder);
@ -588,6 +600,14 @@ public class PzhzdClient implements BaseHttpClient {
subPurchase.setReCount(childrenvoBean.getNshouldoutnum());
subPurchase.setCount(childrenvoBean.getNoutnum());
subPurchase.setBatchNo(childrenvoBean.getVbatchcode());
if (StrUtil.isNotEmpty(childrenvoBean.getVbatchcode())) {
String str = childrenvoBean.getVbatchcode();
String regex = "\\(.*?\\)";
str = str.replaceAll(regex, "");
subPurchase.setBatchNo(str);
}
subPurchase.setPrice(BigDecimal.valueOf(childrenvoBean.getNsaleprice()));
subPurchases.add(subPurchase);
}

@ -99,7 +99,7 @@ public class UCloudHttpClient {
* @param uSaleoutQueryRequest
* @return
*/
public UBaseResponse saleoutQuery(USaleoutQueryRequest uSaleoutQueryRequest) {
public UBaseResponse saleoutQuery(USaleoutQueryRequest uSaleoutQueryRequest) {
//请求开始时间
Date date = new Date();

Loading…
Cancel
Save