├── .gitignore ├── LICENSE ├── README.md ├── SalesManagementSystem ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── core ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── helpers.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_invoice_total_alter_product_product_image.py │ └── __init__.py ├── models.py ├── templates │ └── core │ │ ├── additemstoinvoice.html │ │ ├── base.html │ │ ├── createinvoice.html │ │ ├── createproduct.html │ │ ├── invoice_confirm_delete.html │ │ ├── invoice_print.html │ │ ├── invoicedetails.html │ │ ├── product_confirm_delete.html │ │ ├── products.html │ │ ├── productslist.html │ │ ├── sales.html │ │ └── updateproduct.html ├── tests.py ├── urls.py └── views.py ├── dummyUsers.txt ├── jstools ├── .gitignore ├── package-lock.json ├── package.json ├── postcss.config.js └── tailwind.config.js ├── manage.py ├── media ├── default.png ├── default_product.png ├── previewpages │ ├── UpdateProfile.png │ ├── additemstoinvoice.png │ ├── addproduct.png │ ├── createinvoice1.png │ ├── dashboard(admin).png │ ├── dashboard(staff).png │ ├── invoicedeletion.png │ ├── invoicedetails.png │ ├── invoiceprint.png │ ├── login.png │ ├── productdeletion.png │ ├── productlist.png │ ├── products.png │ ├── registerstaff.png │ ├── sales(staff).png │ └── sales.png ├── products_pics │ ├── 1fxwraregister-book-500x500.webp │ ├── 3t3b9dPoster-Colours.webp │ ├── 88hs70Punching-machines.png │ ├── Adhesive-Tape-002.webp │ ├── Casio-FX-991ES-PLUS-Calculator-1.webp │ ├── Diaries.jpg │ ├── File-and-folder-accessories.jpg │ ├── Highlighters.jpg │ ├── Writing-pen.jpg │ ├── colorful_paperclips.webp │ ├── h95vvtTapes---scissors.jpg │ ├── kvxm5kA4-size-and-photocopier-paper.jpg │ └── t89fesPresentation-supplies.jpg ├── profile_pics │ └── profile-pic3_nzKxtsc.png └── sms.png ├── requirements.txt ├── sms.json ├── static └── css │ ├── style.css │ ├── style.min.css │ └── tailwind.css └── users ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations ├── 0001_initial.py ├── 0002_alter_profile_image.py └── __init__.py ├── models.py ├── signals.py ├── templates └── users │ ├── dashboard.html │ ├── login.html │ ├── register.html │ └── update_profile.html ├── tests.py └── views.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/README.md -------------------------------------------------------------------------------- /SalesManagementSystem/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SalesManagementSystem/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/SalesManagementSystem/asgi.py -------------------------------------------------------------------------------- /SalesManagementSystem/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/SalesManagementSystem/settings.py -------------------------------------------------------------------------------- /SalesManagementSystem/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/SalesManagementSystem/urls.py -------------------------------------------------------------------------------- /SalesManagementSystem/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/SalesManagementSystem/wsgi.py -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/core/admin.py -------------------------------------------------------------------------------- /core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/core/apps.py -------------------------------------------------------------------------------- /core/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/core/forms.py -------------------------------------------------------------------------------- /core/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/core/helpers.py -------------------------------------------------------------------------------- /core/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/core/migrations/0001_initial.py -------------------------------------------------------------------------------- /core/migrations/0002_invoice_total_alter_product_product_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/core/migrations/0002_invoice_total_alter_product_product_image.py -------------------------------------------------------------------------------- /core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/core/models.py -------------------------------------------------------------------------------- /core/templates/core/additemstoinvoice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/core/templates/core/additemstoinvoice.html -------------------------------------------------------------------------------- /core/templates/core/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/core/templates/core/base.html -------------------------------------------------------------------------------- /core/templates/core/createinvoice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/core/templates/core/createinvoice.html -------------------------------------------------------------------------------- /core/templates/core/createproduct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/core/templates/core/createproduct.html -------------------------------------------------------------------------------- /core/templates/core/invoice_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/core/templates/core/invoice_confirm_delete.html -------------------------------------------------------------------------------- /core/templates/core/invoice_print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/core/templates/core/invoice_print.html -------------------------------------------------------------------------------- /core/templates/core/invoicedetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/core/templates/core/invoicedetails.html -------------------------------------------------------------------------------- /core/templates/core/product_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/core/templates/core/product_confirm_delete.html -------------------------------------------------------------------------------- /core/templates/core/products.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/core/templates/core/products.html -------------------------------------------------------------------------------- /core/templates/core/productslist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/core/templates/core/productslist.html -------------------------------------------------------------------------------- /core/templates/core/sales.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/core/templates/core/sales.html -------------------------------------------------------------------------------- /core/templates/core/updateproduct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/core/templates/core/updateproduct.html -------------------------------------------------------------------------------- /core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/core/tests.py -------------------------------------------------------------------------------- /core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/core/urls.py -------------------------------------------------------------------------------- /core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/core/views.py -------------------------------------------------------------------------------- /dummyUsers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/dummyUsers.txt -------------------------------------------------------------------------------- /jstools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/jstools/.gitignore -------------------------------------------------------------------------------- /jstools/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/jstools/package-lock.json -------------------------------------------------------------------------------- /jstools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/jstools/package.json -------------------------------------------------------------------------------- /jstools/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/jstools/postcss.config.js -------------------------------------------------------------------------------- /jstools/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/jstools/tailwind.config.js -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/manage.py -------------------------------------------------------------------------------- /media/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/media/default.png -------------------------------------------------------------------------------- /media/default_product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/media/default_product.png -------------------------------------------------------------------------------- /media/previewpages/UpdateProfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/media/previewpages/UpdateProfile.png -------------------------------------------------------------------------------- /media/previewpages/additemstoinvoice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/media/previewpages/additemstoinvoice.png -------------------------------------------------------------------------------- /media/previewpages/addproduct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/media/previewpages/addproduct.png -------------------------------------------------------------------------------- /media/previewpages/createinvoice1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/media/previewpages/createinvoice1.png -------------------------------------------------------------------------------- /media/previewpages/dashboard(admin).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/media/previewpages/dashboard(admin).png -------------------------------------------------------------------------------- /media/previewpages/dashboard(staff).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/media/previewpages/dashboard(staff).png -------------------------------------------------------------------------------- /media/previewpages/invoicedeletion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/media/previewpages/invoicedeletion.png -------------------------------------------------------------------------------- /media/previewpages/invoicedetails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/media/previewpages/invoicedetails.png -------------------------------------------------------------------------------- /media/previewpages/invoiceprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/media/previewpages/invoiceprint.png -------------------------------------------------------------------------------- /media/previewpages/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/media/previewpages/login.png -------------------------------------------------------------------------------- /media/previewpages/productdeletion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/media/previewpages/productdeletion.png -------------------------------------------------------------------------------- /media/previewpages/productlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/media/previewpages/productlist.png -------------------------------------------------------------------------------- /media/previewpages/products.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/media/previewpages/products.png -------------------------------------------------------------------------------- /media/previewpages/registerstaff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/media/previewpages/registerstaff.png -------------------------------------------------------------------------------- /media/previewpages/sales(staff).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/media/previewpages/sales(staff).png -------------------------------------------------------------------------------- /media/previewpages/sales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/media/previewpages/sales.png -------------------------------------------------------------------------------- /media/products_pics/1fxwraregister-book-500x500.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/media/products_pics/1fxwraregister-book-500x500.webp -------------------------------------------------------------------------------- /media/products_pics/3t3b9dPoster-Colours.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/media/products_pics/3t3b9dPoster-Colours.webp -------------------------------------------------------------------------------- /media/products_pics/88hs70Punching-machines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/media/products_pics/88hs70Punching-machines.png -------------------------------------------------------------------------------- /media/products_pics/Adhesive-Tape-002.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/media/products_pics/Adhesive-Tape-002.webp -------------------------------------------------------------------------------- /media/products_pics/Casio-FX-991ES-PLUS-Calculator-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/media/products_pics/Casio-FX-991ES-PLUS-Calculator-1.webp -------------------------------------------------------------------------------- /media/products_pics/Diaries.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/media/products_pics/Diaries.jpg -------------------------------------------------------------------------------- /media/products_pics/File-and-folder-accessories.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/media/products_pics/File-and-folder-accessories.jpg -------------------------------------------------------------------------------- /media/products_pics/Highlighters.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/media/products_pics/Highlighters.jpg -------------------------------------------------------------------------------- /media/products_pics/Writing-pen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/media/products_pics/Writing-pen.jpg -------------------------------------------------------------------------------- /media/products_pics/colorful_paperclips.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/media/products_pics/colorful_paperclips.webp -------------------------------------------------------------------------------- /media/products_pics/h95vvtTapes---scissors.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/media/products_pics/h95vvtTapes---scissors.jpg -------------------------------------------------------------------------------- /media/products_pics/kvxm5kA4-size-and-photocopier-paper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/media/products_pics/kvxm5kA4-size-and-photocopier-paper.jpg -------------------------------------------------------------------------------- /media/products_pics/t89fesPresentation-supplies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/media/products_pics/t89fesPresentation-supplies.jpg -------------------------------------------------------------------------------- /media/profile_pics/profile-pic3_nzKxtsc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/media/profile_pics/profile-pic3_nzKxtsc.png -------------------------------------------------------------------------------- /media/sms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/media/sms.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/requirements.txt -------------------------------------------------------------------------------- /sms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/sms.json -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/css/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/static/css/style.min.css -------------------------------------------------------------------------------- /static/css/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/static/css/tailwind.css -------------------------------------------------------------------------------- /users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/users/admin.py -------------------------------------------------------------------------------- /users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/users/apps.py -------------------------------------------------------------------------------- /users/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/users/forms.py -------------------------------------------------------------------------------- /users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /users/migrations/0002_alter_profile_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/users/migrations/0002_alter_profile_image.py -------------------------------------------------------------------------------- /users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/users/models.py -------------------------------------------------------------------------------- /users/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/users/signals.py -------------------------------------------------------------------------------- /users/templates/users/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/users/templates/users/dashboard.html -------------------------------------------------------------------------------- /users/templates/users/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/users/templates/users/login.html -------------------------------------------------------------------------------- /users/templates/users/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/users/templates/users/register.html -------------------------------------------------------------------------------- /users/templates/users/update_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/users/templates/users/update_profile.html -------------------------------------------------------------------------------- /users/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/users/tests.py -------------------------------------------------------------------------------- /users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mishankhatri/Sales-Management-System/HEAD/users/views.py --------------------------------------------------------------------------------