Commit 619a7bc4 authored by 王源's avatar 王源 🎧

添加通过原料类型获取对应仓库id方法

parent 715b605f
...@@ -16,4 +16,24 @@ class MaterialCategory ...@@ -16,4 +16,24 @@ class MaterialCategory
const LI_BU = 3; // 里布 const LI_BU = 3; // 里布
const HAO_CAI = 4; // 耗材 const HAO_CAI = 4; // 耗材
/**
* 通过原料类型获取对应仓库id
* @param $categoryId
* @return int
* @throws \Exception
*/
public function getWarehouseId($categoryId)
{
switch ($categoryId) {
case self::FU_LIAO:
case self::HAO_CAI:
return 33;
case self::MIAN_LIAO:
case self::LI_BU:
return 36;
default:
throw new \Exception("原料类型不存在");
}
}
} }
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