Commit 35cb64f1 authored by fuyunnan's avatar fuyunnan

Merge branch 'test' into order_rpc

parents 63916049 619a7bc4
......@@ -16,4 +16,24 @@ class MaterialCategory
const LI_BU = 3; // 里布
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