Metadata-Version: 1.1
Name: django-oscar-invoices
Version: 0.1
Summary: Invoices generation for Django Oscar
Home-page: https://github.com/oscaro/django-oscar-invoices
Author: Metaclass Team
Author-email: sasha@metaclass.co
License: BSD
Description: # django-oscar-invoices
        
        How invoices are generated?
        ---------------------------
        
        In order to generate invoice it's required to create two model records:
        
        * Merchant account, :class:`~oscar_invoices.abstract_models.AbstractLegalEntity`.
          In contains shop name, seller's business name, website, email, VAT number etc.
        
        * Merchant address, :class:`~oscar_invoices.abstract_models.AbstractLegalEntityAddress`. It's
          quite similar to the order shipping or billing address.
        
        By default, we generate only HTML invoice document and allow user to decide how to
        generate PDF documents. You can integrate `python-pdfkit`_, `WeasyPrint`_, `xhtml2pdf`_,
        `reportlab`_ or another library of your choice.
        
        .. _`python-pdfkit`: https://github.com/JazzCore/python-pdfkit
        .. _`WeasyPrint`: https://github.com/Kozea/WeasyPrint
        .. _`xhtml2pdf`: https://github.com/xhtml2pdf/xhtml2pdf
        .. _`reportlab`: https://www.reportlab.com/
        
        Since documents contains sensitive data, we store them out of the media folder and
        do not provide public access via URL. For this purpose, we use custom storage class
        :class:`oscar_invoices.storages.DocumentsStorage`, invoice documents placed into the
        nested folder ``settings.OSCAR_INVOICES_UPLOAD_FOLDER`` and available for the admin users via
        dashboard order list.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
