Metadata-Version: 2.1
Name: artd-order
Version: 0.0.43
Summary: ArtD Order.
Home-page: https://www.artd.com.co/
Author: Jonathan Urzola
Author-email: jonathan@artd.com.co
License: BSD-3-Clause
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Django (>=4.2.10)
Requires-Dist: artd-customer (==0.0.25)
Requires-Dist: artd-location (==0.0.22)
Requires-Dist: artd-partner (==0.0.26)
Requires-Dist: artd-price-list (==0.0.38)
Requires-Dist: artd-product (==0.0.54)
Requires-Dist: artd-promotion (==0.0.11)
Requires-Dist: artd-stock (==0.0.16)
Requires-Dist: django-admin (==2.0.2)
Requires-Dist: django-json-widget (==1.1.1)

ArtD Order
==========
Art Order is a package that makes it possible to manage orders.
---------------------------------------------------------------
1. Add to your INSTALLED_APPS setting like this:

.. code-block:: python

    INSTALLED_APPS = [
        'django_json_widget',
        'artd_location',
        'artd_partner',
        'artd_customer',
        'artd_product',
        'artd_price_list',
        'artd_stock',
        'artd_order',
    ]

2. Run the migration commands:
   
.. code-block::
    
        python manage.py makemigrations
        python manage.py migrate

3. Run the seeder data:

.. code-block::

    python manage.py create_countries
    python manage.py create_colombian_regions
    python manage.py create_colombian_cities
    python manage.py create_taxes
    python manage.py create_order_statuses
    python manage.py create_base_customer_groups

