Commit 7851252a authored by gongyuanbiao's avatar gongyuanbiao

Merge branch 'develop' of http://git.huaperfect.com/without_auth/meibuyu-rpc into develop

parents 10d396f1 3127da0c
<?php
namespace Meibuyu\Rpc\Service\Interfaces\Order;
interface StockUpOrderServiceInterface
{
/**
* 查询采购备货中是否用过仓库子产品
* @param array $ids 仓库子产品id数组,默认去重
* @return array 返回用过的id数组
*/
public function searchPurchaseStockUpUsedProductChildId($ids);
}
\ No newline at end of file
<?php
namespace Meibuyu\Rpc\Service\Interfaces\Order;
interface StockUpProductServiceInterface
{
/**
* 备货建议中是否用过仓库子产品
* @param array $ids 仓库子产品id数组,默认去重
* @return array 返回用过的id数组
*/
public function searchStockUpAdviceUsedProductChildId($ids);
}
\ No newline at end of file
...@@ -87,14 +87,20 @@ interface ProductionServiceInterface ...@@ -87,14 +87,20 @@ interface ProductionServiceInterface
*/ */
public function toMessage($params); public function toMessage($params);
/**
* 获取生产单列表是否有未读消息
* @param $productionNoArr
* @param string $source
*/
public function getListMessageReadStatus($productionNoArr,$source='factory');
/** /**
* 获取生产单工艺单信息 * 更新备货计划产品工艺单维护信息
* @param $productionOrderId * @param $productId 产品id
* @param array $columns * @param $status 工艺维护状态 0未维护,1已维护,2部分维护
* @return mixed * @return mixed
*/ */
public function craftDetail($productionOrderId,$columns = ['*']); public function productCraftMaintain($productId,$status);
/** /**
* 获取生产单信息 * 获取生产单信息
......
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