Files
OMS/app/inventorydepth/lib/service/shop/items.php
2025-12-28 23:13:25 +08:00

61 lines
1.5 KiB
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.
*/
/**
* 店铺ITEM,RPC调用类
*
* @author chenping<chenping@shopex.cn>
*/
class inventorydepth_service_shop_items {
public function __construct($app)
{
$this->app = $app;
}
/**
* 实时下载店铺商品
*
* @param Array $filter 搜索条件
* @param String $shop_id 店铺ID
* @param Int $offset 页码
* @param Int $limit 每页条数
* @return Array
*/
public function items_all_get($filter,$shop_id,&$errormsg,$offset=0,$limit=100){
return kernel::single('inventorydepth_rpc_request_shop_items')->items_all_get($filter,$shop_id,$offset,$limit);
}
/**
* 根据IID实时下载店铺商品
*
* @param Array $iids 商品ID(不要超过限度20个)
* @param String $shop_id 店铺ID
* @param Int $offset 页码
* @param Int $limit 每页条数
* @return Array
**/
public function items_list_get($iids,$shop_id,&$errormsg)
{
return kernel::single('inventorydepth_rpc_request_shop_items')->items_list_get($iids,$shop_id);
}
/**
* 获取单个商品明细
*
* @param Int $iid商品ID
* @param String $shop_id 店铺ID
* @return void
* @author
**/
public function item_get($iid,$shop_id,&$errormsg)
{
return kernel::single('inventorydepth_rpc_request_shop_items')->item_get($iid,$shop_id);
}
}