Skip to content

Commit

Permalink
通过订单No获取发票分配情况
Browse files Browse the repository at this point in the history
  • Loading branch information
MarioZhao committed Apr 25, 2019
1 parent 1178c9b commit db032c0
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/Modules/SettlementSdk.php
Expand Up @@ -1161,5 +1161,16 @@ public function deleteInvoiceDistribution($body)
{
return $this->restful("POST", "/invoice/deleteDistribution", $body);
}

/**
* 通过订单No获取发票分配情况
* @link https://uniondrug.coding.net/p/module.settlement/git/blob/development/docs/api/InvoiceController/getDistributionDetailByOrderNoAction.md
* @param array $body 入参类型
* @return ResponseInterface
*/
public function getInvoiceDistributionDetailByOrderNo($body)
{
return $this->restful("POST", "/invoice/getDistributionDetailByOrderNo", $body);
}
}

0 comments on commit db032c0

Please sign in to comment.