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
ac5713a1
authored
Jul 06, 2022
by
杨树贤
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
修改同步方式
parent
2c581ba3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
2 deletions
app/Http/Services/DataService.php
app/Http/Services/DataService.php
View file @
ac5713a1
...
@@ -666,9 +666,8 @@ class DataService
...
@@ -666,9 +666,8 @@ class DataService
{
{
ini_set
(
'memory_limit'
,
-
1
);
ini_set
(
'memory_limit'
,
-
1
);
$suppliers
=
SupplierChannelModel
::
select
([
'supplier_id'
,
'supplier_name'
])
->
where
(
'is_type'
,
0
)
$suppliers
=
SupplierChannelModel
::
select
([
'supplier_id'
,
'supplier_name'
])
->
where
(
'is_type'
,
0
)
->
where
(
'status'
,
2
)
->
get
()
->
toArray
();
->
where
(
'status'
,
2
)
->
offset
(
200
)
->
limit
(
200
)
->
get
()
->
toArray
();
foreach
(
$suppliers
as
$supplier
)
{
foreach
(
$suppliers
as
$supplier
)
{
usleep
(
100000
);
if
(
!
empty
(
$supplier
[
'supplier_name'
]))
{
if
(
!
empty
(
$supplier
[
'supplier_name'
]))
{
echo
"同步供应商到金蝶 : "
.
$supplier
[
'supplier_name'
]
.
PHP_EOL
;
echo
"同步供应商到金蝶 : "
.
$supplier
[
'supplier_name'
]
.
PHP_EOL
;
(
new
SyncSupplierService
())
->
syncSupplierToErp
(
$supplier
[
'supplier_id'
]);
(
new
SyncSupplierService
())
->
syncSupplierToErp
(
$supplier
[
'supplier_id'
]);
...
...
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