增加加工工单创建接口

This commit is contained in:
ykxiao
2023-09-07 15:30:08 +08:00
parent 21e28aee92
commit 27bafb5d6d
3 changed files with 25 additions and 1 deletions

View File

@ -114,4 +114,16 @@ class Order
];
return $this->baseFun($data, 'production.status');
}
/**
* 加工工单创建
* @return mixed|string
* @throws GuzzleException
* @throws HttpException
* @throws InvalidArgumentException
*/
public function createProductOrder($data)
{
return $this->baseFun($data, 'production.create');
}
}