Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
T
traffic-front
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wangxiaoming
traffic-front
Commits
95b91dbd
Commit
95b91dbd
authored
Jun 23, 2018
by
eddie.woo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
merge dev_ken
parent
999e0118
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
249 additions
and
7 deletions
+249
-7
InvoiceManageController.java
...axtech/atms/controller/input/InvoiceManageController.java
+11
-4
InputInvoiceQueryDto.java
...java/pwc/taxtech/atms/dto/input/InputInvoiceQueryDto.java
+165
-0
InvoiceManageService.java
...n/java/pwc/taxtech/atms/service/InvoiceManageService.java
+2
-1
InvoiceManageServiceImpl.java
...c/taxtech/atms/service/impl/InvoiceManageServiceImpl.java
+71
-2
No files found.
atms-api/src/main/java/pwc/taxtech/atms/controller/input/InvoiceManageController.java
View file @
95b91dbd
...
...
@@ -6,12 +6,18 @@ import org.springframework.web.bind.annotation.RequestBody;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RequestMethod
;
import
org.springframework.web.bind.annotation.ResponseBody
;
import
com.github.pagehelper.PageHelper
;
import
pwc.taxtech.atms.controller.BaseController
;
import
pwc.taxtech.atms.dto.OperationResultDto
;
import
pwc.taxtech.atms.dto.input.CamelPagingDto
;
import
pwc.taxtech.atms.dto.input.CamelPagingResultDto
;
import
pwc.taxtech.atms.dto.input.InputInvoiceQueryDto
;
import
pwc.taxtech.atms.entitiy.InputInvoice
;
import
pwc.taxtech.atms.service.InvoiceManageService
;
import
java.math.BigDecimal
;
import
java.util.List
;
@Controller
...
...
@@ -24,15 +30,16 @@ public class InvoiceManageController extends BaseController {
@ResponseBody
@RequestMapping
(
value
=
"getInputInvoiceList"
,
method
=
RequestMethod
.
POST
)
public
CamelPagingResultDto
<
InputInvoice
>
getInputInvoiceList
(
@RequestBody
InputInvoiceQueryDto
inputInvoiceQueryDto
)
{
//todo 参数校验
CamelPagingResultDto
resultDto
=
new
CamelPagingResultDto
();
CamelPagingResultDto
<
InputInvoice
>
resultDto
=
new
CamelPagingResultDto
<
InputInvoice
>
();
try
{
List
<
InputInvoice
>
list
=
invoiceManageService
.
getInputInvoiceList
(
inputInvoiceQueryDto
);
resultDto
.
setList
(
list
);
CamelPagingDto
camelPagingDto
=
inputInvoiceQueryDto
.
getPagingDto
()==
null
?
new
CamelPagingDto
():
inputInvoiceQueryDto
.
getPagingDto
(
);
resultDto
=
invoiceManageService
.
getInputInvoiceList
(
inputInvoiceQueryDto
);
//todo 业务代码
}
catch
(
Exception
e
)
{
logger
.
error
(
"getInputInvoiceList error."
,
e
);
}
return
resultDto
;
}
}
atms-api/src/main/java/pwc/taxtech/atms/dto/input/InputInvoiceQueryDto.java
View file @
95b91dbd
package
pwc
.
taxtech
.
atms
.
dto
.
input
;
import
java.math.BigDecimal
;
import
java.util.Date
;
public
class
InputInvoiceQueryDto
{
//todo 添加其他参数
//购方企业名称
private
String
buyerBankName
;
//销方名称
private
String
sellerName
;
//发票号码
private
String
invoiceNumber
;
//发票状态
private
Integer
status
;
//上传方式
private
Integer
uploadType
;
//发票类型
private
Integer
invoiceType
;
//开票日期范围
private
Date
invoiceDate
;
//上传日期范围
private
Date
uploadDate
;
//票面金额范围
private
BigDecimal
amount
;
//发票实体
private
Integer
invoiceEntityType
;
//发票来源
private
Integer
invoiceSourceType
;
//验真分类
//创建者
private
String
staffId
;
//序列号
private
String
serialNo
;
// private String buyerAddress;
//
// private String buyerBankAccountNumber;
//
// private String buyerName;
//
// private String buyerPhone;
//
// private String buyerTaxNumber;
//
// private String checkCode;
//
// private String createBy;
//
// private Date createTime;
@Override
public
String
toString
()
{
return
"InputInvoiceQueryDto [buyerBankName="
+
buyerBankName
+
", sellerName="
+
sellerName
+
", invoiceNumber="
+
invoiceNumber
+
", status="
+
status
+
", uploadType="
+
uploadType
+
", invoiceType="
+
invoiceType
+
", invoiceDate="
+
invoiceDate
+
", uploadDate="
+
uploadDate
+
", amount="
+
amount
+
", invoiceEntityType="
+
invoiceEntityType
+
", invoiceSourceType="
+
invoiceSourceType
+
", staffId="
+
staffId
+
", serialNo="
+
serialNo
+
", pagingDto="
+
pagingDto
+
"]"
;
}
private
CamelPagingDto
pagingDto
;
public
CamelPagingDto
getPagingDto
()
{
...
...
@@ -11,4 +71,109 @@ public class InputInvoiceQueryDto {
public
void
setPagingDto
(
CamelPagingDto
pagingDto
)
{
this
.
pagingDto
=
pagingDto
;
}
public
String
getBuyerBankName
()
{
return
buyerBankName
;
}
public
void
setBuyerBankName
(
String
buyerBankName
)
{
this
.
buyerBankName
=
buyerBankName
;
}
public
String
getSellerName
()
{
return
sellerName
;
}
public
void
setSellerName
(
String
sellerName
)
{
this
.
sellerName
=
sellerName
;
}
public
String
getInvoiceNumber
()
{
return
invoiceNumber
;
}
public
void
setInvoiceNumber
(
String
invoiceNumber
)
{
this
.
invoiceNumber
=
invoiceNumber
;
}
public
Integer
getStatus
()
{
return
status
;
}
public
void
setStatus
(
Integer
status
)
{
this
.
status
=
status
;
}
public
Integer
getUploadType
()
{
return
uploadType
;
}
public
void
setUploadType
(
Integer
uploadType
)
{
this
.
uploadType
=
uploadType
;
}
public
Integer
getInvoiceType
()
{
return
invoiceType
;
}
public
void
setInvoiceType
(
Integer
invoiceType
)
{
this
.
invoiceType
=
invoiceType
;
}
public
Date
getInvoiceDate
()
{
return
invoiceDate
;
}
public
void
setInvoiceDate
(
Date
invoiceDate
)
{
this
.
invoiceDate
=
invoiceDate
;
}
public
Date
getUploadDate
()
{
return
uploadDate
;
}
public
void
setUploadDate
(
Date
uploadDate
)
{
this
.
uploadDate
=
uploadDate
;
}
public
BigDecimal
getAmount
()
{
return
amount
;
}
public
void
setAmount
(
BigDecimal
amount
)
{
this
.
amount
=
amount
;
}
public
Integer
getInvoiceEntityType
()
{
return
invoiceEntityType
;
}
public
void
setInvoiceEntityType
(
Integer
invoiceEntityType
)
{
this
.
invoiceEntityType
=
invoiceEntityType
;
}
public
Integer
getInvoiceSourceType
()
{
return
invoiceSourceType
;
}
public
void
setInvoiceSourceType
(
Integer
invoiceSourceType
)
{
this
.
invoiceSourceType
=
invoiceSourceType
;
}
public
String
getStaffId
()
{
return
staffId
;
}
public
void
setStaffId
(
String
staffId
)
{
this
.
staffId
=
staffId
;
}
public
String
getSerialNo
()
{
return
serialNo
;
}
public
void
setSerialNo
(
String
serialNo
)
{
this
.
serialNo
=
serialNo
;
}
}
atms-api/src/main/java/pwc/taxtech/atms/service/InvoiceManageService.java
View file @
95b91dbd
package
pwc
.
taxtech
.
atms
.
service
;
import
pwc.taxtech.atms.dto.input.CamelPagingResultDto
;
import
pwc.taxtech.atms.dto.input.InputInvoiceQueryDto
;
import
pwc.taxtech.atms.entitiy.InputInvoice
;
...
...
@@ -11,5 +12,5 @@ public interface InvoiceManageService {
* @param inputInvoiceQueryDto param
* @return list
*/
List
<
InputInvoice
>
getInputInvoiceList
(
InputInvoiceQueryDto
inputInvoiceQueryDto
);
CamelPagingResultDto
<
InputInvoice
>
getInputInvoiceList
(
InputInvoiceQueryDto
inputInvoiceQueryDto
);
}
atms-api/src/main/java/pwc/taxtech/atms/service/impl/InvoiceManageServiceImpl.java
View file @
95b91dbd
package
pwc
.
taxtech
.
atms
.
service
.
impl
;
import
com.github.pagehelper.PageHelper
;
import
com.github.pagehelper.PageInfo
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Service
;
import
pwc.taxtech.atms.common.CommonUtils
;
import
pwc.taxtech.atms.dao.InputInvoiceMapper
;
import
pwc.taxtech.atms.dto.input.CamelPagingResultDto
;
import
pwc.taxtech.atms.dto.input.InputInvoiceQueryDto
;
import
pwc.taxtech.atms.entitiy.InputInvoice
;
import
pwc.taxtech.atms.entitiy.InputInvoiceExample
;
import
pwc.taxtech.atms.service.InvoiceManageService
;
import
java.util.List
;
@Service
public
class
InvoiceManageServiceImpl
extends
BaseService
implements
InvoiceManageService
{
@Autowired
private
InputInvoiceMapper
inputInvoiceMapper
;
@Override
public
List
<
InputInvoice
>
getInputInvoiceList
(
InputInvoiceQueryDto
inputInvoiceQueryDto
)
{
return
null
;
public
CamelPagingResultDto
<
InputInvoice
>
getInputInvoiceList
(
InputInvoiceQueryDto
inputInvoiceQueryDto
)
{
InputInvoiceExample
example
=
new
InputInvoiceExample
();
InputInvoiceExample
.
Criteria
criteria
=
example
.
createCriteria
();
if
(
inputInvoiceQueryDto
.
getAmount
()!=
null
)
{
criteria
.
andAmountEqualTo
(
inputInvoiceQueryDto
.
getAmount
());
}
if
(
inputInvoiceQueryDto
.
getBuyerBankName
()!=
null
)
{
criteria
.
andBuyerBankNameEqualTo
(
inputInvoiceQueryDto
.
getBuyerBankName
());
}
if
(
inputInvoiceQueryDto
.
getInvoiceDate
()!=
null
)
{
criteria
.
andInvoiceDateEqualTo
(
inputInvoiceQueryDto
.
getInvoiceDate
());
}
if
(
inputInvoiceQueryDto
.
getInvoiceEntityType
()!=
null
)
{
criteria
.
andInvoiceEntityTypeEqualTo
(
inputInvoiceQueryDto
.
getInvoiceEntityType
());
}
if
(
inputInvoiceQueryDto
.
getInvoiceNumber
()!=
null
)
{
criteria
.
andInvoiceNameEqualTo
(
inputInvoiceQueryDto
.
getInvoiceNumber
());
}
if
(
inputInvoiceQueryDto
.
getInvoiceSourceType
()!=
null
)
{
criteria
.
andInvoiceSourceTypeEqualTo
(
inputInvoiceQueryDto
.
getInvoiceSourceType
());
}
if
(
inputInvoiceQueryDto
.
getInvoiceType
()!=
null
)
{
criteria
.
andInvoiceTypeEqualTo
(
inputInvoiceQueryDto
.
getInvoiceType
());
}
if
(
inputInvoiceQueryDto
.
getSellerName
()!=
null
)
{
criteria
.
andSellerNameEqualTo
(
inputInvoiceQueryDto
.
getSellerName
());
}
if
(
inputInvoiceQueryDto
.
getSerialNo
()!=
null
)
{
criteria
.
andSerialNoEqualTo
(
inputInvoiceQueryDto
.
getSerialNo
());
}
if
(
inputInvoiceQueryDto
.
getStaffId
()!=
null
)
{
criteria
.
andStaffIdEqualTo
(
inputInvoiceQueryDto
.
getStaffId
());
}
if
(
inputInvoiceQueryDto
.
getStatus
()!=
null
)
{
criteria
.
andStatusEqualTo
(
inputInvoiceQueryDto
.
getStatus
());
}
if
(
inputInvoiceQueryDto
.
getUploadDate
()!=
null
)
{
criteria
.
andUploadDateEqualTo
(
inputInvoiceQueryDto
.
getUploadDate
());
}
if
(
inputInvoiceQueryDto
.
getUploadType
()!=
null
)
{
criteria
.
andUploadTypeEqualTo
(
inputInvoiceQueryDto
.
getUploadType
());
}
Integer
pageIndex
=
inputInvoiceQueryDto
.
getPagingDto
().
getPageIndex
()!=
null
?
inputInvoiceQueryDto
.
getPagingDto
().
getPageIndex
():
1
;
Integer
pageSize
=
inputInvoiceQueryDto
.
getPagingDto
().
getPageSize
()!=
null
?
inputInvoiceQueryDto
.
getPagingDto
().
getPageSize
():
10
;
PageHelper
.
startPage
(
pageIndex
,
pageSize
);
List
<
InputInvoice
>
lists
=
inputInvoiceMapper
.
selectByExample
(
example
);
PageInfo
pageInfo
=
new
PageInfo
<
InputInvoice
>(
lists
);
CamelPagingResultDto
<
InputInvoice
>
camelPagingResultDto
=
new
CamelPagingResultDto
<
InputInvoice
>();
camelPagingResultDto
.
setList
(
pageInfo
.
getList
());
inputInvoiceQueryDto
.
getPagingDto
().
setTotalCount
((
int
)
pageInfo
.
getTotal
());
InputInvoice
inputInvoice
=
new
InputInvoice
();
CommonUtils
.
copyProperties
(
inputInvoiceQueryDto
,
inputInvoice
);
camelPagingResultDto
.
setPageInfo
(
inputInvoiceQueryDto
.
getPagingDto
());
camelPagingResultDto
.
setCalculateData
(
inputInvoice
);
return
camelPagingResultDto
;
}
}
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