Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
JSH ERP
Commits
4a6a32db
Commit
4a6a32db
authored
Jan 02, 2023
by
季圣华
Browse files
给单据详情接口增加时间的判断
parent
234f58bf
Changes
2
Hide whitespace changes
Inline
Side-by-side
jshERP-boot/src/main/java/com/jsh/erp/service/accountHead/AccountHeadService.java
View file @
4a6a32db
...
...
@@ -395,7 +395,9 @@ public class AccountHeadService {
if
(
ah
.
getTotalPrice
()
!=
null
)
{
ah
.
setTotalPrice
(
ah
.
getTotalPrice
().
abs
());
}
ah
.
setBillTimeStr
(
getCenternTime
(
ah
.
getBillTime
()));
if
(
ah
.
getBillTime
()
!=
null
)
{
ah
.
setBillTimeStr
(
getCenternTime
(
ah
.
getBillTime
()));
}
resList
.
add
(
ah
);
}
}
...
...
jshERP-boot/src/main/java/com/jsh/erp/service/depotHead/DepotHeadService.java
View file @
4a6a32db
...
...
@@ -811,7 +811,9 @@ public class DepotHeadService {
if
(
StringUtil
.
isNotEmpty
(
dh
.
getSalesMan
()))
{
dh
.
setSalesManStr
(
personService
.
getPersonByMapAndIds
(
personMap
,
dh
.
getSalesMan
()));
}
dh
.
setOperTimeStr
(
getCenternTime
(
dh
.
getOperTime
()));
if
(
dh
.
getOperTime
()
!=
null
)
{
dh
.
setOperTimeStr
(
getCenternTime
(
dh
.
getOperTime
()));
}
//商品信息简述
if
(
materialsListMap
!=
null
)
{
dh
.
setMaterialsList
(
materialsListMap
.
get
(
dh
.
getId
()));
...
...
Write
Preview
Supports
Markdown
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