Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
E
erp-service
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
ximai
erp-service
Commits
d6d7e4de
Commit
d6d7e4de
authored
Jun 29, 2025
by
李驰骋
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
录入到货单界面添加采购发票字段录入
到货标签打印加入打印字段增加
parent
56f096f4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
StockArrivalParams.java
...om/topsunit/scanservice/ximai/dto/StockArrivalParams.java
+3
-0
PurccService.java
.../com/topsunit/scanservice/ximai/service/PurccService.java
+2
-1
No files found.
src/main/java/com/topsunit/scanservice/ximai/dto/StockArrivalParams.java
View file @
d6d7e4de
...
...
@@ -15,6 +15,9 @@ public class StockArrivalParams {
@ApiModelProperty
(
"到货仓"
)
String
warehouse
;
@ApiModelProperty
(
"发票号"
)
String
invoiceNo
;
@ApiModelProperty
(
"确认明细"
)
List
<
StockArrivalParams
.
StockArrivalDetail
>
details
;
@Data
...
...
src/main/java/com/topsunit/scanservice/ximai/service/PurccService.java
View file @
d6d7e4de
...
...
@@ -188,7 +188,7 @@ public class PurccService {
.
map
(
DateUtil:
:
stringToLocalDate
)
.
map
(
DateUtil:
:
localDateToStandardString
)
.
orElse
(
""
)));
objectMap
.
add
(
PrintField
.
of
(
"CC006"
,
optionalPurcc
.
map
(
Purcc:
:
getCc006
).
orElse
(
""
)));
codeList
.
add
(
objectMap
);
// 打印数量
...
...
@@ -241,6 +241,7 @@ public class PurccService {
purcc
.
setCc010
(
currStr
);
purcc
.
setCc004
(
purtc
.
getTc010
());
purcc
.
setCc005
(
purtc
.
getTc004
());
purcc
.
setCc006
(
stockArrivalParams
.
getInvoiceNo
());
if
(
purmaOp
.
isPresent
()){
purcc
.
setCc012
(
purmaOp
.
get
().
getMa003
());
}
...
...
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