mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-24 03:15:32 +08:00
21 lines
532 B
PHP
21 lines
532 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class console_event_trigger_supplier {
|
||
|
||
|
||
|
||
/**
|
||
* 供应商同步
|
||
*/
|
||
public function create($wms_id, &$data, $sync = false){
|
||
|
||
// $result = kernel::single('middleware_wms_request', $wms_id)->supplier_create($data, $sync);
|
||
$result = kernel::single('erpapi_router_request')->set('wms',$wms_id)->supplier_create($data);
|
||
|
||
return $result;
|
||
}
|
||
} |