Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
my-yaf-project
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
chenchuanwen
my-yaf-project
Commits
509bd5b5
Commit
509bd5b5
authored
Dec 10, 2018
by
liuyuzhen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
推荐店铺排序问题
parent
747a218b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
StoreService.php
application/models/Business/Store/StoreService.php
+12
-0
No files found.
application/models/Business/Store/StoreService.php
View file @
509bd5b5
...
...
@@ -866,11 +866,23 @@ class StoreServiceModel extends \Business\AbstractModel{
$returnStores
[
'stores'
][]
=
$purchasedStore
;
}
}
if
(
$returnStores
[
'stores'
]){
foreach
(
$returnStores
[
'stores'
]
as
$key
=>
$tempStore
){
$tempDistance
[
$key
]
=
$tempStore
[
'storeDistance'
];
}
array_multisort
(
$tempDistance
,
SORT_ASC
,
$returnStores
[
'stores'
]);
$return
[]
=
$returnStores
;
}
}
if
(
$return
){
$tempReturn
=
array
();
foreach
(
$return
as
$tempVal
){
$distance
=
min
(
array_column
(
$tempVal
[
'stores'
],
'storeDistance'
));
$tempReturn
[
$distance
]
=
$tempVal
;
}
ksort
(
$tempReturn
);
$return
=
array_values
(
$tempReturn
);
return
$return
;
}
}
...
...
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