Commit 519f6828 authored by  林继鑫's avatar 林继鑫

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

parents 05cdd6c7 29be1241
...@@ -121,4 +121,13 @@ interface MaterialServiceInterface ...@@ -121,4 +121,13 @@ interface MaterialServiceInterface
public function getProductStuffInfo($params); public function getProductStuffInfo($params);
/**
* 查询某一主产品指定子产品绑定的包装原料信息
* @param $productChildIds
* @author Liu lu
* date 2023-08-28
*/
public function getProductPackageMaterialInfo($productChildIds);
} }
...@@ -140,6 +140,16 @@ interface ProductServiceInterface ...@@ -140,6 +140,16 @@ interface ProductServiceInterface
*/ */
public function reportPoints(array $columns = ['*']): array; public function reportPoints(array $columns = ['*']): array;
/**
* 根据海关编码获取申报要素列表
*
* @param array $hsCodes 海关编码数组
* @param array $columns 列名
* @param array $relations 关联:['product_name', 'ingredient']
* @return array
*/
public function getReportPointsByHsCodes(array $hsCodes, array $columns = ['id', 'product_name_id', 'ingredient_id', 'hs_code', 'point', 'created_at'], array $relations = []): array;
/** /**
* 通过产品id获取维护的所有尺码 * 通过产品id获取维护的所有尺码
* @param $id * @param $id
......
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