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
2c3b9d00
authored
Jun 24, 2024
by
杨树贤
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
修复接收字段不完整问题
parent
32910072
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
6 deletions
app/Http/Controllers/Sync/SupplierSyncController.php
app/Http/Services/SupplierAddressService.php
app/Http/Controllers/Sync/SupplierSyncController.php
View file @
2c3b9d00
...
...
@@ -53,12 +53,7 @@ class SupplierSyncController extends BaseSyncController
public
function
receiveEntityResult
(
Request
$request
)
{
$resultData
=
$request
->
only
([
'company_name'
,
'result'
,
'result_map'
,
'tag_list'
]);
$resultData
=
$request
->
all
();
Log
::
error
(
json_encode
(
$resultData
));
...
...
app/Http/Services/SupplierAddressService.php
View file @
2c3b9d00
...
...
@@ -137,6 +137,7 @@ class SupplierAddressService
];
$url
=
config
(
'website.UnitedDataDomain'
)
.
'/sync/Address/updateAddress'
;
//dd(json_encode($params));
$result
=
curl
(
$url
,
$params
);
$result
=
json_decode
(
$result
,
true
);
\Log
::
error
(
$result
);
...
...
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