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
In README.md is a typo.
Correct version:
from ifirma.invoice import (Invoice, Customer, InvoicePosition, INVOICE_TYPE) from ifirma.request import send_invoice invoice = Invoice( invoice_type=INVOICE_TYPE.NON_VAT_PAYER, issue_date=datetime(...) ).with_issuer( 'Imię Nazwisko' ).with_payed( float(price) ).with_comments( f"Nr zamówienia: {numer}" ).with_position( InvoicePosition(product_name, float(price)) ).with_new_customer( Customer(full_name, email, zip, city, street1, street2) )
You can also mention that after invoice creation, user should send it
create_invoice_response = send_invoice(invoice)
The text was updated successfully, but these errors were encountered:
Thank you! Updated.
Sorry, something went wrong.
No branches or pull requests
In README.md is a typo.
Correct version:
You can also mention that after invoice creation, user should send it
The text was updated successfully, but these errors were encountered: