├── LICENSE ├── Python Code ├── Note └── Wh_manage-master │ ├── .vscode │ └── settings.json │ └── Wh_manage-master │ ├── .vs │ ├── VSWorkspaceState.json │ ├── Wh_manage-master │ │ └── v16 │ │ │ └── .suo │ └── slnx.sqlite │ └── wh_manage │ ├── .vscode │ └── settings.json │ ├── db.sqlite3 │ ├── manage.py │ ├── productDetails │ ├── __init__.py │ ├── __init__.pyc │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── admin.cpython-38.pyc │ │ ├── forms.cpython-38.pyc │ │ ├── models.cpython-38.pyc │ │ ├── urls.cpython-38.pyc │ │ └── views.cpython-38.pyc │ ├── admin.py │ ├── admin.pyc │ ├── apps.py │ ├── forms.py │ ├── forms.pyc │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-38.pyc │ │ │ ├── 0002_productsuggestions_count.cpython-38.pyc │ │ │ ├── 0003_auto_20210122_1422.cpython-38.pyc │ │ │ └── __init__.cpython-38.pyc │ ├── models.py │ ├── models.pyc │ ├── templates │ │ └── productDetails │ │ │ ├── base.html │ │ │ ├── category.html │ │ │ ├── index.html │ │ │ ├── manufacturer.html │ │ │ ├── product_form.html │ │ │ ├── product_list.html │ │ │ ├── product_order.html │ │ │ ├── product_path.html │ │ │ ├── spclass.py │ │ │ └── suggestions.html │ ├── tests.py │ ├── urls.py │ ├── urls.pyc │ ├── views.py │ └── views.pyc │ └── wh_manage │ ├── __init__.py │ ├── __init__.pyc │ ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── settings.cpython-38.pyc │ ├── urls.cpython-38.pyc │ └── wsgi.cpython-38.pyc │ ├── settings.py │ ├── settings.pyc │ ├── urls.py │ ├── urls.pyc │ ├── wsgi.py │ └── wsgi.pyc └── README.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/LICENSE -------------------------------------------------------------------------------- /Python Code/Note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Note -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/.vscode/settings.json -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/.vs/Wh_manage-master/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/.vs/Wh_manage-master/v16/.suo -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/.vs/slnx.sqlite -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/.vscode/settings.json -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/db.sqlite3 -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/manage.py -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/__init__.pyc -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/__pycache__/forms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/__pycache__/forms.cpython-38.pyc -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/admin.py -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/admin.pyc -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/apps.py -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/forms.py -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/forms.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/forms.pyc -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/migrations/0001_initial.py -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/migrations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/migrations/__init__.pyc -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/migrations/__pycache__/0001_initial.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/migrations/__pycache__/0001_initial.cpython-38.pyc -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/migrations/__pycache__/0002_productsuggestions_count.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/migrations/__pycache__/0002_productsuggestions_count.cpython-38.pyc -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/migrations/__pycache__/0003_auto_20210122_1422.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/migrations/__pycache__/0003_auto_20210122_1422.cpython-38.pyc -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/models.py -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/models.pyc -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/templates/productDetails/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/templates/productDetails/base.html -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/templates/productDetails/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/templates/productDetails/category.html -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/templates/productDetails/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/templates/productDetails/index.html -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/templates/productDetails/manufacturer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/templates/productDetails/manufacturer.html -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/templates/productDetails/product_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/templates/productDetails/product_form.html -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/templates/productDetails/product_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/templates/productDetails/product_list.html -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/templates/productDetails/product_order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/templates/productDetails/product_order.html -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/templates/productDetails/product_path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/templates/productDetails/product_path.html -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/templates/productDetails/spclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/templates/productDetails/spclass.py -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/templates/productDetails/suggestions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/templates/productDetails/suggestions.html -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/tests.py -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/urls.py -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/urls.pyc -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/views.py -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/productDetails/views.pyc -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/wh_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/wh_manage/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/wh_manage/__init__.pyc -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/wh_manage/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/wh_manage/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/wh_manage/__pycache__/settings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/wh_manage/__pycache__/settings.cpython-38.pyc -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/wh_manage/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/wh_manage/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/wh_manage/__pycache__/wsgi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/wh_manage/__pycache__/wsgi.cpython-38.pyc -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/wh_manage/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/wh_manage/settings.py -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/wh_manage/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/wh_manage/settings.pyc -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/wh_manage/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/wh_manage/urls.py -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/wh_manage/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/wh_manage/urls.pyc -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/wh_manage/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/wh_manage/wsgi.py -------------------------------------------------------------------------------- /Python Code/Wh_manage-master/Wh_manage-master/wh_manage/wh_manage/wsgi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/Python Code/Wh_manage-master/Wh_manage-master/wh_manage/wh_manage/wsgi.pyc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKV-1998/Warehouse-Management-System/HEAD/README.md --------------------------------------------------------------------------------