Showing
2 changed files
with
6 additions
and
0 deletions
| ... | ... | @@ -266,6 +266,11 @@ public class OrderChangeRecordBo extends BaseBo<OrderInfoChangeRecord> { |
| 266 | 266 | @ApiModelProperty("合同类型") |
| 267 | 267 | private String contractType; |
| 268 | 268 | |
| 269 | + /** | |
| 270 | + * 订货单状态 | |
| 271 | + */ | |
| 272 | + @ApiModelProperty("订货单状态") | |
| 273 | + private String status; | |
| 269 | 274 | |
| 270 | 275 | public OrderChangeRecordBo() { |
| 271 | 276 | ... | ... |
xingyun-sc/src/main/java/com/lframework/xingyun/sc/controller/order/OrderChangeRecordController.java
| ... | ... | @@ -107,6 +107,7 @@ public class OrderChangeRecordController extends DefaultBaseController { |
| 107 | 107 | result.setContractType(contractDistributorStandard.getType()); |
| 108 | 108 | } |
| 109 | 109 | } |
| 110 | + result.setStatus(purchaseOrderInfo.getStatus()); | |
| 110 | 111 | } |
| 111 | 112 | |
| 112 | 113 | return InvokeResultBuilder.success(result); | ... | ... |