已审核入库单电子签名也显示;
This commit is contained in:
+8
@@ -314,6 +314,14 @@ public class StockInOrderApplicationService {
|
|||||||
if (status != null) {
|
if (status != null) {
|
||||||
if (status == 5) {
|
if (status == 5) {
|
||||||
stockInOrderPO.setStatusName("已入库");
|
stockInOrderPO.setStatusName("已入库");
|
||||||
|
} else if (status == 4) {
|
||||||
|
stockInOrderPO.setStatusName("上架中");
|
||||||
|
} else if (status == 3) {
|
||||||
|
stockInOrderPO.setStatusName("收货中");
|
||||||
|
} else if (status == 2) {
|
||||||
|
stockInOrderPO.setStatusName("已审核");
|
||||||
|
} else if (status == 1) {
|
||||||
|
stockInOrderPO.setStatusName("已创建");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// 签名状态名称
|
// 签名状态名称
|
||||||
|
|||||||
+1
@@ -138,6 +138,7 @@ public class StockInOrderDomainService {
|
|||||||
if (stockInOrderDO.getStatus() == null) {
|
if (stockInOrderDO.getStatus() == null) {
|
||||||
// stockInOrderDO.setStatus(5);
|
// stockInOrderDO.setStatus(5);
|
||||||
List<Integer> list = new ArrayList<>();
|
List<Integer> list = new ArrayList<>();
|
||||||
|
list.add(2);
|
||||||
list.add(3);
|
list.add(3);
|
||||||
list.add(4);
|
list.add(4);
|
||||||
list.add(5);
|
list.add(5);
|
||||||
|
|||||||
Reference in New Issue
Block a user