Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYWAP
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Plain Diff
Browse Files
Authored by
hf
9 years ago
Commit
26ea322a13e6e2271188a373b1758586f4d04c51
2 parents
09a7ab46
78c12c3c
Merge remote-tracking branch 'origin/develop'
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
library/Plugin/DataProcess/NewSaleProcess.php
library/Plugin/DataProcess/NewSaleProcess.php
View file @
26ea322
...
...
@@ -83,6 +83,13 @@ class NewSaleProcess
$count
=
count
(
$products
[
'product_list'
]);
$one
=
array
();
foreach
(
$products
[
'product_list'
]
as
$key
=>
$single
)
{
if
(
!
isset
(
$single
[
'goods_list'
]))
{
continue
;
}
// 重置键值
$single
[
'goods_list'
]
=
array_values
(
$single
[
'goods_list'
]);
$one
=
Helpers
::
formatProduct
(
$single
,
true
,
false
,
false
,
75
,
114
);
$one
[
'rank'
]
=
$limit
*
(
$page
-
1
)
+
$key
+
1
;
!
empty
(
$single
[
'sales_phrase'
])
&&
$one
[
'sales_phrase'
]
=
$single
[
'sales_phrase'
];
...
...
Please
register
or
login
to post a comment