ProductServiceInterface.php 17.1 KB
Newer Older
1 2 3 4 5 6 7 8
<?php
/**
 * Created by PhpStorm.
 * User: 王源
 * Date: 2020/1/9
 * Time: 15:07
 */

9
namespace Meibuyu\Rpc\Service\Interfaces\Product;
10 11 12 13 14 15 16 17

interface ProductServiceInterface
{

    /**
     * 获取单个数据
     * @param int $id 产品id
     * @param array $relations 产品的关联关系,支持:["brand","category","ingredient","product_name","status","type","images","price_info","product_children"]
王源's avatar
王源 committed
18
     * @param array $columns 产品表的字段,默认
王源's avatar
王源 committed
19 20
     * ['id', 'sku', 'name', 'en_name', 'brand_id', 'team_id', 'hs_code', 'origin_country_id', 'production_address',
     * 'unit', 'category_id', 'ingredient_id', 'product_name_id', 'type_id', 'status_id', 'style', 'info_completed'
21
     * , 'bar_code', 'bar_code_image', 'creator_id', 'hot']
王源's avatar
王源 committed
22
     * @return array|null
23
     */
王源's avatar
王源 committed
24
    public function get($id, array $relations = [], array $columns = ['*']);
25 26 27

    /**
     * 通过id列表获取产品数组
王源's avatar
王源 committed
28
     * @param array $idList 产品id的列表, 默认去重
29 30 31 32 33
     * @param array $relations 产品的关联关系,支持["brand","category","ingredient","product_name","status","type","images","price_info","product_children"]
     * @param array $columns 产品表的字段,默认['id', 'sku', 'name', 'en_name', 'brand_id'
     * , 'team_id', 'hs_code', 'origin_country_id', 'production_address', 'unit', 'category_id'
     * , 'ingredient_id', 'product_name_id', 'type_id', 'status_id', 'style', 'info_completed'
     * , 'bar_code', 'bar_code_image', 'creator_id', 'hot']
王源's avatar
王源 committed
34
     * @return array 默认keyBy('id')
35
     */
王源's avatar
王源 committed
36
    public function getByIdList(array $idList, array $relations = [], array $columns = ['*']): array;
37

38 39 40
    /**
     * 通过sku列表获取产品列表
     * @param array $skuList 默认去重
王源's avatar
王源 committed
41 42 43
     * @param array $relations 产品的关联关系,可传入['color', 'size','brand', 'category', 'product_name', 'images', 'cost', 'weight']
     * @param array $columns 产品表的字段,默认返回id
     * @return array 默认keyBy('sku')
44 45 46
     */
    public function getListBySkuList(array $skuList, array $relations = [], array $columns = ['id']);

47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
    /**
     * 获取全部品类列表
     * @param bool $asTree 是否作为树返回
     * @param array $columns 默认['id', 'name', 'parent_id']
     * @return array
     */
    public function categories($asTree = false, array $columns = ['id', 'name', 'parent_id']): array;

    /**
     * 获取全部品牌列表
     * @param array $columns 默认['id', 'name']
     * @return array
     */
    public function brands(array $columns = ['id', 'name']): array;

    /**
     * 获取全部报关品名列表
     * @param array $columns 默认['id', 'name','en_name']
     * @return array
     */
    public function productNames(array $columns = ['id', 'name', 'en_name']): array;

    /**
     * 获取全部成分列表
     * @param array $columns 默认['id', 'name']
     * @return array
     */
    public function ingredients(array $columns = ['id', 'name', 'en_name']): array;

    /**
77 78 79 80 81 82 83 84 85 86 87
     * 通过id数组获取品类列表
     * @param array $ids 默认去重
     * @param array $columns
     * @return array 默认keyBY('id')
     */
    public function getCategoriesByIds(array $ids, array $columns = ['id', 'name', 'parent_id']): array;

    /**
     * 通过id数组获取品名列表
     * @param array $ids 默认去重
     * @param array $columns
88
     * @param array $relations ['report_points']
89 90
     * @return array 默认keyBY('id')
     */
王源's avatar
王源 committed
91
    public function getProductNamesByIds(array $ids, array $columns = ['id', 'name', 'en_name'], array $relations = []): array;
92 93 94 95 96 97 98 99 100 101 102 103 104

    /**
     * 通过id获取品类
     * @param int $id
     * @param array $columns
     * @return array|null
     */
    public function getCategoryById(int $id, array $columns = ['id', 'name', 'parent_id']);

    /**
     * 通过id获取品名
     * @param int $id
     * @param array $columns
105
     * @param array $relations ['report_points']
106
     * @return array|null
107
     */
王源's avatar
王源 committed
108
    public function getProductNameById(int $id, array $columns = ['id', 'name', 'en_name'], array $relations = []);
109

王源's avatar
王源 committed
110 111 112 113 114 115 116
    /**
     * 通过id数组获取申报要素列表
     * @param array $ids 默认去重
     * @param array $columns
     * @param array $relations ['product_name', 'ingredient']
     * @return array 默认keyBY('id')
     */
王源's avatar
王源 committed
117
    public function getReportPointsByIds(array $ids, array $relations = [], array $columns = ['id', 'hs_code', 'point']): array;
王源's avatar
王源 committed
118 119 120 121 122 123 124 125

    /**
     * 通过id获取申报要素
     * @param int $id
     * @param array $columns
     * @param array $relations ['product_name', 'ingredient']
     * @return array|null
     */
王源's avatar
王源 committed
126
    public function getReportPointById(int $id, array $relations = [], array $columns = ['id', 'hs_code', 'point']);
王源's avatar
王源 committed
127

128 129 130 131 132 133 134 135
    /**
     * 获取申报要素数据
     * @param array $idList 默认去重
     * @param bool $groupByFlag
     * @return array keyBy('id')
     */
    public function getWithPoint(array $idList, $groupByFlag = false);

136 137 138 139 140 141 142
    /**
     * 获取全部申报要素列表
     * @param array $columns 默认['*']
     * @return array
     */
    public function reportPoints(array $columns = ['*']): array;

143 144 145 146 147 148 149 150
    /**
     * 通过产品id获取维护的所有尺码
     * @param $id
     * @return array
     * @author Zero
     */
    public function getSizesById($id): array;

151 152 153 154 155 156 157
    /**
     * 完成产品审批
     * @param $data
     * @author Zero
     */
    public function downApprove($data);

158 159 160 161 162 163 164
//    /**
//     * 通过id数组获取品牌列表
//     * @param array $ids 默认去重
//     * @param array $columns
//     * @return array 默认keyBY('id')
//     */
//    public function getBrandsByIds(array $ids, array $columns = ['id', 'name']): array;
165

166 167
    /**
     * 样品转换产品
168
     * @param array $params 传入的参数
169 170
     * $params = [
     *     'product' => [ // 产品信息
171
     *         'sku' => 'ABC123', // SKU,必填
172 173 174 175 176 177 178 179 180 181 182 183
     *         'name' => '裙子', // 产品中文名,选填
     *         'en_name' => 'dress', // 产品英文名,选填
     *         'brand_id' => 123, // 品牌id,选填
     *         'team_ids' => [1,2,3], // 团队id数组,选填
     *         'hs_code' => '6109909060', // 海关编号,选填
     *         'origin_country_id' => 123, // 原产国,选填
     *         'production_address' => '苏州', // 境内货源地,选填
     *         'unit' => '件', // 单位,必填
     *         'category_id' => 123, // 品类id,必填
     *         'ingredient_id' => 123, // 成分id,选填
     *         'product_name_id' => 123, // 品名id,必填
     *         'style' => '复古', // 风格/款式,选填
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
     *         'creator_id' => 123, // 创建人id,必填
     *         'images' => [], // 图片地址数组
     *         'cost' => 12,5, // 生产成本
     *         'package_cost' => 12,5, // 包装成本
     *         'customs_unit_price' => 12,5, // 报关单价
     *         'customs_cost' => 12,5, // 报关成本
     *         'product_weight' => 15.2, // 产品重量(g)
     *         'product_length' => 15.2, // 产品长度(cm)
     *         'product_width' => 15.2, // 产品宽度(cm)
     *         'product_height' => 15.2, // 产品高度(cm)
     *         'product_volume' => 15.2, // 产品体积(cm3)
     *         'package_weight' => 15.2, // 包装重量(g)
     *         'package_length' => 15.2, // 包装长度(cm)
     *         'package_width' => 15.2, // 包装宽度(cm)
     *         'package_height' => 15.2, // 包装高度(cm)
     *         'package_volume' => 15.2, // 包装体积(cm3)
200 201 202 203 204 205 206 207 208
     *     ],
     *     'material' => [] // 原料信息,暂无
     * ];
     * @return array
     * @throws \Meibuyu\Rpc\Exceptions\RpcException
     * @author Zero
     */
    public function specimenTransformToProduct(array $params);

209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
    /**
     * 更新样品转换的产品
     * @param string $sku_id 主键
     * @param array $status_id 允许转换的状态
     * @param array $params 传入的参数
     * $params = [
     *     'product' => [ // 产品信息
     *         'sku' => 'ABC123', // SKU,必填
     *         'name' => '裙子', // 产品中文名,选填
     *         'en_name' => 'dress', // 产品英文名,选填
     *         'brand_id' => 123, // 品牌id,选填
     *         'team_ids' => [1,2,3], // 团队id数组,选填
     *         'hs_code' => '6109909060', // 海关编号,选填
     *         'origin_country_id' => 123, // 原产国,选填
     *         'production_address' => '苏州', // 境内货源地,选填
     *         'unit' => '件', // 单位,必填
     *         'category_id' => 123, // 品类id,必填
     *         'ingredient_id' => 123, // 成分id,选填
     *         'product_name_id' => 123, // 品名id,必填
     *         'style' => '复古', // 风格/款式,选填
     *         'creator_id' => 123, // 创建人id,必填
     *         'images' => [], // 图片地址数组
     *         'cost' => 12,5, // 生产成本
     *         'package_cost' => 12,5, // 包装成本
     *         'customs_unit_price' => 12,5, // 报关单价
     *         'customs_cost' => 12,5, // 报关成本
     *         'product_weight' => 15.2, // 产品重量(g)
     *         'product_length' => 15.2, // 产品长度(cm)
     *         'product_width' => 15.2, // 产品宽度(cm)
     *         'product_height' => 15.2, // 产品高度(cm)
     *         'product_volume' => 15.2, // 产品体积(cm3)
     *         'package_weight' => 15.2, // 包装重量(g)
     *         'package_length' => 15.2, // 包装长度(cm)
     *         'package_width' => 15.2, // 包装宽度(cm)
     *         'package_height' => 15.2, // 包装高度(cm)
     *         'package_volume' => 15.2, // 包装体积(cm3)
     *     ],
     *     'material' => [] // 原料信息,暂无
247
     *     'child_sku_data' => [] //必填
248 249 250 251 252 253 254
     * ];
     * @return array
     * @throws \Meibuyu\Rpc\Exceptions\RpcException
     * @author Zero
     */
    public function updateSpecimenTransformToProduct(array $params,$sku_id,$status_id);

255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
    /**
     * 创建样品转换的产品
     * @param string $sku_id 主键
     * @param array $status_id 允许转换的状态
     * @param array $params 传入的参数
     * $params = [
     *     'product' => [ // 产品信息
     *         'sku' => 'ABC123', // SKU,必填
     *         'name' => '裙子', // 产品中文名,选填
     *         'en_name' => 'dress', // 产品英文名,选填
     *         'brand_id' => 123, // 品牌id,选填
     *         'team_ids' => [1,2,3], // 团队id数组,选填
     *         'hs_code' => '6109909060', // 海关编号,选填
     *         'origin_country_id' => 123, // 原产国,选填
     *         'production_address' => '苏州', // 境内货源地,选填
     *         'unit' => '件', // 单位,必填
     *         'category_id' => 123, // 品类id,必填
     *         'ingredient_id' => 123, // 成分id,选填
     *         'product_name_id' => 123, // 品名id,必填
     *         'style' => '复古', // 风格/款式,选填
     *         'creator_id' => 123, // 创建人id,必填
     *         'images' => [], // 图片地址数组
     *         'cost' => 12,5, // 生产成本
     *         'package_cost' => 12,5, // 包装成本
     *         'customs_unit_price' => 12,5, // 报关单价
     *         'customs_cost' => 12,5, // 报关成本
     *         'product_weight' => 15.2, // 产品重量(g)
     *         'product_length' => 15.2, // 产品长度(cm)
     *         'product_width' => 15.2, // 产品宽度(cm)
     *         'product_height' => 15.2, // 产品高度(cm)
     *         'product_volume' => 15.2, // 产品体积(cm3)
     *         'package_weight' => 15.2, // 包装重量(g)
     *         'package_length' => 15.2, // 包装长度(cm)
     *         'package_width' => 15.2, // 包装宽度(cm)
     *         'package_height' => 15.2, // 包装高度(cm)
     *         'package_volume' => 15.2, // 包装体积(cm3)
     *     ],
     *     'material' => [] // 原料信息,暂无
     *     'child_sku_data' => [] //必填
     * ];
     * @return array
     * @throws \Meibuyu\Rpc\Exceptions\RpcException
     * @author Zero
     */
chentianyu's avatar
chentianyu committed
299
    public function createSpecimenTransformToProduct(array $params);
300

301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
    /**
     * 检查产品是否上架
     * @param array $params
     * 参数可以通过id数组或者sku数组查询,二者传一就行,都传仅id生效
     * $params = [
     *     'ids' => [1,2,3], // 产品id数组
     *     'skus' => ['sku1', 'sku2', 'sku3'], // 产品sku数组,全等查询非模糊
     * ];
     * @param array $relations 产品的关联关系,默认空
     * 支持:["brand","category","ingredient","product_name","status","type","images","price_info","product_children"]
     * @param array $columns 产品表的字段,默认全部字段
     * 支持:['id', 'sku', 'name', 'en_name', 'brand_id', 'hs_code', 'origin_country_id', 'production_address',
     * 'unit', 'category_id', 'ingredient_id', 'product_name_id', 'type_id', 'status_id', 'style',
     * 'info_completed',  'creator_id']
     * @return array 返回已上架产品信息
     * @throws \Meibuyu\Rpc\Exceptions\RpcException
     * @author Zero
     */
    public function checkPublished(array $params, array $relations = [], array $columns = ['*']): array;
gongyuanbiao's avatar
gongyuanbiao committed
320 321 322 323 324 325 326 327 328 329 330
	
	
	 /**
     * 检查产品是否同时维护工艺信息核原料信息
     * @param 
	 * 参数可以通过id
     * @return bool 同时维护true,未同时维护false
     * @throws \Meibuyu\Rpc\Exceptions\RpcException
     * @author Zero
     */
	 public function checkMaterialCraftById($id);
gongyuanbiao's avatar
gongyuanbiao committed
331 332
	 
	  /**
gongyuanbiao's avatar
gongyuanbiao committed
333
     * 通过产品id 获取工艺信息
gongyuanbiao's avatar
gongyuanbiao committed
334
     * @param 
gongyuanbiao's avatar
gongyuanbiao committed
335
	 * 参数产品id数组
gongyuanbiao's avatar
gongyuanbiao committed
336
     * @return array
gongyuanbiao's avatar
gongyuanbiao committed
337 338 339
     * @throws \Meibuyu\Rpc\Exceptions\RpcException
     * @author Zero
     */
gongyuanbiao's avatar
s  
gongyuanbiao committed
340
	 public function getCraftByProductIds(array $productIds);
341

chentianyu's avatar
chentianyu committed
342
    /**
chentianyu's avatar
chentianyu committed
343
     * 获取产品数据
chentianyu's avatar
chentianyu committed
344
     * @param array $where
chentianyu's avatar
chentianyu committed
345
     * @param array $whereIn
chentianyu's avatar
chentianyu committed
346 347 348 349 350
     * @param array $select
     * @param array|null $limitIds
     * @return array
     * @author chentianyu
     */
chentianyu's avatar
chentianyu committed
351
    public function getProductsByWhere(array $where, array $whereIn = [], array $select = ['id'], array $limitIds = null): array;
chentianyu's avatar
chentianyu committed
352

chentianyu's avatar
chentianyu committed
353 354 355 356 357 358 359 360 361
    /**
     * 获取报关品名
     * @param array $where
     * @param array $select
     * @param array|null $limitIds
     * @return array
     * @author chentianyu
     */
    public function getProductNamesByWhere(array $where, array $select = ['id'], array $limitIds = null): array;
chentianyu's avatar
chentianyu committed
362

363 364 365 366 367 368 369 370 371
    /**
     * 获取ProductChild产品数组
     * @param array $where
     * @param array $whereIn
     * @param array $columns 子SKU表的字段,默认显示全部
     * @param array $relations 子SKU的关联关系,可传入['brand', 'category', 'product_name', 'images', 'cost', 'weight', 'packs']
     * @return array 默认keyBy('id')
     */
    public function getProductChildByWhere(array $where, array $whereIn = [], array $columns = ['*'], array $relations = []): array;
chentianyu's avatar
chentianyu committed
372

373 374 375 376 377 378 379
    /**
     * 根据主 SKU 获取子 SKU 相关信息
     * @param $filters
     * @param string[] $childProductFields
     * @return array
     */
    public function getChildProductsByProductFilter($filters, $childProductFields = ['*']): array;
carlos's avatar
carlos committed
380 381


382
    public function createDraftProduct(array $params);
carlos's avatar
carlos committed
383

carlos's avatar
carlos committed
384 385 386 387 388 389 390 391 392 393 394 395 396 397
    /**
     * Notes: 通过站点和团队获取仓库主sku列表
     * User: linjixin
     * DateTime: 2022/11/7 11:12
     */
    public function getSkuListByTeamAndSite($params);


    /**
     * Notes: 通过仓库主sku获取子sku属性
     * User: linjixin
     * DateTime: 2022/11/7 11:13
     */
    public function getChildSkuByStoreSku($params);
carlos's avatar
carlos committed
398 399 400 401 402 403
    /**
     * 创建属于草稿状态(不展示出来)的主 SKU
     * @return array
     * @throws \Meibuyu\Rpc\Exceptions\RpcException
     * @author QJK
     */
 林继鑫's avatar
林继鑫 committed
404 405 406 407 408 409 410 411

    /**
     * @param array $skuList
     * @param array $relations
     * @param array|string[] $columns
     * @return array
     */
    public function getProductsBySkuList(array $skuList, array $relations = [], array $columns = ['*']):array;
 林继鑫's avatar
林继鑫 committed
412 413 414 415 416 417 418 419 420


    /**
     * @param array $skuList
     * @param array $relations
     * @param array|string[] $columns
     * @return array
     */
    public function getProductsByChildSkuList(array $skuList, array $relations = [], array $columns = ['*']):array;
 林继鑫's avatar
林继鑫 committed
421 422 423 424 425 426 427 428 429

    /**
     * 通过产品id,获取子sku
     * @param array $productList
     * @param array $relations
     * @param array|string[] $columns
     * @return array
     */
    public function getChildSkuByProductsLst(array $productList, array $relations = [], array $columns = ['*']):array;
430 431 432 433 434 435 436 437 438 439


    /**
     * 查询子产品id 获取子产品信息
     * @param array $productChildList
     * @param array $relations
     * @param array|string[] $columns
     * @return array
     */
    public function getChildSkuByProductChildIds(array $productChildList, array $relations = [], array $columns = ['*']):array;
440 441 442 443 444 445 446 447 448 449

    /**
     * 通过站点和仓库主产品获取平台产品
     * @param $site_id
     * @param $product_id
     * @param array $columns
     * @return array
     * @author chentianyu
     */
    public function getPlatformSkuBySiteProduct($site_id, $product_id, array $columns = ['*']): array;
450 451 452 453 454 455 456 457


    /**
     * 查看是否为组合产品
     * @param array $productLists
     * @return mixed
     */
    public function getProductIsGroup(array $productLists);
458
}