获取工单信息

This commit is contained in:
hongwenwu 2023-09-11 13:53:27 +08:00
parent 8e972bb2dd
commit e20f6b950e
1 changed files with 3 additions and 3 deletions

View File

@ -138,12 +138,12 @@ class Order
* @return mixed|string * @return mixed|string
* @throws GuzzleException * @throws GuzzleException
*/ */
public function getProductOrder($order_sn) public function getProductOrder($orderId)
{ {
$data = [ $data = [
'order_sn' => $order_sn 'id' => $orderId
]; ];
return $this->sendRequest('production.status', $data); return $this->sendRequest('production.info', $data);
} }
/** /**