update tmall inventory parse
This commit is contained in:
@@ -0,0 +1,25 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace App\Platform\Tmall\Producer;
|
||||||
|
|
||||||
|
use Hyperf\Amqp\Annotation\Producer;
|
||||||
|
use App\Platform\OrderProducer;
|
||||||
|
|
||||||
|
#[Producer('tmall.exchange', 'inventory.tmall')]
|
||||||
|
class TmallInventoryProducer extends OrderProducer
|
||||||
|
{
|
||||||
|
protected string $exchange = 'tmall.exchange';
|
||||||
|
protected string|array $routingKey = 'inventory.tmall';
|
||||||
|
|
||||||
|
protected function buildMessage(array $data): array
|
||||||
|
{
|
||||||
|
$parent_meta = parent::buildMessage($data);
|
||||||
|
$parent_meta['platform'] = 'tmall';
|
||||||
|
$parent_meta['data_type'] = 'inventory';
|
||||||
|
$parent_meta['meta']['source_system'] = 'tmall_api';
|
||||||
|
|
||||||
|
return $parent_meta;
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user