Showing
1 changed file
with
3 additions
and
4 deletions
| ... | ... | @@ -924,9 +924,10 @@ public class PurchaseOrderInfoServiceImpl extends BaseMpServiceImpl<PurchaseOrde |
| 924 | 924 | } |
| 925 | 925 | orderInfo.setPurchaseOrderLineList(orderLineList); |
| 926 | 926 | if (CollectionUtils.isNotEmpty(proProcessList)) { |
| 927 | - orderInfo.setProductionProcess(String.join("\n\n", proProcessList)); | |
| 927 | + orderInfo.setProductionProcess(String.join("\n", proProcessList)); | |
| 928 | 928 | } |
| 929 | - return String.join("\n", proProcessList); | |
| 929 | + | |
| 930 | + return orderInfo; | |
| 930 | 931 | } |
| 931 | 932 | |
| 932 | 933 | @Override |
| ... | ... | @@ -935,8 +936,6 @@ public class PurchaseOrderInfoServiceImpl extends BaseMpServiceImpl<PurchaseOrde |
| 935 | 936 | return new ReviewerDto(); |
| 936 | 937 | } |
| 937 | 938 | return getBaseMapper().getReviewerById(id); |
| 938 | - | |
| 939 | - return orderInfo; | |
| 940 | 939 | } |
| 941 | 940 | |
| 942 | 941 | ... | ... |