OrderCheckUsedProductServiceInterface.php 803 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
<?php

namespace Meibuyu\Rpc\Service\Interfaces\Order;


interface OrderCheckUsedProductServiceInterface
{
    /**
     * 查询采购备货中是否用过仓库子产品
     * @param array $ids 仓库子产品id数组,默认去重
     * @return array 返回用过的id数组
     */
    public function purchaseStockUpUsedProductChildId($ids);

    /**
     * 备货建议中是否用过仓库子产品
     * @param array $ids 仓库子产品id数组,默认去重
     * @return array 返回用过的id数组
     */
    public function stockUpAdviceUsedProductChildId($ids);

    /**
     * 子订单是否用过仓库子产品
     * @param array $ids 仓库子产品id数组,默认去重
     * @return array 返回用过的id数组
     */
    public function subOrderUsedProductChildId($ids);
}