Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-api-boot-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lanbaoming
jiedao-api-boot-master
Commits
e2119240
Commit
e2119240
authored
Nov 20, 2024
by
zhengyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
对单独的提货状态进查询与文案判断转义bug修复
parent
d4db80dd
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
74 additions
and
2 deletions
+74
-2
OrderBackInfoDto.java
...a/cn/iocoder/yudao/module/order/dto/OrderBackInfoDto.java
+9
-0
OrderStatusMsgEnum.java
.../iocoder/yudao/module/order/enums/OrderStatusMsgEnum.java
+2
-2
OrderBackPageVO.java
.../iocoder/yudao/module/order/vo/order/OrderBackPageVO.java
+9
-0
OrderBackVO.java
...a/cn/iocoder/yudao/module/order/vo/order/OrderBackVO.java
+9
-0
OrderExcelVO.java
.../cn/iocoder/yudao/module/order/vo/order/OrderExcelVO.java
+9
-0
OrderBackVO.java
...der/yudao/module/order/vo/orderException/OrderBackVO.java
+9
-0
MyAchievementDto.java
...va/cn/iocoder/yudao/module/sale/dto/MyAchievementDto.java
+9
-0
BoxLoadOrderVO.java
...ao/module/shipment/vo/boxPreloadGoods/BoxLoadOrderVO.java
+9
-0
BoxPreloadGoodsBackVO.java
...le/shipment/vo/boxPreloadGoods/BoxPreloadGoodsBackVO.java
+9
-0
No files found.
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/dto/OrderBackInfoDto.java
View file @
e2119240
...
@@ -593,6 +593,15 @@ public class OrderBackInfoDto {
...
@@ -593,6 +593,15 @@ public class OrderBackInfoDto {
}
}
public
void
setPickState
(
Integer
pickState
)
{
this
.
pickState
=
pickState
;
if
(
Objects
.
nonNull
(
pickState
)
&&
pickState
>
0
)
{
// 当提货状态不未空时,判断提货状态是否需要转化为对应的原有主状态中的提货状态
this
.
status
=
pickState
==
1
?
21
:
20
;
}
this
.
getOrderDesc
();
}
public
void
setAbnormalState
(
Integer
abnormalState
)
{
public
void
setAbnormalState
(
Integer
abnormalState
)
{
this
.
abnormalState
=
abnormalState
;
this
.
abnormalState
=
abnormalState
;
this
.
getOrderDesc
();
this
.
getOrderDesc
();
...
...
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/enums/OrderStatusMsgEnum.java
View file @
e2119240
...
@@ -149,9 +149,9 @@ public enum OrderStatusMsgEnum {
...
@@ -149,9 +149,9 @@ public enum OrderStatusMsgEnum {
public
static
String
getMsg
(
Integer
pickState
,
Integer
status
,
Integer
inWarehouseState
,
Integer
shipmentState
,
Integer
airShipment
,
public
static
String
getMsg
(
Integer
pickState
,
Integer
status
,
Integer
inWarehouseState
,
Integer
shipmentState
,
Integer
airShipment
,
Integer
transportId
,
Integer
userType
,
Integer
lang
)
{
Integer
transportId
,
Integer
userType
,
Integer
lang
)
{
if
(
Objects
.
nonNull
(
pickState
))
{
if
(
Objects
.
nonNull
(
pickState
)
&&
pickState
>
0
)
{
// 当提货状态不未空时,判断提货状态是否需要转化为对应的原有主状态中的提货状态
// 当提货状态不未空时,判断提货状态是否需要转化为对应的原有主状态中的提货状态
status
=
pickState
>
0
?
(
pickState
==
1
?
21
:
20
)
:
status
;
status
=
pickState
==
1
?
21
:
20
;
}
}
for
(
OrderStatusMsgEnum
value
:
OrderStatusMsgEnum
.
values
())
{
for
(
OrderStatusMsgEnum
value
:
OrderStatusMsgEnum
.
values
())
{
String
message
=
userType
==
2
?
value
.
adminSourceName
:
value
.
customerSourceName
;
String
message
=
userType
==
2
?
value
.
adminSourceName
:
value
.
customerSourceName
;
...
...
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/vo/order/OrderBackPageVO.java
View file @
e2119240
...
@@ -606,6 +606,15 @@ public class OrderBackPageVO {
...
@@ -606,6 +606,15 @@ public class OrderBackPageVO {
this
.
getOrderDesc
();
this
.
getOrderDesc
();
}
}
public
void
setPickState
(
Integer
pickState
)
{
this
.
pickState
=
pickState
;
if
(
Objects
.
nonNull
(
pickState
)
&&
pickState
>
0
)
{
// 当提货状态不未空时,判断提货状态是否需要转化为对应的原有主状态中的提货状态
this
.
status
=
pickState
==
1
?
21
:
20
;
}
this
.
getOrderDesc
();
}
public
void
setAuditType
(
Integer
auditType
)
{
public
void
setAuditType
(
Integer
auditType
)
{
this
.
auditType
=
auditType
;
this
.
auditType
=
auditType
;
this
.
getOrderDesc
();
this
.
getOrderDesc
();
...
...
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/vo/order/OrderBackVO.java
View file @
e2119240
...
@@ -719,6 +719,15 @@ public class OrderBackVO {
...
@@ -719,6 +719,15 @@ public class OrderBackVO {
this
.
getOrderDesc
();
this
.
getOrderDesc
();
}
}
public
void
setPickState
(
Integer
pickState
)
{
this
.
pickState
=
pickState
;
if
(
Objects
.
nonNull
(
pickState
)
&&
pickState
>
0
)
{
// 当提货状态不未空时,判断提货状态是否需要转化为对应的原有主状态中的提货状态
this
.
status
=
pickState
==
1
?
21
:
20
;
}
this
.
getOrderDesc
();
}
public
void
setAuditType
(
Integer
auditType
)
{
public
void
setAuditType
(
Integer
auditType
)
{
this
.
auditType
=
auditType
;
this
.
auditType
=
auditType
;
this
.
getOrderDesc
();
this
.
getOrderDesc
();
...
...
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/vo/order/OrderExcelVO.java
View file @
e2119240
...
@@ -411,6 +411,15 @@ public class OrderExcelVO {
...
@@ -411,6 +411,15 @@ public class OrderExcelVO {
this
.
getOrderDesc
();
this
.
getOrderDesc
();
}
}
public
void
setPickState
(
Integer
pickState
)
{
this
.
pickState
=
pickState
;
if
(
Objects
.
nonNull
(
pickState
)
&&
pickState
>
0
)
{
// 当提货状态不未空时,判断提货状态是否需要转化为对应的原有主状态中的提货状态
this
.
status
=
pickState
==
1
?
21
:
20
;
}
this
.
getOrderDesc
();
}
public
void
setAuditType
(
Integer
auditType
)
{
public
void
setAuditType
(
Integer
auditType
)
{
this
.
auditType
=
auditType
;
this
.
auditType
=
auditType
;
this
.
getOrderDesc
();
this
.
getOrderDesc
();
...
...
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/vo/orderException/OrderBackVO.java
View file @
e2119240
...
@@ -211,6 +211,15 @@ public class OrderBackVO {
...
@@ -211,6 +211,15 @@ public class OrderBackVO {
this
.
getOrderDesc
();
this
.
getOrderDesc
();
}
}
public
void
setPickState
(
Integer
pickState
)
{
this
.
pickState
=
pickState
;
if
(
Objects
.
nonNull
(
pickState
)
&&
pickState
>
0
)
{
// 当提货状态不未空时,判断提货状态是否需要转化为对应的原有主状态中的提货状态
this
.
status
=
pickState
==
1
?
21
:
20
;
}
this
.
getOrderDesc
();
}
public
void
setAuditType
(
Integer
auditType
)
{
public
void
setAuditType
(
Integer
auditType
)
{
this
.
auditType
=
auditType
;
this
.
auditType
=
auditType
;
this
.
getOrderDesc
();
this
.
getOrderDesc
();
...
...
yudao-module-sale/yudao-module-sale-core/src/main/java/cn/iocoder/yudao/module/sale/dto/MyAchievementDto.java
View file @
e2119240
...
@@ -201,6 +201,15 @@ public class MyAchievementDto {
...
@@ -201,6 +201,15 @@ public class MyAchievementDto {
this
.
getOrderDesc
();
this
.
getOrderDesc
();
}
}
public
void
setPickState
(
Integer
pickState
)
{
this
.
pickState
=
pickState
;
if
(
Objects
.
nonNull
(
pickState
)
&&
pickState
>
0
)
{
// 当提货状态不未空时,判断提货状态是否需要转化为对应的原有主状态中的提货状态
this
.
status
=
pickState
==
1
?
21
:
20
;
}
this
.
getOrderDesc
();
}
public
void
setAuditType
(
Integer
auditType
)
{
public
void
setAuditType
(
Integer
auditType
)
{
this
.
auditType
=
auditType
;
this
.
auditType
=
auditType
;
this
.
getOrderDesc
();
this
.
getOrderDesc
();
...
...
yudao-module-shipment/yudao-module-shipment-core/src/main/java/cn/iocoder/yudao/module/shipment/vo/boxPreloadGoods/BoxLoadOrderVO.java
View file @
e2119240
...
@@ -251,6 +251,15 @@ public class BoxLoadOrderVO {
...
@@ -251,6 +251,15 @@ public class BoxLoadOrderVO {
this
.
getOrderDesc
();
this
.
getOrderDesc
();
}
}
public
void
setPickState
(
Integer
pickState
)
{
this
.
pickState
=
pickState
;
if
(
Objects
.
nonNull
(
pickState
)
&&
pickState
>
0
)
{
// 当提货状态不未空时,判断提货状态是否需要转化为对应的原有主状态中的提货状态
this
.
status
=
pickState
==
1
?
21
:
20
;
}
this
.
getOrderDesc
();
}
public
void
setAuditType
(
Integer
auditType
)
{
public
void
setAuditType
(
Integer
auditType
)
{
this
.
auditType
=
auditType
;
this
.
auditType
=
auditType
;
this
.
getOrderDesc
();
this
.
getOrderDesc
();
...
...
yudao-module-shipment/yudao-module-shipment-core/src/main/java/cn/iocoder/yudao/module/shipment/vo/boxPreloadGoods/BoxPreloadGoodsBackVO.java
View file @
e2119240
...
@@ -374,6 +374,15 @@ public class BoxPreloadGoodsBackVO {
...
@@ -374,6 +374,15 @@ public class BoxPreloadGoodsBackVO {
this
.
getOrderDesc
();
this
.
getOrderDesc
();
}
}
public
void
setPickState
(
Integer
pickState
)
{
this
.
pickState
=
pickState
;
if
(
Objects
.
nonNull
(
pickState
)
&&
pickState
>
0
)
{
// 当提货状态不未空时,判断提货状态是否需要转化为对应的原有主状态中的提货状态
this
.
status
=
pickState
==
1
?
21
:
20
;
}
this
.
getOrderDesc
();
}
public
void
setAuditType
(
Integer
auditType
)
{
public
void
setAuditType
(
Integer
auditType
)
{
this
.
auditType
=
auditType
;
this
.
auditType
=
auditType
;
this
.
getOrderDesc
();
this
.
getOrderDesc
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment