Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
joshine
Overview
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
joshine
Commits
c61b0821
Commit
c61b0821
authored
Mar 17, 2023
by
wd
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
小数位数运算修复
parent
4782b896
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
+1
-1
app/code/Joshine/Sales/view/adminhtml/templates/order/totals.phtml
+1
-1
No files found.
app/code/Joshine/Sales/view/adminhtml/templates/order/totals.phtml
View file @
c61b0821
...
...
@@ -62,7 +62,7 @@
<?php
$totalsArr
=
array_column
(
$totalsArr
,
null
,
'code'
);
?>
<tr
class=
"col-
<?php
echo
count
(
$totalsArr
);
?>
"
>
<td
class=
"label"
>
Row Tatol
</td>
<td><span><span
class=
"price"
>
$
<?php
if
(
isset
(
$totalsArr
[
'discount'
])){
echo
sprintf
(
"%01.
3f"
,
round
(
intval
(
$totalsArr
[
'subtotal'
][
'value'
])
+
intval
(
$totalsArr
[
'discount'
][
'value'
]),
2
));}
else
{
echo
intval
(
$totalsArr
[
'subtotal'
][
'value'
]
);}
?>
</span></span>
</td>
<td><span><span
class=
"price"
>
$
<?php
if
(
isset
(
$totalsArr
[
'discount'
])){
echo
sprintf
(
"%01.
2f"
,
round
(
floatval
(
$totalsArr
[
'subtotal'
][
'value'
])
+
floatval
(
$totalsArr
[
'discount'
][
'value'
]),
2
));}
else
{
echo
sprintf
(
"%01.2f"
,
intval
(
$totalsArr
[
'subtotal'
][
'value'
])
);}
?>
</span></span>
</td>
</tr>
</tbody>
<?php
endif
;
?>
...
...
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