├── .gitattributes ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── Procfile ├── README.md ├── app_static ├── css │ ├── bootstrap.css │ ├── profileImage.css │ ├── style-responsive.css │ ├── style.css │ ├── sweetalert2.min.css │ ├── table-responsive.css │ ├── to-do.css │ └── zabuto_calendar.css ├── font-awesome │ ├── css │ │ └── font-awesome.css │ └── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── img │ ├── bg-img.png │ ├── blog-bg.jpg │ ├── checkbox-gray.png │ ├── instagram.jpg │ ├── login-bg.jpg │ ├── lorde.jpg │ ├── mask.png │ ├── ny.jpg │ ├── portfolio │ │ ├── port01.jpg │ │ ├── port02.jpg │ │ ├── port03.jpg │ │ ├── port04.jpg │ │ ├── port05.jpg │ │ └── port06.jpg │ ├── product.jpg │ ├── product.png │ ├── profile-01.jpg │ ├── profile-02.jpg │ ├── promo.jpg │ ├── radio-gray.png │ ├── ui-danro.jpg │ ├── ui-divya.jpg │ ├── ui-sam.jpg │ ├── ui-sherman.jpg │ ├── ui-zac.jpg │ └── weather.jpg ├── js │ ├── bootstrap-inputmask │ │ └── bootstrap-inputmask.min.js │ ├── bootstrap-switch.js │ ├── bootstrap.min.js │ ├── calendar-conf-events.js │ ├── chart-master │ │ └── Chart.js │ ├── chartjs-conf.js │ ├── common-scripts.js │ ├── easy-pie-chart.js │ ├── fancybox │ │ ├── jquery.fancybox.css │ │ └── jquery.fancybox.js │ ├── form-component.js │ ├── fullcalendar │ │ ├── bootstrap-fullcalendar.css │ │ └── fullcalendar.min.js │ ├── gritter-conf.js │ ├── gritter │ │ ├── css │ │ │ ├── jquery.gritter.css │ │ │ └── jquery.gritter0.css │ │ ├── images │ │ │ ├── gritter-light.png │ │ │ ├── gritter-long.png │ │ │ ├── gritter.png │ │ │ └── ie-spacer.gif │ │ └── js │ │ │ └── jquery.gritter.js │ ├── highcharts.js │ ├── index.js │ ├── javascript-functions.js │ ├── jquery-1.8.3.min.js │ ├── jquery-3.3.1.js │ ├── jquery-easy-pie-chart │ │ ├── jquery.easy-pie-chart.css │ │ └── jquery.easy-pie-chart.js │ ├── jquery-ui-1.9.2.custom.min.js │ ├── jquery.backstretch.min.js │ ├── jquery.dcjqaccordion.2.7.js │ ├── jquery.invoice.js │ ├── jquery.js │ ├── jquery.min.1.7.js │ ├── jquery.nicescroll.js │ ├── jquery.scannerdetection.js │ ├── jquery.scrollTo.min.js │ ├── jquery.sparkline.js │ ├── jquery.tagsinput.js │ ├── jquery.ui.touch-punch.min.js │ ├── morris-conf.js │ ├── notify.js │ ├── sparkline-chart.js │ ├── sweetalert2.min.js │ ├── tasks.js │ └── zabuto_calendar.js └── lineicons │ ├── fonts │ ├── linecons.eot │ ├── linecons.svg │ ├── linecons.ttf │ └── linecons.woff │ ├── index.html │ ├── lte-ie7.js │ └── style.css ├── db.sqlite3 ├── manage.py ├── partum_inventory ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── pis_com ├── __init__.py ├── admin.py ├── api_urls.py ├── api_views.py ├── apps.py ├── ean13.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_userprofile_user_type.py │ ├── 0003_auto_20180510_1458.py │ ├── 0003_customer.py │ ├── 0004_auto_20180504_1944.py │ ├── 0005_merge_20180510_1508.py │ ├── 0006_auto_20180604_2203.py │ ├── 0007_adminconfiguration.py │ ├── 0008_customer_person_type.py │ ├── 0009_auto_20190202_1638.py │ ├── 0010_auto_20190202_1715.py │ ├── 0011_feedback.py │ ├── 0012_feedback_retailer.py │ └── __init__.py ├── models.py ├── templatetags │ ├── __init__.py │ └── template_tags.py ├── tests.py ├── urls.py └── views.py ├── pis_employees ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── pis_expense ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── pis_ledger ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20180519_1137.py │ ├── 0003_auto_20180608_2252.py │ ├── 0004_paymentledger_payment_type.py │ ├── 0005_ledger_person.py │ ├── 0006_auto_20190202_1659.py │ ├── 0007_auto_20190807_0813.py │ ├── 0008_ledger_dated.py │ ├── 0009_ledger_invoice.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── pis_product ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── logs_view.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_purchasedproduct_quantity.py │ ├── 0003_auto_20180412_1827.py │ ├── 0004_extraitems.py │ ├── 0005_extraitems_discount_percentage.py │ ├── 0006_purchasedproduct_price.py │ ├── 0007_claimedproduct.py │ ├── 0008_auto_20180608_2226.py │ ├── 0009_stockin_stockout.py │ ├── 0010_product_bar_code.py │ ├── 0011_product_unit_type.py │ ├── 0012_auto_20190122_1615.py │ ├── 0013_auto_20190626_1733.py │ ├── 0014_auto_20190626_1817.py │ ├── 0015_auto_20190626_1819.py │ ├── 0016_auto_20190809_0544.py │ ├── 0017_stockout_purchased_item.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── pis_retailer ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_retailer_logo.py │ ├── 0003_retaileruser_role_type.py │ ├── 0004_auto_20180623_1526.py │ ├── 0005_auto_20190208_1417.py │ ├── 0006_retailer_package_expiry.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── pis_sales ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20180412_1713.py │ ├── 0003_auto_20180412_1714.py │ ├── 0004_saleshistory_remaining_payment.py │ ├── 0005_customer.py │ ├── 0006_auto_20180427_1724.py │ ├── 0007_auto_20180504_1940.py │ ├── 0007_saleshistory_extra_items.py │ ├── 0008_merge_20180509_1348.py │ ├── 0009_saleshistory_paid_amount.py │ ├── 0010_auto_20190622_1207.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── pis_supplier ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20190801_1250.py │ ├── 0003_auto_20190806_0807.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── requirements.txt ├── runtime.txt └── templates ├── base.html ├── create_feedback.html ├── customer ├── create_customer.html ├── customer_list.html └── update_customer.html ├── employee ├── create.html ├── employee_list.html ├── employee_salary.html └── employee_salary_detail.html ├── expense ├── create_expense.html └── expense_list.html ├── index.html ├── ledger ├── add_customer_ledger.html ├── add_payment.html ├── create_ledger.html ├── customer_ledger_details.html ├── customer_ledger_list.html └── payment_ledger.html ├── login.html ├── logs ├── daily_stock_logs.html └── monthly_stock_logs.html ├── products ├── add_product.html ├── add_product_items.html ├── add_stock_item.html ├── claimed_product.html ├── claimed_product_list.html ├── item_details.html ├── product_list.html ├── purchased_extraitems.html ├── purchased_items.html ├── stock_detail.html ├── stock_list.html ├── stock_out.html ├── stockin_list.html ├── stockout_list.html ├── update_product.html └── update_stockin.html ├── register.html ├── reports.html ├── sales ├── create_invoice.html ├── invoice_detail.html ├── invoice_list.html └── update_invoice.html └── supplier ├── add_supplier.html ├── add_supplier_statement.html ├── list_supplier.html ├── list_supplier_statement.html ├── payment.html └── update_supplier_statement.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn partum_inventory.wsgi --log-file - 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/README.md -------------------------------------------------------------------------------- /app_static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/css/bootstrap.css -------------------------------------------------------------------------------- /app_static/css/profileImage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/css/profileImage.css -------------------------------------------------------------------------------- /app_static/css/style-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/css/style-responsive.css -------------------------------------------------------------------------------- /app_static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/css/style.css -------------------------------------------------------------------------------- /app_static/css/sweetalert2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/css/sweetalert2.min.css -------------------------------------------------------------------------------- /app_static/css/table-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/css/table-responsive.css -------------------------------------------------------------------------------- /app_static/css/to-do.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/css/to-do.css -------------------------------------------------------------------------------- /app_static/css/zabuto_calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/css/zabuto_calendar.css -------------------------------------------------------------------------------- /app_static/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /app_static/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /app_static/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /app_static/font-awesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/font-awesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /app_static/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /app_static/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /app_static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /app_static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /app_static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /app_static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /app_static/img/bg-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/img/bg-img.png -------------------------------------------------------------------------------- /app_static/img/blog-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/img/blog-bg.jpg -------------------------------------------------------------------------------- /app_static/img/checkbox-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/img/checkbox-gray.png -------------------------------------------------------------------------------- /app_static/img/instagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/img/instagram.jpg -------------------------------------------------------------------------------- /app_static/img/login-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/img/login-bg.jpg -------------------------------------------------------------------------------- /app_static/img/lorde.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/img/lorde.jpg -------------------------------------------------------------------------------- /app_static/img/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/img/mask.png -------------------------------------------------------------------------------- /app_static/img/ny.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/img/ny.jpg -------------------------------------------------------------------------------- /app_static/img/portfolio/port01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/img/portfolio/port01.jpg -------------------------------------------------------------------------------- /app_static/img/portfolio/port02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/img/portfolio/port02.jpg -------------------------------------------------------------------------------- /app_static/img/portfolio/port03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/img/portfolio/port03.jpg -------------------------------------------------------------------------------- /app_static/img/portfolio/port04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/img/portfolio/port04.jpg -------------------------------------------------------------------------------- /app_static/img/portfolio/port05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/img/portfolio/port05.jpg -------------------------------------------------------------------------------- /app_static/img/portfolio/port06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/img/portfolio/port06.jpg -------------------------------------------------------------------------------- /app_static/img/product.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/img/product.jpg -------------------------------------------------------------------------------- /app_static/img/product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/img/product.png -------------------------------------------------------------------------------- /app_static/img/profile-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/img/profile-01.jpg -------------------------------------------------------------------------------- /app_static/img/profile-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/img/profile-02.jpg -------------------------------------------------------------------------------- /app_static/img/promo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/img/promo.jpg -------------------------------------------------------------------------------- /app_static/img/radio-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/img/radio-gray.png -------------------------------------------------------------------------------- /app_static/img/ui-danro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/img/ui-danro.jpg -------------------------------------------------------------------------------- /app_static/img/ui-divya.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/img/ui-divya.jpg -------------------------------------------------------------------------------- /app_static/img/ui-sam.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/img/ui-sam.jpg -------------------------------------------------------------------------------- /app_static/img/ui-sherman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/img/ui-sherman.jpg -------------------------------------------------------------------------------- /app_static/img/ui-zac.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/img/ui-zac.jpg -------------------------------------------------------------------------------- /app_static/img/weather.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/img/weather.jpg -------------------------------------------------------------------------------- /app_static/js/bootstrap-inputmask/bootstrap-inputmask.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/bootstrap-inputmask/bootstrap-inputmask.min.js -------------------------------------------------------------------------------- /app_static/js/bootstrap-switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/bootstrap-switch.js -------------------------------------------------------------------------------- /app_static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/bootstrap.min.js -------------------------------------------------------------------------------- /app_static/js/calendar-conf-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/calendar-conf-events.js -------------------------------------------------------------------------------- /app_static/js/chart-master/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/chart-master/Chart.js -------------------------------------------------------------------------------- /app_static/js/chartjs-conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/chartjs-conf.js -------------------------------------------------------------------------------- /app_static/js/common-scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/common-scripts.js -------------------------------------------------------------------------------- /app_static/js/easy-pie-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/easy-pie-chart.js -------------------------------------------------------------------------------- /app_static/js/fancybox/jquery.fancybox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/fancybox/jquery.fancybox.css -------------------------------------------------------------------------------- /app_static/js/fancybox/jquery.fancybox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/fancybox/jquery.fancybox.js -------------------------------------------------------------------------------- /app_static/js/form-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/form-component.js -------------------------------------------------------------------------------- /app_static/js/fullcalendar/bootstrap-fullcalendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/fullcalendar/bootstrap-fullcalendar.css -------------------------------------------------------------------------------- /app_static/js/fullcalendar/fullcalendar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/fullcalendar/fullcalendar.min.js -------------------------------------------------------------------------------- /app_static/js/gritter-conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/gritter-conf.js -------------------------------------------------------------------------------- /app_static/js/gritter/css/jquery.gritter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/gritter/css/jquery.gritter.css -------------------------------------------------------------------------------- /app_static/js/gritter/css/jquery.gritter0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/gritter/css/jquery.gritter0.css -------------------------------------------------------------------------------- /app_static/js/gritter/images/gritter-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/gritter/images/gritter-light.png -------------------------------------------------------------------------------- /app_static/js/gritter/images/gritter-long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/gritter/images/gritter-long.png -------------------------------------------------------------------------------- /app_static/js/gritter/images/gritter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/gritter/images/gritter.png -------------------------------------------------------------------------------- /app_static/js/gritter/images/ie-spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/gritter/images/ie-spacer.gif -------------------------------------------------------------------------------- /app_static/js/gritter/js/jquery.gritter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/gritter/js/jquery.gritter.js -------------------------------------------------------------------------------- /app_static/js/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/highcharts.js -------------------------------------------------------------------------------- /app_static/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/index.js -------------------------------------------------------------------------------- /app_static/js/javascript-functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/javascript-functions.js -------------------------------------------------------------------------------- /app_static/js/jquery-1.8.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/jquery-1.8.3.min.js -------------------------------------------------------------------------------- /app_static/js/jquery-3.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/jquery-3.3.1.js -------------------------------------------------------------------------------- /app_static/js/jquery-easy-pie-chart/jquery.easy-pie-chart.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/jquery-easy-pie-chart/jquery.easy-pie-chart.css -------------------------------------------------------------------------------- /app_static/js/jquery-easy-pie-chart/jquery.easy-pie-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/jquery-easy-pie-chart/jquery.easy-pie-chart.js -------------------------------------------------------------------------------- /app_static/js/jquery-ui-1.9.2.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/jquery-ui-1.9.2.custom.min.js -------------------------------------------------------------------------------- /app_static/js/jquery.backstretch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/jquery.backstretch.min.js -------------------------------------------------------------------------------- /app_static/js/jquery.dcjqaccordion.2.7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/jquery.dcjqaccordion.2.7.js -------------------------------------------------------------------------------- /app_static/js/jquery.invoice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/jquery.invoice.js -------------------------------------------------------------------------------- /app_static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/jquery.js -------------------------------------------------------------------------------- /app_static/js/jquery.min.1.7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/jquery.min.1.7.js -------------------------------------------------------------------------------- /app_static/js/jquery.nicescroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/jquery.nicescroll.js -------------------------------------------------------------------------------- /app_static/js/jquery.scannerdetection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/jquery.scannerdetection.js -------------------------------------------------------------------------------- /app_static/js/jquery.scrollTo.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/jquery.scrollTo.min.js -------------------------------------------------------------------------------- /app_static/js/jquery.sparkline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/jquery.sparkline.js -------------------------------------------------------------------------------- /app_static/js/jquery.tagsinput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/jquery.tagsinput.js -------------------------------------------------------------------------------- /app_static/js/jquery.ui.touch-punch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/jquery.ui.touch-punch.min.js -------------------------------------------------------------------------------- /app_static/js/morris-conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/morris-conf.js -------------------------------------------------------------------------------- /app_static/js/notify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/notify.js -------------------------------------------------------------------------------- /app_static/js/sparkline-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/sparkline-chart.js -------------------------------------------------------------------------------- /app_static/js/sweetalert2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/sweetalert2.min.js -------------------------------------------------------------------------------- /app_static/js/tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/tasks.js -------------------------------------------------------------------------------- /app_static/js/zabuto_calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/js/zabuto_calendar.js -------------------------------------------------------------------------------- /app_static/lineicons/fonts/linecons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/lineicons/fonts/linecons.eot -------------------------------------------------------------------------------- /app_static/lineicons/fonts/linecons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/lineicons/fonts/linecons.svg -------------------------------------------------------------------------------- /app_static/lineicons/fonts/linecons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/lineicons/fonts/linecons.ttf -------------------------------------------------------------------------------- /app_static/lineicons/fonts/linecons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/lineicons/fonts/linecons.woff -------------------------------------------------------------------------------- /app_static/lineicons/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/lineicons/index.html -------------------------------------------------------------------------------- /app_static/lineicons/lte-ie7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/lineicons/lte-ie7.js -------------------------------------------------------------------------------- /app_static/lineicons/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/app_static/lineicons/style.css -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/manage.py -------------------------------------------------------------------------------- /partum_inventory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /partum_inventory/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/partum_inventory/asgi.py -------------------------------------------------------------------------------- /partum_inventory/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/partum_inventory/settings.py -------------------------------------------------------------------------------- /partum_inventory/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/partum_inventory/urls.py -------------------------------------------------------------------------------- /partum_inventory/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/partum_inventory/wsgi.py -------------------------------------------------------------------------------- /pis_com/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pis_com/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_com/admin.py -------------------------------------------------------------------------------- /pis_com/api_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_com/api_urls.py -------------------------------------------------------------------------------- /pis_com/api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_com/api_views.py -------------------------------------------------------------------------------- /pis_com/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_com/apps.py -------------------------------------------------------------------------------- /pis_com/ean13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_com/ean13.py -------------------------------------------------------------------------------- /pis_com/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_com/forms.py -------------------------------------------------------------------------------- /pis_com/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_com/migrations/0001_initial.py -------------------------------------------------------------------------------- /pis_com/migrations/0002_userprofile_user_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_com/migrations/0002_userprofile_user_type.py -------------------------------------------------------------------------------- /pis_com/migrations/0003_auto_20180510_1458.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_com/migrations/0003_auto_20180510_1458.py -------------------------------------------------------------------------------- /pis_com/migrations/0003_customer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_com/migrations/0003_customer.py -------------------------------------------------------------------------------- /pis_com/migrations/0004_auto_20180504_1944.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_com/migrations/0004_auto_20180504_1944.py -------------------------------------------------------------------------------- /pis_com/migrations/0005_merge_20180510_1508.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_com/migrations/0005_merge_20180510_1508.py -------------------------------------------------------------------------------- /pis_com/migrations/0006_auto_20180604_2203.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_com/migrations/0006_auto_20180604_2203.py -------------------------------------------------------------------------------- /pis_com/migrations/0007_adminconfiguration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_com/migrations/0007_adminconfiguration.py -------------------------------------------------------------------------------- /pis_com/migrations/0008_customer_person_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_com/migrations/0008_customer_person_type.py -------------------------------------------------------------------------------- /pis_com/migrations/0009_auto_20190202_1638.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_com/migrations/0009_auto_20190202_1638.py -------------------------------------------------------------------------------- /pis_com/migrations/0010_auto_20190202_1715.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_com/migrations/0010_auto_20190202_1715.py -------------------------------------------------------------------------------- /pis_com/migrations/0011_feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_com/migrations/0011_feedback.py -------------------------------------------------------------------------------- /pis_com/migrations/0012_feedback_retailer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_com/migrations/0012_feedback_retailer.py -------------------------------------------------------------------------------- /pis_com/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pis_com/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_com/models.py -------------------------------------------------------------------------------- /pis_com/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pis_com/templatetags/template_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_com/templatetags/template_tags.py -------------------------------------------------------------------------------- /pis_com/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_com/tests.py -------------------------------------------------------------------------------- /pis_com/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_com/urls.py -------------------------------------------------------------------------------- /pis_com/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_com/views.py -------------------------------------------------------------------------------- /pis_employees/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pis_employees/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_employees/admin.py -------------------------------------------------------------------------------- /pis_employees/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_employees/apps.py -------------------------------------------------------------------------------- /pis_employees/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_employees/forms.py -------------------------------------------------------------------------------- /pis_employees/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_employees/migrations/0001_initial.py -------------------------------------------------------------------------------- /pis_employees/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pis_employees/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_employees/models.py -------------------------------------------------------------------------------- /pis_employees/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_employees/tests.py -------------------------------------------------------------------------------- /pis_employees/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_employees/urls.py -------------------------------------------------------------------------------- /pis_employees/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_employees/views.py -------------------------------------------------------------------------------- /pis_expense/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pis_expense/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_expense/admin.py -------------------------------------------------------------------------------- /pis_expense/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_expense/apps.py -------------------------------------------------------------------------------- /pis_expense/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_expense/forms.py -------------------------------------------------------------------------------- /pis_expense/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_expense/migrations/0001_initial.py -------------------------------------------------------------------------------- /pis_expense/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pis_expense/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_expense/models.py -------------------------------------------------------------------------------- /pis_expense/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_expense/tests.py -------------------------------------------------------------------------------- /pis_expense/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_expense/urls.py -------------------------------------------------------------------------------- /pis_expense/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_expense/views.py -------------------------------------------------------------------------------- /pis_ledger/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pis_ledger/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_ledger/admin.py -------------------------------------------------------------------------------- /pis_ledger/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_ledger/apps.py -------------------------------------------------------------------------------- /pis_ledger/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_ledger/forms.py -------------------------------------------------------------------------------- /pis_ledger/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_ledger/migrations/0001_initial.py -------------------------------------------------------------------------------- /pis_ledger/migrations/0002_auto_20180519_1137.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_ledger/migrations/0002_auto_20180519_1137.py -------------------------------------------------------------------------------- /pis_ledger/migrations/0003_auto_20180608_2252.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_ledger/migrations/0003_auto_20180608_2252.py -------------------------------------------------------------------------------- /pis_ledger/migrations/0004_paymentledger_payment_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_ledger/migrations/0004_paymentledger_payment_type.py -------------------------------------------------------------------------------- /pis_ledger/migrations/0005_ledger_person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_ledger/migrations/0005_ledger_person.py -------------------------------------------------------------------------------- /pis_ledger/migrations/0006_auto_20190202_1659.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_ledger/migrations/0006_auto_20190202_1659.py -------------------------------------------------------------------------------- /pis_ledger/migrations/0007_auto_20190807_0813.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_ledger/migrations/0007_auto_20190807_0813.py -------------------------------------------------------------------------------- /pis_ledger/migrations/0008_ledger_dated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_ledger/migrations/0008_ledger_dated.py -------------------------------------------------------------------------------- /pis_ledger/migrations/0009_ledger_invoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_ledger/migrations/0009_ledger_invoice.py -------------------------------------------------------------------------------- /pis_ledger/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pis_ledger/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_ledger/models.py -------------------------------------------------------------------------------- /pis_ledger/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_ledger/tests.py -------------------------------------------------------------------------------- /pis_ledger/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_ledger/urls.py -------------------------------------------------------------------------------- /pis_ledger/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_ledger/views.py -------------------------------------------------------------------------------- /pis_product/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pis_product/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_product/admin.py -------------------------------------------------------------------------------- /pis_product/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_product/apps.py -------------------------------------------------------------------------------- /pis_product/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_product/forms.py -------------------------------------------------------------------------------- /pis_product/logs_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_product/logs_view.py -------------------------------------------------------------------------------- /pis_product/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_product/migrations/0001_initial.py -------------------------------------------------------------------------------- /pis_product/migrations/0002_purchasedproduct_quantity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_product/migrations/0002_purchasedproduct_quantity.py -------------------------------------------------------------------------------- /pis_product/migrations/0003_auto_20180412_1827.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_product/migrations/0003_auto_20180412_1827.py -------------------------------------------------------------------------------- /pis_product/migrations/0004_extraitems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_product/migrations/0004_extraitems.py -------------------------------------------------------------------------------- /pis_product/migrations/0005_extraitems_discount_percentage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_product/migrations/0005_extraitems_discount_percentage.py -------------------------------------------------------------------------------- /pis_product/migrations/0006_purchasedproduct_price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_product/migrations/0006_purchasedproduct_price.py -------------------------------------------------------------------------------- /pis_product/migrations/0007_claimedproduct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_product/migrations/0007_claimedproduct.py -------------------------------------------------------------------------------- /pis_product/migrations/0008_auto_20180608_2226.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_product/migrations/0008_auto_20180608_2226.py -------------------------------------------------------------------------------- /pis_product/migrations/0009_stockin_stockout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_product/migrations/0009_stockin_stockout.py -------------------------------------------------------------------------------- /pis_product/migrations/0010_product_bar_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_product/migrations/0010_product_bar_code.py -------------------------------------------------------------------------------- /pis_product/migrations/0011_product_unit_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_product/migrations/0011_product_unit_type.py -------------------------------------------------------------------------------- /pis_product/migrations/0012_auto_20190122_1615.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_product/migrations/0012_auto_20190122_1615.py -------------------------------------------------------------------------------- /pis_product/migrations/0013_auto_20190626_1733.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_product/migrations/0013_auto_20190626_1733.py -------------------------------------------------------------------------------- /pis_product/migrations/0014_auto_20190626_1817.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_product/migrations/0014_auto_20190626_1817.py -------------------------------------------------------------------------------- /pis_product/migrations/0015_auto_20190626_1819.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_product/migrations/0015_auto_20190626_1819.py -------------------------------------------------------------------------------- /pis_product/migrations/0016_auto_20190809_0544.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_product/migrations/0016_auto_20190809_0544.py -------------------------------------------------------------------------------- /pis_product/migrations/0017_stockout_purchased_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_product/migrations/0017_stockout_purchased_item.py -------------------------------------------------------------------------------- /pis_product/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pis_product/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_product/models.py -------------------------------------------------------------------------------- /pis_product/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_product/tests.py -------------------------------------------------------------------------------- /pis_product/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_product/urls.py -------------------------------------------------------------------------------- /pis_product/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_product/views.py -------------------------------------------------------------------------------- /pis_retailer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pis_retailer/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_retailer/admin.py -------------------------------------------------------------------------------- /pis_retailer/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_retailer/apps.py -------------------------------------------------------------------------------- /pis_retailer/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_retailer/forms.py -------------------------------------------------------------------------------- /pis_retailer/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_retailer/migrations/0001_initial.py -------------------------------------------------------------------------------- /pis_retailer/migrations/0002_retailer_logo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_retailer/migrations/0002_retailer_logo.py -------------------------------------------------------------------------------- /pis_retailer/migrations/0003_retaileruser_role_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_retailer/migrations/0003_retaileruser_role_type.py -------------------------------------------------------------------------------- /pis_retailer/migrations/0004_auto_20180623_1526.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_retailer/migrations/0004_auto_20180623_1526.py -------------------------------------------------------------------------------- /pis_retailer/migrations/0005_auto_20190208_1417.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_retailer/migrations/0005_auto_20190208_1417.py -------------------------------------------------------------------------------- /pis_retailer/migrations/0006_retailer_package_expiry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_retailer/migrations/0006_retailer_package_expiry.py -------------------------------------------------------------------------------- /pis_retailer/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pis_retailer/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_retailer/models.py -------------------------------------------------------------------------------- /pis_retailer/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_retailer/tests.py -------------------------------------------------------------------------------- /pis_retailer/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_retailer/urls.py -------------------------------------------------------------------------------- /pis_retailer/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_retailer/views.py -------------------------------------------------------------------------------- /pis_sales/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pis_sales/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_sales/admin.py -------------------------------------------------------------------------------- /pis_sales/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_sales/apps.py -------------------------------------------------------------------------------- /pis_sales/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_sales/forms.py -------------------------------------------------------------------------------- /pis_sales/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_sales/migrations/0001_initial.py -------------------------------------------------------------------------------- /pis_sales/migrations/0002_auto_20180412_1713.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_sales/migrations/0002_auto_20180412_1713.py -------------------------------------------------------------------------------- /pis_sales/migrations/0003_auto_20180412_1714.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_sales/migrations/0003_auto_20180412_1714.py -------------------------------------------------------------------------------- /pis_sales/migrations/0004_saleshistory_remaining_payment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_sales/migrations/0004_saleshistory_remaining_payment.py -------------------------------------------------------------------------------- /pis_sales/migrations/0005_customer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_sales/migrations/0005_customer.py -------------------------------------------------------------------------------- /pis_sales/migrations/0006_auto_20180427_1724.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_sales/migrations/0006_auto_20180427_1724.py -------------------------------------------------------------------------------- /pis_sales/migrations/0007_auto_20180504_1940.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_sales/migrations/0007_auto_20180504_1940.py -------------------------------------------------------------------------------- /pis_sales/migrations/0007_saleshistory_extra_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_sales/migrations/0007_saleshistory_extra_items.py -------------------------------------------------------------------------------- /pis_sales/migrations/0008_merge_20180509_1348.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_sales/migrations/0008_merge_20180509_1348.py -------------------------------------------------------------------------------- /pis_sales/migrations/0009_saleshistory_paid_amount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_sales/migrations/0009_saleshistory_paid_amount.py -------------------------------------------------------------------------------- /pis_sales/migrations/0010_auto_20190622_1207.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_sales/migrations/0010_auto_20190622_1207.py -------------------------------------------------------------------------------- /pis_sales/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pis_sales/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_sales/models.py -------------------------------------------------------------------------------- /pis_sales/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_sales/tests.py -------------------------------------------------------------------------------- /pis_sales/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_sales/urls.py -------------------------------------------------------------------------------- /pis_sales/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_sales/views.py -------------------------------------------------------------------------------- /pis_supplier/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pis_supplier/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_supplier/admin.py -------------------------------------------------------------------------------- /pis_supplier/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_supplier/apps.py -------------------------------------------------------------------------------- /pis_supplier/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_supplier/forms.py -------------------------------------------------------------------------------- /pis_supplier/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_supplier/migrations/0001_initial.py -------------------------------------------------------------------------------- /pis_supplier/migrations/0002_auto_20190801_1250.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_supplier/migrations/0002_auto_20190801_1250.py -------------------------------------------------------------------------------- /pis_supplier/migrations/0003_auto_20190806_0807.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_supplier/migrations/0003_auto_20190806_0807.py -------------------------------------------------------------------------------- /pis_supplier/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pis_supplier/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_supplier/models.py -------------------------------------------------------------------------------- /pis_supplier/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_supplier/tests.py -------------------------------------------------------------------------------- /pis_supplier/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_supplier/urls.py -------------------------------------------------------------------------------- /pis_supplier/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/pis_supplier/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-2.7.10 2 | -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/create_feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/create_feedback.html -------------------------------------------------------------------------------- /templates/customer/create_customer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/customer/create_customer.html -------------------------------------------------------------------------------- /templates/customer/customer_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/customer/customer_list.html -------------------------------------------------------------------------------- /templates/customer/update_customer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/customer/update_customer.html -------------------------------------------------------------------------------- /templates/employee/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/employee/create.html -------------------------------------------------------------------------------- /templates/employee/employee_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/employee/employee_list.html -------------------------------------------------------------------------------- /templates/employee/employee_salary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/employee/employee_salary.html -------------------------------------------------------------------------------- /templates/employee/employee_salary_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/employee/employee_salary_detail.html -------------------------------------------------------------------------------- /templates/expense/create_expense.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/expense/create_expense.html -------------------------------------------------------------------------------- /templates/expense/expense_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/expense/expense_list.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/ledger/add_customer_ledger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/ledger/add_customer_ledger.html -------------------------------------------------------------------------------- /templates/ledger/add_payment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/ledger/add_payment.html -------------------------------------------------------------------------------- /templates/ledger/create_ledger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/ledger/create_ledger.html -------------------------------------------------------------------------------- /templates/ledger/customer_ledger_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/ledger/customer_ledger_details.html -------------------------------------------------------------------------------- /templates/ledger/customer_ledger_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/ledger/customer_ledger_list.html -------------------------------------------------------------------------------- /templates/ledger/payment_ledger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/ledger/payment_ledger.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/logs/daily_stock_logs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/logs/daily_stock_logs.html -------------------------------------------------------------------------------- /templates/logs/monthly_stock_logs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/logs/monthly_stock_logs.html -------------------------------------------------------------------------------- /templates/products/add_product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/products/add_product.html -------------------------------------------------------------------------------- /templates/products/add_product_items.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/products/add_product_items.html -------------------------------------------------------------------------------- /templates/products/add_stock_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/products/add_stock_item.html -------------------------------------------------------------------------------- /templates/products/claimed_product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/products/claimed_product.html -------------------------------------------------------------------------------- /templates/products/claimed_product_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/products/claimed_product_list.html -------------------------------------------------------------------------------- /templates/products/item_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/products/item_details.html -------------------------------------------------------------------------------- /templates/products/product_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/products/product_list.html -------------------------------------------------------------------------------- /templates/products/purchased_extraitems.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/products/purchased_extraitems.html -------------------------------------------------------------------------------- /templates/products/purchased_items.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/products/purchased_items.html -------------------------------------------------------------------------------- /templates/products/stock_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/products/stock_detail.html -------------------------------------------------------------------------------- /templates/products/stock_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/products/stock_list.html -------------------------------------------------------------------------------- /templates/products/stock_out.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/products/stock_out.html -------------------------------------------------------------------------------- /templates/products/stockin_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/products/stockin_list.html -------------------------------------------------------------------------------- /templates/products/stockout_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/products/stockout_list.html -------------------------------------------------------------------------------- /templates/products/update_product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/products/update_product.html -------------------------------------------------------------------------------- /templates/products/update_stockin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/products/update_stockin.html -------------------------------------------------------------------------------- /templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/register.html -------------------------------------------------------------------------------- /templates/reports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/reports.html -------------------------------------------------------------------------------- /templates/sales/create_invoice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/sales/create_invoice.html -------------------------------------------------------------------------------- /templates/sales/invoice_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/sales/invoice_detail.html -------------------------------------------------------------------------------- /templates/sales/invoice_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/sales/invoice_list.html -------------------------------------------------------------------------------- /templates/sales/update_invoice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/sales/update_invoice.html -------------------------------------------------------------------------------- /templates/supplier/add_supplier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/supplier/add_supplier.html -------------------------------------------------------------------------------- /templates/supplier/add_supplier_statement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/supplier/add_supplier_statement.html -------------------------------------------------------------------------------- /templates/supplier/list_supplier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/supplier/list_supplier.html -------------------------------------------------------------------------------- /templates/supplier/list_supplier_statement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/supplier/list_supplier_statement.html -------------------------------------------------------------------------------- /templates/supplier/payment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/supplier/payment.html -------------------------------------------------------------------------------- /templates/supplier/update_supplier_statement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janzaheer/partum_inventory/HEAD/templates/supplier/update_supplier_statement.html --------------------------------------------------------------------------------