Commit da221f4a authored by chentianyu's avatar chentianyu

添加订单中心的备货建议,采购备货是否使用某产品的检查接口

parent ae677154
<?php
declare(strict_types=1);
namespace Meibuyu\Rpc\Service\Interfaces\Order;
/**
* @author chentianyu
*/
interface StockUpOrderInterface
{
/**
* 查询采购备货中是否用过仓库子产品
* @param array $ids 仓库子产品id数组,默认去重
* @return array 返回用过的id数组
*/
public function searchPurchaseStockUpUsedProductChildId($ids);
}
\ No newline at end of file
<?php
declare(strict_types=1);
namespace Meibuyu\Rpc\Service\Interfaces\Order;
/**
* @author chentianyu
*/
interface StockUpProductInterface
{
/**
* 备货建议中是否用过仓库子产品
* @param array $ids 仓库子产品id数组,默认去重
* @return array 返回用过的id数组
*/
public function searchStockUpAdviceUsedProductChildId($ids);
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment