Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
项目统一框架
amos-boot-biz
Commits
74d2de3b
Commit
74d2de3b
authored
Aug 21, 2023
by
tangwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改bug
parent
8b7397f2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
PreparationPageDto.java
...oin/amos/boot/module/hygf/api/dto/PreparationPageDto.java
+1
-1
pom.xml
amos-boot-system-jxiop/amos-boot-module-hygf-biz/pom.xml
+6
-0
PreparationMoneyServiceImpl.java
...le/hygf/biz/service/impl/PreparationMoneyServiceImpl.java
+4
-0
No files found.
amos-boot-system-jxiop/amos-boot-module-hygf-api/src/main/java/com/yeejoin/amos/boot/module/hygf/api/dto/PreparationPageDto.java
View file @
74d2de3b
...
@@ -25,5 +25,5 @@ public class PreparationPageDto extends Page<PreparationMoney> {
...
@@ -25,5 +25,5 @@ public class PreparationPageDto extends Page<PreparationMoney> {
String
documentState
;
//订单状态未完成已完成作废
String
documentState
;
//订单状态未完成已完成作废
String
shipmentStatus
;
//发货状态 未发货已发货
String
shipmentStatus
;
//发货状态 未发货已发货
String
receivingStatus
;
//到货状态未到货已到货
String
receivingStatus
;
//到货状态未到货已到货
Boolean
isdocumentStatezf
;
}
}
amos-boot-system-jxiop/amos-boot-module-hygf-biz/pom.xml
View file @
74d2de3b
...
@@ -41,6 +41,12 @@
...
@@ -41,6 +41,12 @@
<artifactId>
spring-boot-starter-activemq
</artifactId>
<artifactId>
spring-boot-starter-activemq
</artifactId>
<version>
2.5.4
</version>
<version>
2.5.4
</version>
</dependency>
</dependency>
<dependency>
<groupId>
com.qiyuesuo.sdk
</groupId>
<artifactId>
sdk-java
</artifactId>
<version>
3.0.0
</version>
</dependency>
</dependencies>
</dependencies>
<build>
<build>
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/service/impl/PreparationMoneyServiceImpl.java
View file @
74d2de3b
...
@@ -46,6 +46,10 @@ public class PreparationMoneyServiceImpl extends BaseService<PreparationMoneyDto
...
@@ -46,6 +46,10 @@ public class PreparationMoneyServiceImpl extends BaseService<PreparationMoneyDto
qw
.
eq
(
StringUtils
.
isNotEmpty
(
dto
.
getDocumentState
()),
"document_state"
,
dto
.
getDocumentState
());
qw
.
eq
(
StringUtils
.
isNotEmpty
(
dto
.
getDocumentState
()),
"document_state"
,
dto
.
getDocumentState
());
qw
.
eq
(
StringUtils
.
isNotEmpty
(
dto
.
getShipmentStatus
()),
"shipment_status"
,
dto
.
getShipmentStatus
());
qw
.
eq
(
StringUtils
.
isNotEmpty
(
dto
.
getShipmentStatus
()),
"shipment_status"
,
dto
.
getShipmentStatus
());
qw
.
eq
(
StringUtils
.
isNotEmpty
(
dto
.
getReceivingStatus
()),
"receiving_status"
,
dto
.
getReceivingStatus
());
qw
.
eq
(
StringUtils
.
isNotEmpty
(
dto
.
getReceivingStatus
()),
"receiving_status"
,
dto
.
getReceivingStatus
());
if
(
dto
.
getIsdocumentStatezf
()!=
null
&&
dto
.
getIsdocumentStatezf
()){
qw
.
ne
(
"document_state"
,
"已作废"
);
}
if
(
StringUtils
.
isNotEmpty
(
dto
.
getOrderBy
()))
{
if
(
StringUtils
.
isNotEmpty
(
dto
.
getOrderBy
()))
{
qw
.
orderBy
(
Boolean
.
TRUE
,
dto
.
getIsASC
(),
dto
.
getOrderBy
());
qw
.
orderBy
(
Boolean
.
TRUE
,
dto
.
getIsASC
(),
dto
.
getOrderBy
());
}
else
{
}
else
{
...
...
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