├── .gitignore ├── README.md ├── django_pos ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── invoice ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── templates │ ├── base.html │ ├── customer_invoice.html │ ├── customer_invoice_detail.html │ └── invoice_dashboard.html ├── tests.py ├── urls.py └── views.py ├── manage.py ├── pos ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20180811_1337.py │ ├── 0003_customer_photo.py │ └── __init__.py ├── models.py ├── static │ ├── css │ │ └── styles.css │ ├── img │ │ └── profile_placeholder_large.png │ └── js │ │ └── script.js ├── templates │ ├── base.html │ ├── billing.html │ ├── billing_details.html │ ├── dashboard.html │ └── order.html ├── tests.py ├── urls.py └── views.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthsharma2/django-pos/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthsharma2/django-pos/HEAD/README.md -------------------------------------------------------------------------------- /django_pos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_pos/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthsharma2/django-pos/HEAD/django_pos/settings.py -------------------------------------------------------------------------------- /django_pos/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthsharma2/django-pos/HEAD/django_pos/urls.py -------------------------------------------------------------------------------- /django_pos/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthsharma2/django-pos/HEAD/django_pos/wsgi.py -------------------------------------------------------------------------------- /invoice/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /invoice/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthsharma2/django-pos/HEAD/invoice/admin.py -------------------------------------------------------------------------------- /invoice/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthsharma2/django-pos/HEAD/invoice/apps.py -------------------------------------------------------------------------------- /invoice/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /invoice/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthsharma2/django-pos/HEAD/invoice/models.py -------------------------------------------------------------------------------- /invoice/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthsharma2/django-pos/HEAD/invoice/templates/base.html -------------------------------------------------------------------------------- /invoice/templates/customer_invoice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthsharma2/django-pos/HEAD/invoice/templates/customer_invoice.html -------------------------------------------------------------------------------- /invoice/templates/customer_invoice_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthsharma2/django-pos/HEAD/invoice/templates/customer_invoice_detail.html -------------------------------------------------------------------------------- /invoice/templates/invoice_dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthsharma2/django-pos/HEAD/invoice/templates/invoice_dashboard.html -------------------------------------------------------------------------------- /invoice/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthsharma2/django-pos/HEAD/invoice/tests.py -------------------------------------------------------------------------------- /invoice/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthsharma2/django-pos/HEAD/invoice/urls.py -------------------------------------------------------------------------------- /invoice/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthsharma2/django-pos/HEAD/invoice/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthsharma2/django-pos/HEAD/manage.py -------------------------------------------------------------------------------- /pos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pos/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthsharma2/django-pos/HEAD/pos/admin.py -------------------------------------------------------------------------------- /pos/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthsharma2/django-pos/HEAD/pos/apps.py -------------------------------------------------------------------------------- /pos/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthsharma2/django-pos/HEAD/pos/migrations/0001_initial.py -------------------------------------------------------------------------------- /pos/migrations/0002_auto_20180811_1337.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthsharma2/django-pos/HEAD/pos/migrations/0002_auto_20180811_1337.py -------------------------------------------------------------------------------- /pos/migrations/0003_customer_photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthsharma2/django-pos/HEAD/pos/migrations/0003_customer_photo.py -------------------------------------------------------------------------------- /pos/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pos/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthsharma2/django-pos/HEAD/pos/models.py -------------------------------------------------------------------------------- /pos/static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthsharma2/django-pos/HEAD/pos/static/css/styles.css -------------------------------------------------------------------------------- /pos/static/img/profile_placeholder_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthsharma2/django-pos/HEAD/pos/static/img/profile_placeholder_large.png -------------------------------------------------------------------------------- /pos/static/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthsharma2/django-pos/HEAD/pos/static/js/script.js -------------------------------------------------------------------------------- /pos/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthsharma2/django-pos/HEAD/pos/templates/base.html -------------------------------------------------------------------------------- /pos/templates/billing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthsharma2/django-pos/HEAD/pos/templates/billing.html -------------------------------------------------------------------------------- /pos/templates/billing_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthsharma2/django-pos/HEAD/pos/templates/billing_details.html -------------------------------------------------------------------------------- /pos/templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthsharma2/django-pos/HEAD/pos/templates/dashboard.html -------------------------------------------------------------------------------- /pos/templates/order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthsharma2/django-pos/HEAD/pos/templates/order.html -------------------------------------------------------------------------------- /pos/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthsharma2/django-pos/HEAD/pos/tests.py -------------------------------------------------------------------------------- /pos/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthsharma2/django-pos/HEAD/pos/urls.py -------------------------------------------------------------------------------- /pos/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthsharma2/django-pos/HEAD/pos/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Django~=2.1.0 2 | Pillow==5.2.0 3 | pytz==2018.5 4 | --------------------------------------------------------------------------------