Commit 36755387 authored by  林继鑫's avatar 林继鑫

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

parents 7ad28582 c44315ab
...@@ -81,4 +81,12 @@ interface FlowServiceInterface ...@@ -81,4 +81,12 @@ interface FlowServiceInterface
* @param $params * @param $params
*/ */
public function getApprovalCenterList($params); public function getApprovalCenterList($params);
/**
* Notes: 获取单条审批数据
* User: carlos
* DateTime: 2023/5/30 14:17
* @param $approvalCode
*/
public function getApproval($approvalCode);
} }
\ No newline at end of file
...@@ -303,4 +303,21 @@ interface FactoryServiceInterface ...@@ -303,4 +303,21 @@ interface FactoryServiceInterface
* @param $params * @param $params
*/ */
public function unlockStockCount($params); public function unlockStockCount($params);
/**
* Notes: 更新清点数量
* User: carlos
* DateTime: 2023/6/12 14:42
* @param $params
* @return mixed
*/
public function updateCheckDeliveryCount($params);
/**
* Notes: 异常销毁工厂更新
* User: carlos
* DateTime: 2023/6/15 10:02
* @param $params
*/
public function updateExceptionDestroy($params);
} }
\ No newline at end of file
...@@ -38,6 +38,14 @@ interface ProductChildServiceInterface ...@@ -38,6 +38,14 @@ interface ProductChildServiceInterface
*/ */
public function getListBySkuList(array $skuList, array $columns = ['id'], array $relations = []); public function getListBySkuList(array $skuList, array $columns = ['id'], array $relations = []);
/**
* 根据SKU 获取对应的子 SKU 相关信息
* @param $filters
* @param string[] $childSkuFields
* @return array
*/
public function getChildProductsBySkuFilter($filters, array $childSkuFields = ['*']): array;
/** /**
* 获取全部尺码列表 * 获取全部尺码列表
* @param array $columns 默认['id', 'name'] * @param array $columns 默认['id', 'name']
......
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