Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation
This project
Loading...
Sign in
platform
/
finance_serv
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 2072b68d
authored
Aug 06, 2018
by
王军业
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
[删除开票信息接口]
1 parent
3eb78e4c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
34 deletions
code/finance_serv/src/main/java/com/vion/financial/service/imp/ReturnInfoServiceImpl.java
code/finance_serv/src/main/java/com/vion/financial/vo/ReturnInfoVo.java
code/finance_serv/src/main/java/com/vion/financial/service/imp/ReturnInfoServiceImpl.java
View file @
2072b68
...
...
@@ -107,10 +107,10 @@ public class ReturnInfoServiceImpl implements ReturnInfoService {
try
{
logger
.
info
(
"==============删除回款信息==================="
);
if
(!
contractServiceImpl
.
isDelete
(
s
))
{
List
<
ReturnInfo
>
list
=
paymentAgreeVo
.
getReback_unids
();
for
(
ReturnInfo
returnInfo
:
list
)
{
returnInfo
.
setContract_unid
(
s
);
returnInfoMapper
.
deleteReturnInfo
(
returnInfo
.
getReback_unid
()
);
List
<
Integer
>
list
=
paymentAgreeVo
.
getReback_unids
();
for
(
int
n
:
list
)
{
//
returnInfo.setContract_unid(s);
returnInfoMapper
.
deleteReturnInfo
(
n
);
}
return
SuccessCode
;
}
else
{
...
...
code/finance_serv/src/main/java/com/vion/financial/vo/ReturnInfoVo.java
View file @
2072b68
package
com
.
vion
.
financial
.
vo
;
import
java.util.List
;
import
com.fasterxml.jackson.annotation.JsonInclude
;
import
com.fasterxml.jackson.annotation.JsonInclude.Include
;
import
com.vion.financial.entity.ReturnInfo
;
@JsonInclude
(
value
=
Include
.
NON_NULL
)
public
class
ReturnInfoVo
{
List
<
ReturnInfo
>
list_reback_data
;
List
<
ReturnInfo
>
reback_unids
;
public
List
<
ReturnInfo
>
getList_reback_data
()
{
return
list_reback_data
;
}
public
void
setList_reback_data
(
List
<
ReturnInfo
>
list_reback_data
)
{
this
.
list_reback_data
=
list_reback_data
;
}
public
List
<
ReturnInfo
>
getReback_unids
()
{
return
reback_unids
;
}
public
void
setReback_unids
(
List
<
ReturnInfo
>
reback_unids
)
{
this
.
reback_unids
=
reback_unids
;
}
}
package
com
.
vion
.
financial
.
vo
;
import
java.util.List
;
import
com.fasterxml.jackson.annotation.JsonInclude
;
import
com.fasterxml.jackson.annotation.JsonInclude.Include
;
import
com.vion.financial.entity.ReturnInfo
;
@JsonInclude
(
value
=
Include
.
NON_NULL
)
public
class
ReturnInfoVo
{
List
<
ReturnInfo
>
list_reback_data
;
List
<
Integer
>
reback_unids
;
public
List
<
ReturnInfo
>
getList_reback_data
()
{
return
list_reback_data
;
}
public
void
setList_reback_data
(
List
<
ReturnInfo
>
list_reback_data
)
{
this
.
list_reback_data
=
list_reback_data
;
}
public
List
<
Integer
>
getReback_unids
()
{
return
reback_unids
;
}
public
void
setReback_unids
(
List
<
Integer
>
reback_unids
)
{
this
.
reback_unids
=
reback_unids
;
}
}
Write
Preview
Markdown
is supported
Attach a file
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 post a comment