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
ba86838f
Commit
ba86838f
authored
Aug 02, 2018
by
neo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[bugfix] customer service impl query can not view
parent
75bbf736
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
CustomerServiceImpl.java
...va/pwc/taxtech/atms/service/impl/CustomerServiceImpl.java
+1
-1
vat-preview-customInvoice-sheet.ctrl.js
...stomInvoice-sheet/vat-preview-customInvoice-sheet.ctrl.js
+2
-2
vat.js
atms-web/src/main/webapp/bundles/vat.js
+2
-2
No files found.
atms-api/src/main/java/pwc/taxtech/atms/service/impl/CustomerServiceImpl.java
View file @
ba86838f
...
...
@@ -48,7 +48,6 @@ import pwc.taxtech.atms.vat.entity.CustomsInvoice;
import
pwc.taxtech.atms.vat.entity.CustomsInvoiceExample
;
/**
* @see PwC.Tax.Tech.Atms.Admin.Application.Services.Impl.CustomerService.cs
*/
@Service
public
class
CustomerServiceImpl
implements
CustomerService
{
...
...
@@ -270,6 +269,7 @@ public class CustomerServiceImpl implements CustomerService {
for
(
CustomsInvoice
r
:
reuslt
)
{
CustomsInvoiceDto
dto
=
new
CustomsInvoiceDto
();
dto
.
setSeqNo
(
seqNo
++);
dto
.
setAuditResult
(
r
.
getAuditResult
());
if
(
r
.
getInvoiceAmount
()
!=
null
)
{
r
.
setInvoiceAmount
(
r
.
getInvoiceAmount
().
setScale
(
2
));
}
...
...
atms-web/src/main/webapp/app/vat/preview/vat-preview-customInvoice-sheet/vat-preview-customInvoice-sheet.ctrl.js
View file @
ba86838f
...
...
@@ -102,7 +102,7 @@
// always Jsonized the pagination:
if
(
paginationInformation
!==
null
&&
paginationInformation
!==
""
)
{
var
pagination
=
JSON
.
stringify
(
paginationInformation
);
if
(
browserService
.
isIE
()
||
browserService
.
isEdge
())
//
if (browserService.isIE() || browserService.isEdge())
pagination
=
encodeURIComponent
(
pagination
);
}
else
...
...
@@ -112,7 +112,7 @@
if
(
criteria
!==
null
&&
criteria
!==
""
)
{
criteria
=
JSON
.
stringify
(
$scope
.
filterData
);
if
(
browserService
.
isIE
()
||
browserService
.
isEdge
())
//
if (browserService.isIE() || browserService.isEdge())
criteria
=
encodeURIComponent
(
criteria
);
}
else
...
...
atms-web/src/main/webapp/bundles/vat.js
View file @
ba86838f
...
...
@@ -31203,7 +31203,7 @@ vatModule.controller('vatPreviewCustomInvoiceSheetController', ['$scope', '$log'
// always Jsonized the pagination:
if
(
paginationInformation
!==
null
&&
paginationInformation
!==
""
)
{
var
pagination
=
JSON
.
stringify
(
paginationInformation
);
if
(
browserService
.
isIE
()
||
browserService
.
isEdge
())
//
if (browserService.isIE() || browserService.isEdge())
pagination
=
encodeURIComponent
(
pagination
);
}
else
...
...
@@ -31213,7 +31213,7 @@ vatModule.controller('vatPreviewCustomInvoiceSheetController', ['$scope', '$log'
if
(
criteria
!==
null
&&
criteria
!==
""
)
{
criteria
=
JSON
.
stringify
(
$scope
.
filterData
);
if
(
browserService
.
isIE
()
||
browserService
.
isEdge
())
//
if (browserService.isIE() || browserService.isEdge())
criteria
=
encodeURIComponent
(
criteria
);
}
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