feat: bug-783 采购单退库功能调整

This commit is contained in:
曹鹏飞 2025-10-08 09:12:33 +08:00
parent 04b68647b3
commit be2af35025
2 changed files with 8 additions and 0 deletions

View File

@ -160,6 +160,9 @@ public class SapService {
.get();
item.getSernrs().add(ot2.getString("SERNR"));
}
if (StrUtil.isNotBlank(qo.getEbelp())) {
vo.getItems().removeIf(it -> !StrUtil.equals(it.getEbelp(), qo.getEbelp()));
}
log.debug("数据:{}", JSONUtil.toJsonStr(vo));
return vo;

View File

@ -21,4 +21,9 @@ public class zwm3A05QO {
* 供应商或债权人的帐号
*/
private String lifnr;
/**
* 采购凭证的项目编号
*/
private String ebelp;
}