We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, you can only create an invoice for the entire purchase order.
There are business cases for which a partial invoice is necessary.
interface InvoiceGeneratorInterface { public function generateForOrder(OrderInterface $order, \DateTimeInterface $date): InvoiceInterface; /** * @param array $orderItemData [['orderItem' => $orderItem1, 'quantity' => 1],['orderItem' => $orderItem2, 'quantity' => 1]] * @param int $shippingAmount Shipping amount for this invoivce * @param \DateTimeInterface $date * @return InvoiceInterface */ public function generateForOrderItems(array $orderItemData, int $shippingAmount, \DateTimeInterface $date): InvoiceInterface; }
The text was updated successfully, but these errors were encountered:
It also may be dependant on multiple partial payment #142
Sorry, something went wrong.
No branches or pull requests
Currently, you can only create an invoice for the entire purchase order.
There are business cases for which a partial invoice is necessary.
The text was updated successfully, but these errors were encountered: