Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tl_estate
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
hujun
tl_estate
Commits
54000a47
Commit
54000a47
authored
Mar 18, 2019
by
agping
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
1ddea0e1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
getCollection.js
public/resource/js/getCollection.js
+1
-1
financial_manager_daily_list_template_tpl.html
...e/template/financial_manager_daily_list_template_tpl.html
+1
-1
No files found.
public/resource/js/getCollection.js
View file @
54000a47
...
...
@@ -1382,7 +1382,7 @@ define(['doT', 'text!temp/receivables_template_tpl.html', 'css!style/home.css',
doc
.
find
(
"#realPrice"
).
val
(
data
.
real_money
);
//保留两位小数
doc
.
find
(
"#getPrice"
).
text
((
Math
.
floor
(((
data
.
price
-
0
)
*
persent
)
*
100
)
/
100
).
toFixed
(
2
)
+
"元"
);
doc
.
find
(
"#morePrice"
).
text
((
Math
.
floor
((
data
.
money
-
((
data
.
price
-
0
)
*
persent
))
*
100
)
/
100
).
toFixed
(
2
)
+
"元"
);
doc
.
find
(
"#morePrice"
).
text
((
Math
.
floor
((
data
.
money
-
((
data
.
price
-
0
)
*
persent
)
+
data
.
received_money
*
1
)
*
100
)
/
100
).
toFixed
(
2
)
+
"元"
);
$
(
"#person"
).
text
(
data
.
current_agent_name
);
$
(
"#belongT"
).
text
(
data
.
store_name
);
doc
.
find
(
"#payType"
).
val
(
data
.
pay_type
);
...
...
public/resource/template/financial_manager_daily_list_template_tpl.html
View file @
54000a47
...
...
@@ -19,7 +19,7 @@
<
td
>
[
%=
it
[
item
][
'transaction_fee'
]
%
]
<
/td
>
<
td
>
[
%=
it
[
item
][
'received_money'
]
%
]
<
/td
>
<
td
>
[
%
if
(
it
[
item
][
"type_ext"
]
==
0
)
{
%
]
[
%=
(
it
[
item
][
'money'
]
*
1
-
(
it
[
item
][
'price'
]
*
0.7
)).
toFixed
(
2
)
%
]
[
%=
(
it
[
item
][
'money'
]
*
1
+
it
[
item
][
'received_money'
]
*
1
-
(
it
[
item
][
'price'
]
*
0.7
)).
toFixed
(
2
)
%
]
[
%
}
else
{
%
]
[
%=
(
it
[
item
][
'money'
]
*
1
-
0
).
toFixed
(
2
)
%
]
[
%
}
%
]
...
...
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