mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-05 22:55:32 +08:00
61 lines
1.5 KiB
PHP
61 lines
1.5 KiB
PHP
<?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);
|
||
}
|
||
|
||
}
|