├── Database └── shop-ms.sql ├── Docs-Install.txt ├── README.md └── Shop-Management-System ├── Gui ├── Category.py ├── Category.pyc ├── Category.ui ├── Customers.py ├── Customers.pyc ├── Customers.ui ├── Item.py ├── Item.pyc ├── Item.ui ├── Section.py ├── Section.pyc ├── Section.ui ├── SettingItem.py ├── SettingItem.pyc ├── SettingItem.ui ├── Settings.py ├── Settings.pyc ├── Settings.ui ├── Store.py ├── Store.pyc ├── Store.ui ├── __init__.py ├── __init__.pyc ├── __pycache__ │ ├── __init__.cpython-35.pyc │ ├── category.cpython-35.pyc │ ├── login.cpython-35.pyc │ └── mainWindow.cpython-35.pyc ├── addUsers.py ├── addUsers.pyc ├── addUsers.ui ├── chat.py ├── chat.pyc ├── chat.ui ├── employes.py ├── employes.pyc ├── employes.ui ├── infoSettings.py ├── infoSettings.pyc ├── infoSettings.ui ├── login.py ├── login.pyc ├── login.ui ├── mainWindow.py ├── mainWindow.pyc ├── mainWindow.ui ├── resetPassword.py ├── resetPassword.pyc ├── resetPassword.ui ├── sales.py ├── sales.pyc ├── sales.ui ├── selectEmployees.ui ├── selectUser.py ├── selectUser.pyc ├── selectUser.ui ├── viewUsers.py ├── viewUsers.pyc └── viewUsers.ui ├── Server.py ├── Server.pyc ├── Settings.Conf ├── Theme ├── default.qss └── qtPyDark.qss ├── __init__.py ├── classes ├── __init__.py ├── __init__.pyc ├── __pycache__ │ ├── __init__.cpython-35.pyc │ ├── class_login.cpython-35.pyc │ └── class_mainWindow.cpython-35.pyc ├── class_Section.py ├── class_Section.pyc ├── class_SettingItem.py ├── class_SettingItem.pyc ├── class_Settings.py ├── class_Settings.pyc ├── class_Store.py ├── class_Store.pyc ├── class_addUsers.py ├── class_addUsers.pyc ├── class_category.py ├── class_category.pyc ├── class_chat.py ├── class_chat.pyc ├── class_customer.py ├── class_customer.pyc ├── class_employes.py ├── class_employes.pyc ├── class_infoSettings.py ├── class_infoSettings.pyc ├── class_item.py ├── class_item.pyc ├── class_login.py ├── class_login.pyc ├── class_mainWindow.py ├── class_mainWindow.pyc ├── class_resetPassword.py ├── class_resetPassword.pyc ├── class_sales.py ├── class_sales.pyc ├── class_selectUser.py ├── class_selectUser.pyc ├── class_viewUsers.py └── class_viewUsers.pyc ├── connect.py ├── connect.pyc ├── connectFtp.py ├── connectFtp.pyc ├── fonts ├── DroidKufi-Bold.ttf ├── DroidKufi-Regular.ttf ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── funcClasses ├── __init__.py ├── __init__.pyc ├── __pycache__ │ ├── __init__.cpython-35.pyc │ └── funClassMainWindow.cpython-35.pyc ├── funClassAddUsers.py ├── funClassAddUsers.pyc ├── funClassCategory.py ├── funClassCategory.pyc ├── funClassItem.py ├── funClassItem.pyc ├── funClassMainWindow.py ├── funClassMainWindow.pyc ├── funClassSales.py ├── funClassSales.pyc ├── funClassSection.py ├── funClassSection.pyc ├── funClassSettingItem.py ├── funClassSettingItem.pyc ├── funClassStore.py ├── funClassStore.pyc ├── funClassViewUser.py ├── funClassViewUser.pyc ├── funCustomers.py ├── funCustomers.pyc ├── funEmployes.py └── funEmployes.pyc ├── images ├── SalesAdministration.png ├── Settings.png ├── UserDefault.png ├── add-user.png ├── addSales.png ├── arrow-32.png ├── arrow.png ├── calculator.png ├── chat.png ├── closeServer.png ├── connect.png ├── createPassword.png ├── database.png ├── defaultItem.png ├── employes.png ├── eyePassword.png ├── ftp.png ├── login.png ├── logo.png ├── printer.png ├── resetPassword.png ├── runServer.png ├── save.png ├── users.png └── viewUsers.png ├── logo.ico ├── main.py ├── pathIcon.qrc ├── pathIcon_rc.py ├── pathIcon_rc.pyc └── report ├── css ├── bootstrap-rtl.min.css ├── bootstrap.min.css └── style.css ├── fonts ├── DroidKufi-Bold.ttf ├── DroidKufi-Regular.ttf ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 └── js ├── bootstrap.min.js ├── jquery-3.2.1.min.js └── main.js /Database/shop-ms.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Database/shop-ms.sql -------------------------------------------------------------------------------- /Docs-Install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Docs-Install.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/README.md -------------------------------------------------------------------------------- /Shop-Management-System/Gui/Category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/Category.py -------------------------------------------------------------------------------- /Shop-Management-System/Gui/Category.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/Category.pyc -------------------------------------------------------------------------------- /Shop-Management-System/Gui/Category.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/Category.ui -------------------------------------------------------------------------------- /Shop-Management-System/Gui/Customers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/Customers.py -------------------------------------------------------------------------------- /Shop-Management-System/Gui/Customers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/Customers.pyc -------------------------------------------------------------------------------- /Shop-Management-System/Gui/Customers.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/Customers.ui -------------------------------------------------------------------------------- /Shop-Management-System/Gui/Item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/Item.py -------------------------------------------------------------------------------- /Shop-Management-System/Gui/Item.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/Item.pyc -------------------------------------------------------------------------------- /Shop-Management-System/Gui/Item.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/Item.ui -------------------------------------------------------------------------------- /Shop-Management-System/Gui/Section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/Section.py -------------------------------------------------------------------------------- /Shop-Management-System/Gui/Section.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/Section.pyc -------------------------------------------------------------------------------- /Shop-Management-System/Gui/Section.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/Section.ui -------------------------------------------------------------------------------- /Shop-Management-System/Gui/SettingItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/SettingItem.py -------------------------------------------------------------------------------- /Shop-Management-System/Gui/SettingItem.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/SettingItem.pyc -------------------------------------------------------------------------------- /Shop-Management-System/Gui/SettingItem.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/SettingItem.ui -------------------------------------------------------------------------------- /Shop-Management-System/Gui/Settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/Settings.py -------------------------------------------------------------------------------- /Shop-Management-System/Gui/Settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/Settings.pyc -------------------------------------------------------------------------------- /Shop-Management-System/Gui/Settings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/Settings.ui -------------------------------------------------------------------------------- /Shop-Management-System/Gui/Store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/Store.py -------------------------------------------------------------------------------- /Shop-Management-System/Gui/Store.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/Store.pyc -------------------------------------------------------------------------------- /Shop-Management-System/Gui/Store.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/Store.ui -------------------------------------------------------------------------------- /Shop-Management-System/Gui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Shop-Management-System/Gui/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/__init__.pyc -------------------------------------------------------------------------------- /Shop-Management-System/Gui/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /Shop-Management-System/Gui/__pycache__/category.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/__pycache__/category.cpython-35.pyc -------------------------------------------------------------------------------- /Shop-Management-System/Gui/__pycache__/login.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/__pycache__/login.cpython-35.pyc -------------------------------------------------------------------------------- /Shop-Management-System/Gui/__pycache__/mainWindow.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/__pycache__/mainWindow.cpython-35.pyc -------------------------------------------------------------------------------- /Shop-Management-System/Gui/addUsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/addUsers.py -------------------------------------------------------------------------------- /Shop-Management-System/Gui/addUsers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/addUsers.pyc -------------------------------------------------------------------------------- /Shop-Management-System/Gui/addUsers.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/addUsers.ui -------------------------------------------------------------------------------- /Shop-Management-System/Gui/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/chat.py -------------------------------------------------------------------------------- /Shop-Management-System/Gui/chat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/chat.pyc -------------------------------------------------------------------------------- /Shop-Management-System/Gui/chat.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/chat.ui -------------------------------------------------------------------------------- /Shop-Management-System/Gui/employes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/employes.py -------------------------------------------------------------------------------- /Shop-Management-System/Gui/employes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/employes.pyc -------------------------------------------------------------------------------- /Shop-Management-System/Gui/employes.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/employes.ui -------------------------------------------------------------------------------- /Shop-Management-System/Gui/infoSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/infoSettings.py -------------------------------------------------------------------------------- /Shop-Management-System/Gui/infoSettings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/infoSettings.pyc -------------------------------------------------------------------------------- /Shop-Management-System/Gui/infoSettings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/infoSettings.ui -------------------------------------------------------------------------------- /Shop-Management-System/Gui/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/login.py -------------------------------------------------------------------------------- /Shop-Management-System/Gui/login.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/login.pyc -------------------------------------------------------------------------------- /Shop-Management-System/Gui/login.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/login.ui -------------------------------------------------------------------------------- /Shop-Management-System/Gui/mainWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/mainWindow.py -------------------------------------------------------------------------------- /Shop-Management-System/Gui/mainWindow.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/mainWindow.pyc -------------------------------------------------------------------------------- /Shop-Management-System/Gui/mainWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/mainWindow.ui -------------------------------------------------------------------------------- /Shop-Management-System/Gui/resetPassword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/resetPassword.py -------------------------------------------------------------------------------- /Shop-Management-System/Gui/resetPassword.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/resetPassword.pyc -------------------------------------------------------------------------------- /Shop-Management-System/Gui/resetPassword.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/resetPassword.ui -------------------------------------------------------------------------------- /Shop-Management-System/Gui/sales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/sales.py -------------------------------------------------------------------------------- /Shop-Management-System/Gui/sales.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/sales.pyc -------------------------------------------------------------------------------- /Shop-Management-System/Gui/sales.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/sales.ui -------------------------------------------------------------------------------- /Shop-Management-System/Gui/selectEmployees.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/selectEmployees.ui -------------------------------------------------------------------------------- /Shop-Management-System/Gui/selectUser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/selectUser.py -------------------------------------------------------------------------------- /Shop-Management-System/Gui/selectUser.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/selectUser.pyc -------------------------------------------------------------------------------- /Shop-Management-System/Gui/selectUser.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/selectUser.ui -------------------------------------------------------------------------------- /Shop-Management-System/Gui/viewUsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/viewUsers.py -------------------------------------------------------------------------------- /Shop-Management-System/Gui/viewUsers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/viewUsers.pyc -------------------------------------------------------------------------------- /Shop-Management-System/Gui/viewUsers.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Gui/viewUsers.ui -------------------------------------------------------------------------------- /Shop-Management-System/Server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Server.py -------------------------------------------------------------------------------- /Shop-Management-System/Server.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Server.pyc -------------------------------------------------------------------------------- /Shop-Management-System/Settings.Conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Settings.Conf -------------------------------------------------------------------------------- /Shop-Management-System/Theme/default.qss: -------------------------------------------------------------------------------- 1 | *{font-family:"Droid Arabic Kufi";} -------------------------------------------------------------------------------- /Shop-Management-System/Theme/qtPyDark.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/Theme/qtPyDark.qss -------------------------------------------------------------------------------- /Shop-Management-System/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Shop-Management-System/classes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Shop-Management-System/classes/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/__init__.pyc -------------------------------------------------------------------------------- /Shop-Management-System/classes/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /Shop-Management-System/classes/__pycache__/class_login.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/__pycache__/class_login.cpython-35.pyc -------------------------------------------------------------------------------- /Shop-Management-System/classes/__pycache__/class_mainWindow.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/__pycache__/class_mainWindow.cpython-35.pyc -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_Section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_Section.py -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_Section.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_Section.pyc -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_SettingItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_SettingItem.py -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_SettingItem.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_SettingItem.pyc -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_Settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_Settings.py -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_Settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_Settings.pyc -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_Store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_Store.py -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_Store.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_Store.pyc -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_addUsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_addUsers.py -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_addUsers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_addUsers.pyc -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_category.py -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_category.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_category.pyc -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_chat.py -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_chat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_chat.pyc -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_customer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_customer.py -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_customer.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_customer.pyc -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_employes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_employes.py -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_employes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_employes.pyc -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_infoSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_infoSettings.py -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_infoSettings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_infoSettings.pyc -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_item.py -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_item.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_item.pyc -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_login.py -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_login.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_login.pyc -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_mainWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_mainWindow.py -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_mainWindow.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_mainWindow.pyc -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_resetPassword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_resetPassword.py -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_resetPassword.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_resetPassword.pyc -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_sales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_sales.py -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_sales.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_sales.pyc -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_selectUser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_selectUser.py -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_selectUser.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_selectUser.pyc -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_viewUsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_viewUsers.py -------------------------------------------------------------------------------- /Shop-Management-System/classes/class_viewUsers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/classes/class_viewUsers.pyc -------------------------------------------------------------------------------- /Shop-Management-System/connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/connect.py -------------------------------------------------------------------------------- /Shop-Management-System/connect.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/connect.pyc -------------------------------------------------------------------------------- /Shop-Management-System/connectFtp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/connectFtp.py -------------------------------------------------------------------------------- /Shop-Management-System/connectFtp.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/connectFtp.pyc -------------------------------------------------------------------------------- /Shop-Management-System/fonts/DroidKufi-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/fonts/DroidKufi-Bold.ttf -------------------------------------------------------------------------------- /Shop-Management-System/fonts/DroidKufi-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/fonts/DroidKufi-Regular.ttf -------------------------------------------------------------------------------- /Shop-Management-System/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Shop-Management-System/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Shop-Management-System/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Shop-Management-System/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Shop-Management-System/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Shop-Management-System/funcClasses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Shop-Management-System/funcClasses/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/funcClasses/__init__.pyc -------------------------------------------------------------------------------- /Shop-Management-System/funcClasses/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/funcClasses/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /Shop-Management-System/funcClasses/__pycache__/funClassMainWindow.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/funcClasses/__pycache__/funClassMainWindow.cpython-35.pyc -------------------------------------------------------------------------------- /Shop-Management-System/funcClasses/funClassAddUsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/funcClasses/funClassAddUsers.py -------------------------------------------------------------------------------- /Shop-Management-System/funcClasses/funClassAddUsers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/funcClasses/funClassAddUsers.pyc -------------------------------------------------------------------------------- /Shop-Management-System/funcClasses/funClassCategory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/funcClasses/funClassCategory.py -------------------------------------------------------------------------------- /Shop-Management-System/funcClasses/funClassCategory.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/funcClasses/funClassCategory.pyc -------------------------------------------------------------------------------- /Shop-Management-System/funcClasses/funClassItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/funcClasses/funClassItem.py -------------------------------------------------------------------------------- /Shop-Management-System/funcClasses/funClassItem.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/funcClasses/funClassItem.pyc -------------------------------------------------------------------------------- /Shop-Management-System/funcClasses/funClassMainWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/funcClasses/funClassMainWindow.py -------------------------------------------------------------------------------- /Shop-Management-System/funcClasses/funClassMainWindow.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/funcClasses/funClassMainWindow.pyc -------------------------------------------------------------------------------- /Shop-Management-System/funcClasses/funClassSales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/funcClasses/funClassSales.py -------------------------------------------------------------------------------- /Shop-Management-System/funcClasses/funClassSales.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/funcClasses/funClassSales.pyc -------------------------------------------------------------------------------- /Shop-Management-System/funcClasses/funClassSection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/funcClasses/funClassSection.py -------------------------------------------------------------------------------- /Shop-Management-System/funcClasses/funClassSection.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/funcClasses/funClassSection.pyc -------------------------------------------------------------------------------- /Shop-Management-System/funcClasses/funClassSettingItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/funcClasses/funClassSettingItem.py -------------------------------------------------------------------------------- /Shop-Management-System/funcClasses/funClassSettingItem.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/funcClasses/funClassSettingItem.pyc -------------------------------------------------------------------------------- /Shop-Management-System/funcClasses/funClassStore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/funcClasses/funClassStore.py -------------------------------------------------------------------------------- /Shop-Management-System/funcClasses/funClassStore.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/funcClasses/funClassStore.pyc -------------------------------------------------------------------------------- /Shop-Management-System/funcClasses/funClassViewUser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/funcClasses/funClassViewUser.py -------------------------------------------------------------------------------- /Shop-Management-System/funcClasses/funClassViewUser.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/funcClasses/funClassViewUser.pyc -------------------------------------------------------------------------------- /Shop-Management-System/funcClasses/funCustomers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/funcClasses/funCustomers.py -------------------------------------------------------------------------------- /Shop-Management-System/funcClasses/funCustomers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/funcClasses/funCustomers.pyc -------------------------------------------------------------------------------- /Shop-Management-System/funcClasses/funEmployes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/funcClasses/funEmployes.py -------------------------------------------------------------------------------- /Shop-Management-System/funcClasses/funEmployes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/funcClasses/funEmployes.pyc -------------------------------------------------------------------------------- /Shop-Management-System/images/SalesAdministration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/images/SalesAdministration.png -------------------------------------------------------------------------------- /Shop-Management-System/images/Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/images/Settings.png -------------------------------------------------------------------------------- /Shop-Management-System/images/UserDefault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/images/UserDefault.png -------------------------------------------------------------------------------- /Shop-Management-System/images/add-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/images/add-user.png -------------------------------------------------------------------------------- /Shop-Management-System/images/addSales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/images/addSales.png -------------------------------------------------------------------------------- /Shop-Management-System/images/arrow-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/images/arrow-32.png -------------------------------------------------------------------------------- /Shop-Management-System/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/images/arrow.png -------------------------------------------------------------------------------- /Shop-Management-System/images/calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/images/calculator.png -------------------------------------------------------------------------------- /Shop-Management-System/images/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/images/chat.png -------------------------------------------------------------------------------- /Shop-Management-System/images/closeServer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/images/closeServer.png -------------------------------------------------------------------------------- /Shop-Management-System/images/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/images/connect.png -------------------------------------------------------------------------------- /Shop-Management-System/images/createPassword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/images/createPassword.png -------------------------------------------------------------------------------- /Shop-Management-System/images/database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/images/database.png -------------------------------------------------------------------------------- /Shop-Management-System/images/defaultItem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/images/defaultItem.png -------------------------------------------------------------------------------- /Shop-Management-System/images/employes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/images/employes.png -------------------------------------------------------------------------------- /Shop-Management-System/images/eyePassword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/images/eyePassword.png -------------------------------------------------------------------------------- /Shop-Management-System/images/ftp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/images/ftp.png -------------------------------------------------------------------------------- /Shop-Management-System/images/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/images/login.png -------------------------------------------------------------------------------- /Shop-Management-System/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/images/logo.png -------------------------------------------------------------------------------- /Shop-Management-System/images/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/images/printer.png -------------------------------------------------------------------------------- /Shop-Management-System/images/resetPassword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/images/resetPassword.png -------------------------------------------------------------------------------- /Shop-Management-System/images/runServer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/images/runServer.png -------------------------------------------------------------------------------- /Shop-Management-System/images/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/images/save.png -------------------------------------------------------------------------------- /Shop-Management-System/images/users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/images/users.png -------------------------------------------------------------------------------- /Shop-Management-System/images/viewUsers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/images/viewUsers.png -------------------------------------------------------------------------------- /Shop-Management-System/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/logo.ico -------------------------------------------------------------------------------- /Shop-Management-System/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/main.py -------------------------------------------------------------------------------- /Shop-Management-System/pathIcon.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/pathIcon.qrc -------------------------------------------------------------------------------- /Shop-Management-System/pathIcon_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/pathIcon_rc.py -------------------------------------------------------------------------------- /Shop-Management-System/pathIcon_rc.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/pathIcon_rc.pyc -------------------------------------------------------------------------------- /Shop-Management-System/report/css/bootstrap-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/report/css/bootstrap-rtl.min.css -------------------------------------------------------------------------------- /Shop-Management-System/report/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/report/css/bootstrap.min.css -------------------------------------------------------------------------------- /Shop-Management-System/report/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/report/css/style.css -------------------------------------------------------------------------------- /Shop-Management-System/report/fonts/DroidKufi-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/report/fonts/DroidKufi-Bold.ttf -------------------------------------------------------------------------------- /Shop-Management-System/report/fonts/DroidKufi-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/report/fonts/DroidKufi-Regular.ttf -------------------------------------------------------------------------------- /Shop-Management-System/report/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/report/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Shop-Management-System/report/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/report/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Shop-Management-System/report/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/report/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Shop-Management-System/report/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/report/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Shop-Management-System/report/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/report/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Shop-Management-System/report/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/report/js/bootstrap.min.js -------------------------------------------------------------------------------- /Shop-Management-System/report/js/jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progaymanalaiwah/Shop-Management-System/HEAD/Shop-Management-System/report/js/jquery-3.2.1.min.js -------------------------------------------------------------------------------- /Shop-Management-System/report/js/main.js: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------