Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
杨树贤
/
liexin_supplier
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
db1f2e73
authored
Jan 03, 2026
by
杨树贤
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
fix
parent
3be90c83
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletions
app/Http/Controllers/Api/SupplierStatisticsApiController.php
app/Http/Services/DataService.php
app/Http/Controllers/Api/SupplierStatisticsApiController.php
View file @
db1f2e73
...
...
@@ -20,6 +20,7 @@ class SupplierStatisticsApiController extends Controller
public
function
GetSupplierStatistics
(
$request
)
{
$this
->
response
(
0
,
'ok'
,
[]);
ini_set
(
'memory_limit'
,
-
1
);
$service
=
new
SupplierStatisticsService
();
$statistics
=
$service
->
getSupplierListStatistics
();
...
...
app/Http/Services/DataService.php
View file @
db1f2e73
...
...
@@ -1089,7 +1089,7 @@ class DataService
//3.2 数据跟单员的联系人信息:初始化为【线上采购员】维护的联系人信息
//如果数据跟单员已经存在在供应商的采购员里,也需要把他对应的联系人初始化成线上采购员对应的联系人信息
foreach
(
$dataFollowersCodeIds
as
$followerCodeId
)
{
$onlinePurchaserContact
=
SupplierContactModel
::
where
(
'can_check_uids'
,
$onlinePurchaserCodeId
)
->
first
();
$onlinePurchaserContact
=
SupplierContactModel
::
where
(
'can_check_uids'
,
$onlinePurchaserCodeId
)
->
where
(
'supplier_id'
,
$supplierId
)
->
first
();
if
(
!
empty
(
$onlinePurchaserContact
))
{
$onlinePurchaserContact
=
$onlinePurchaserContact
->
toArray
();
}
...
...
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