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
ca6e0446
Commit
ca6e0446
authored
Nov 01, 2018
by
sherlock
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug:app-overview:listView\cardView
parent
93edd535
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
16 deletions
+15
-16
vat-preview-input-invoice.ctrl.js
...t-preview-input-invoice/vat-preview-input-invoice.ctrl.js
+7
-8
vat-preview-input-invoice.html
.../vat-preview-input-invoice/vat-preview-input-invoice.html
+1
-1
vat-preview-output-invoice.ctrl.js
...preview-output-invoice/vat-preview-output-invoice.ctrl.js
+6
-6
vat-preview-output-invoice.html
...at-preview-output-invoice/vat-preview-output-invoice.html
+1
-1
No files found.
atms-web/src/main/webapp/app/vat/preview/vat-preview-input-invoice/vat-preview-input-invoice.ctrl.js
View file @
ca6e0446
...
...
@@ -104,7 +104,7 @@
v
.
taxAmount
=
PWC
.
round
(
v
.
taxAmount
,
2
);
});
$scope
.
gridOptions
.
data
=
data
.
list
;
$scope
.
queryIncomeInvoiceItemResult
.
pageInfo
=
data
.
pageInfo
;
$scope
.
queryIncomeInvoiceItemResult
.
pageInfo
=
data
;
computeIncomeInvoiceItemPage
();
}
});
...
...
@@ -118,14 +118,14 @@
//计算页数,创建分页栏
var
computeIncomeInvoiceItemPage
=
function
()
{
if
(
$scope
.
queryIncomeInvoiceItemResult
.
pageInfo
&&
$scope
.
queryIncomeInvoiceItemResult
.
pageInfo
.
total
Count
>
0
)
{
if
(
$scope
.
queryIncomeInvoiceItemResult
.
pageInfo
&&
$scope
.
queryIncomeInvoiceItemResult
.
pageInfo
.
total
>
0
)
{
var
totalPage
=
parseInt
(
$scope
.
queryIncomeInvoiceItemResult
.
pageInfo
.
total
Count
/
$scope
.
queryIncomeInvoiceItemResult
.
pageInfo
.
pageSize
);
var
totalPage
=
parseInt
(
$scope
.
queryIncomeInvoiceItemResult
.
pageInfo
.
total
/
$scope
.
queryIncomeInvoiceItemResult
.
pageInfo
.
pageSize
);
totalPage
=
$scope
.
queryIncomeInvoiceItemResult
.
pageInfo
.
totalCount
%
$scope
.
queryIncomeInvoiceItemResult
.
pageInfo
.
pageSize
==
0
?
totalPage
:
totalPage
+
1
;
//计算本页记录数
if
(
$scope
.
queryIncomeInvoiceItemResult
.
pageInfo
.
page
Index
===
totalPage
)
{
$scope
.
curPageItemCount
=
$scope
.
queryIncomeInvoiceItemResult
.
pageInfo
.
total
Count
%
$scope
.
queryIncomeInvoiceItemResult
.
pageInfo
.
pageSize
;
if
(
$scope
.
queryIncomeInvoiceItemResult
.
pageInfo
.
page
Num
===
totalPage
)
{
$scope
.
curPageItemCount
=
$scope
.
queryIncomeInvoiceItemResult
.
pageInfo
.
total
%
$scope
.
queryIncomeInvoiceItemResult
.
pageInfo
.
pageSize
;
}
else
{
$scope
.
curPageItemCount
=
$scope
.
queryIncomeInvoiceItemResult
.
pageInfo
.
pageSize
;
...
...
@@ -144,6 +144,8 @@
$
(
'#totalInvoicePage'
).
css
(
'display'
,
'inline-block'
);
}
else
{
//如果查询结果为0,则直接设置本页记录数为0
$scope
.
curPageItemCount
=
0
;
var
createPage
=
$
(
"#totalInvoicePage"
).
createPage
({
pageCount
:
0
,
current
:
$scope
.
curIncomeInvoiceItemPage
,
...
...
@@ -153,9 +155,6 @@
}
});
//如果查询结果为0,则直接设置本页记录数为0
$scope
.
curPageItemCount
=
0
;
$
(
'#totalInvoicePage'
).
css
(
'display'
,
'inline-block'
);
}
};
...
...
atms-web/src/main/webapp/app/vat/preview/vat-preview-input-invoice/vat-preview-input-invoice.html
View file @
ca6e0446
...
...
@@ -38,7 +38,7 @@
<div
class=
"watermark"
ng-show=
"!gridOptions.data.length"
><span
translate=
"NoDataAvailable"
></span></div>
</div>
<div
class=
"pagination-container"
>
<span>
本页{{curPageItemCount}}条记录,共{{queryIncomeInvoiceItemResult.pageInfo.total
Count
}}条记录
</span>
<span>
本页{{curPageItemCount}}条记录,共{{queryIncomeInvoiceItemResult.pageInfo.total}}条记录
</span>
<div
id=
"totalInvoicePage"
class=
"common-pagination"
style=
"display:none;"
>
</div>
</div>
...
...
atms-web/src/main/webapp/app/vat/preview/vat-preview-output-invoice/vat-preview-output-invoice.ctrl.js
View file @
ca6e0446
...
...
@@ -88,7 +88,7 @@
v
.
taxAmount
=
PWC
.
round
(
v
.
taxAmount
,
2
);
});
$scope
.
gridOptions
.
data
=
data
.
list
;
$scope
.
queryOutputInvoiceResult
.
pageInfo
=
data
.
pageInfo
;
$scope
.
queryOutputInvoiceResult
.
pageInfo
=
data
;
computeOutputInvoiceItemPage
();
}
}).
error
(
function
()
{
...
...
@@ -104,13 +104,13 @@
//计算页数,创建分页栏
var
computeOutputInvoiceItemPage
=
function
()
{
if
(
$scope
.
queryOutputInvoiceResult
.
pageInfo
&&
$scope
.
queryOutputInvoiceResult
.
pageInfo
.
total
Count
>
0
)
{
if
(
$scope
.
queryOutputInvoiceResult
.
pageInfo
&&
$scope
.
queryOutputInvoiceResult
.
pageInfo
.
total
>
0
)
{
var
totalPage
=
parseInt
(
$scope
.
queryOutputInvoiceResult
.
pageInfo
.
total
Count
/
$scope
.
queryOutputInvoiceResult
.
pageInfo
.
pageSize
);
totalPage
=
$scope
.
queryOutputInvoiceResult
.
pageInfo
.
total
Count
%
$scope
.
queryOutputInvoiceResult
.
pageInfo
.
pageSize
==
0
?
totalPage
:
totalPage
+
1
;
var
totalPage
=
parseInt
(
$scope
.
queryOutputInvoiceResult
.
pageInfo
.
total
/
$scope
.
queryOutputInvoiceResult
.
pageInfo
.
pageSize
);
totalPage
=
$scope
.
queryOutputInvoiceResult
.
pageInfo
.
total
%
$scope
.
queryOutputInvoiceResult
.
pageInfo
.
pageSize
==
0
?
totalPage
:
totalPage
+
1
;
if
(
$scope
.
queryOutputInvoiceResult
.
pageInfo
.
page
Index
===
totalPage
)
{
$scope
.
curPageItemCount
=
$scope
.
queryOutputInvoiceResult
.
pageInfo
.
total
Count
%
$scope
.
queryOutputInvoiceResult
.
pageInfo
.
pageSize
;
if
(
$scope
.
queryOutputInvoiceResult
.
pageInfo
.
page
Num
===
totalPage
)
{
$scope
.
curPageItemCount
=
$scope
.
queryOutputInvoiceResult
.
pageInfo
.
total
%
$scope
.
queryOutputInvoiceResult
.
pageInfo
.
pageSize
;
}
else
{
$scope
.
curPageItemCount
=
$scope
.
queryOutputInvoiceResult
.
pageInfo
.
pageSize
;
...
...
atms-web/src/main/webapp/app/vat/preview/vat-preview-output-invoice/vat-preview-output-invoice.html
View file @
ca6e0446
...
...
@@ -39,7 +39,7 @@
<div
class=
"watermark"
ng-show=
"!gridOptions.data.length"
><span
translate=
"NoDataAvailable"
></span></div>
</div>
<div
class=
"pagination-container"
>
<span
>
本页{{curPageItemCount}}条记录,共{{queryOutputInvoiceResult.pageInfo.total
Count
}}条记录
</span>
<span
>
本页{{curPageItemCount}}条记录,共{{queryOutputInvoiceResult.pageInfo.total}}条记录
</span>
<div
id=
"totalInvoicePage"
class=
"common-pagination"
style=
"display:none;"
>
</div>
</div>
...
...
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