Commit 2a4a3bce authored by 秦俊坤's avatar 秦俊坤

生产和采购新增获取对应的成本单价的方法

parent 832535c6
...@@ -12,4 +12,11 @@ interface ProductionOrderServiceInterface ...@@ -12,4 +12,11 @@ interface ProductionOrderServiceInterface
*/ */
public function getProductionOrderByFilter(array $filters, $columns = ['*'], $with = []); public function getProductionOrderByFilter(array $filters, $columns = ['*'], $with = []);
/**
* 根据生产单号获取对应的成本单价
* @param string $productionNo
* @return mixed
*/
public function getUnitCostPriceByProductNo(string $productionNo);
} }
...@@ -72,7 +72,12 @@ interface PurchaseInfoServiceInterface ...@@ -72,7 +72,12 @@ interface PurchaseInfoServiceInterface
public function getPurchaseTimeArrBySku(array $skuArr) :array; public function getPurchaseTimeArrBySku(array $skuArr) :array;
/**
* 根据对应的批次号和产品 ID 获取对应的采购陈本单价
* @param $batchNo
* @param $productId
* @return mixed
*/
public function getProductUnitPriceByBatchNo($batchNo, $productId);
} }
\ 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