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
dea62669
authored
Nov 02, 2023
by
杨树贤
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
日志结果
parent
c9087824
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
app/Http/Services/SyncSupplierService.php
app/Http/Services/SyncSupplierService.php
View file @
dea62669
...
...
@@ -15,6 +15,7 @@ use App\Model\SupplierSyncModel;
use
App\Model\UserInfoModel
;
use
Illuminate\Support\Arr
;
use
Illuminate\Support\Facades\DB
;
use
Illuminate\Support\Facades\Log
;
use
PhpAmqpLib\Connection\AMQPStreamConnection
;
use
PhpAmqpLib\Message\AMQPMessage
;
...
...
@@ -196,14 +197,14 @@ class SyncSupplierService
}
else
{
$preIsEntity
=
$supplier
[
'is_entity'
];
//判断原来是拉黑状态,才变成审核中,因为有可能不是修改公司类型,只是修改公司性质
if
(
$supplier
[
'status'
]
==
SupplierChannelModel
::
STATUS_BLOCK
)
{
if
(
$supplier
[
'status'
]
==
SupplierChannelModel
::
STATUS_BLOCK
)
{
$data
[
'status'
]
=
SupplierChannelModel
::
STATUS_IN_REVIEW
;
}
//如果之前是禁用,并且是实体名单,那么就要恢复之前的状态
if
(
$supplier
[
'status'
]
===
SupplierChannelModel
::
STATUS_DISABLE
&&
$preIsEntity
==
SupplierChannelModel
::
IS_ENTITY_TRUE
)
{
$cacheStatus
=
$redis
->
hget
(
'supplier_status_before_disable'
,
$supplierId
);
$data
[
'status'
]
=
$cacheStatus
?:
SupplierChannelModel
::
STATUS_IN_REVIEW
;
$data
[
'status'
]
=
$cacheStatus
?:
SupplierChannelModel
::
STATUS_IN_REVIEW
;
}
}
}
...
...
@@ -231,9 +232,10 @@ class SyncSupplierService
//加入实体名单后,要做很多事情,比如禁用供应商,也要禁用供应商账号等等,还要记录禁用之前的状态,等到移除实体名单以后,要恢复之前的状态
public
function
receiveEntityResult
(
$supplierName
,
$result
)
{
Log
::
warning
(
'一体化拉黑结果 : '
.
(
$supplierName
.
'---'
.
$result
));
//先找到对应的供应商(草稿的跳过),如果没有那跳过
$supplier
=
SupplierChannelModel
::
where
(
'supplier_name'
,
$supplierName
)
->
where
(
'status'
,
'!='
,
SupplierChannelModel
::
STATUS_PENDING
)
->
first
();
->
where
(
'status'
,
'!='
,
SupplierChannelModel
::
STATUS_PENDING
)
->
first
();
if
(
empty
(
$supplier
))
{
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