Files
OMS/app/erpapi/lib/ediws/request/reship.php
2025-12-28 23:13:25 +08:00

50 lines
844 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
* Copyright © ShopeX http://www.shopex.cn. All rights reserved.
* See LICENSE file for license details.
*/
/**
* 主库退货单查询
*
* @categoryclassName
* @package
* @version $Id: Z
*/
class erpapi_ediws_request_reship extends erpapi_ediws_request_abstract
{
/**
* 主库退货单查询
* @param $appid
* @param $secret
* @return mixed
*/
public function query($params)
{
$sdf = $this->query_format_params($params);
$title = '主库退货单查询';
$result = $this->call('edi.request.reship.query', $sdf, null, $title, 30, $sdf['original_bn']);
unset($result['response']);
return $result;
}
public function query_format_params($params){
return $params;
}
}