├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .htaccess ├── .styleci.yml ├── README.md ├── app ├── Account.php ├── Adjustment.php ├── Attendance.php ├── Biller.php ├── Brand.php ├── CashRegister.php ├── Category.php ├── Console │ └── Kernel.php ├── Coupon.php ├── Currency.php ├── Customer.php ├── CustomerGroup.php ├── Delivery.php ├── Department.php ├── Deposit.php ├── Employee.php ├── Exceptions │ └── Handler.php ├── Expense.php ├── ExpenseCategory.php ├── GeneralSetting.php ├── GiftCard.php ├── GiftCardRecharge.php ├── Holiday.php ├── HrmSetting.php ├── Http │ ├── Controllers │ │ ├── AccountsController.php │ │ ├── AdjustmentController.php │ │ ├── AttendanceController.php │ │ ├── Auth │ │ │ ├── ConfirmPasswordController.php │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── VerificationController.php │ │ ├── BillerController.php │ │ ├── BrandController.php │ │ ├── CashRegisterController.php │ │ ├── CategoryController.php │ │ ├── Controller.php │ │ ├── CouponController.php │ │ ├── CurrencyController.php │ │ ├── CustomerController.php │ │ ├── CustomerGroupController.php │ │ ├── DeliveryController.php │ │ ├── DepartmentController.php │ │ ├── EmployeeController.php │ │ ├── ExpenseCategoryController.php │ │ ├── ExpenseController.php │ │ ├── GiftCardController.php │ │ ├── HolidayController.php │ │ ├── HomeController.php │ │ ├── LanguageController.php │ │ ├── MoneyTransferController.php │ │ ├── NotificationController.php │ │ ├── PayrollController.php │ │ ├── ProductController.php │ │ ├── PurchaseController.php │ │ ├── QuotationController.php │ │ ├── ReportController.php │ │ ├── ReturnController.php │ │ ├── ReturnPurchaseController.php │ │ ├── RoleController.php │ │ ├── SaleController.php │ │ ├── SettingController.php │ │ ├── StockCountController.php │ │ ├── SupplierController.php │ │ ├── TaxController.php │ │ ├── TestController.php │ │ ├── TransferController.php │ │ ├── UnitController.php │ │ ├── UserController.php │ │ ├── VariantController.php │ │ └── WarehouseController.php │ ├── Kernel.php │ └── Middleware │ │ ├── Active.php │ │ ├── Authenticate.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Language.php ├── MoneyTransfer.php ├── Notifications │ └── SendNotification.php ├── Payment.php ├── PaymentWithCheque.php ├── PaymentWithCreditCard.php ├── PaymentWithGiftCard.php ├── PaymentWithPaypal.php ├── Payroll.php ├── PosSetting.php ├── Product.php ├── ProductAdjustment.php ├── ProductPurchase.php ├── ProductQuotation.php ├── ProductReturn.php ├── ProductTransfer.php ├── ProductVariant.php ├── Product_Sale.php ├── Product_Supplier.php ├── Product_Warehouse.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Purchase.php ├── PurchaseProductReturn.php ├── Quotation.php ├── ReturnPurchase.php ├── Returns.php ├── Roles.php ├── Sale.php ├── StockCount.php ├── StockCount │ └── .php ├── Supplier.php ├── Tax.php ├── Transfer.php ├── Unit.php ├── User.php ├── Variant.php └── Warehouse.php ├── artisan ├── bootstrap ├── app.php └── cache │ ├── packages.php │ └── services.php ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2018_02_17_060412_create_categories_table.php │ ├── 2018_02_20_035727_create_brands_table.php │ ├── 2018_02_25_100635_create_suppliers_table.php │ ├── 2018_02_27_101619_create_warehouse_table.php │ ├── 2018_03_03_040448_create_units_table.php │ ├── 2018_03_04_041317_create_taxes_table.php │ ├── 2018_03_10_061915_create_customer_groups_table.php │ ├── 2018_03_10_090534_create_customers_table.php │ ├── 2018_03_11_095547_create_billers_table.php │ ├── 2018_04_05_054401_create_products_table.php │ ├── 2018_04_06_133606_create_purchases_table.php │ ├── 2018_04_06_154600_create_product_purchases_table.php │ ├── 2018_04_06_154915_create_product_warhouse_table.php │ ├── 2018_04_10_085927_create_sales_table.php │ ├── 2018_04_10_090133_create_product_sales_table.php │ ├── 2018_04_10_090254_create_payments_table.php │ ├── 2018_04_10_090341_create_payment_with_cheque_table.php │ ├── 2018_04_10_090509_create_payment_with_credit_card_table.php │ ├── 2018_04_13_121436_create_quotation_table.php │ ├── 2018_04_13_122324_create_product_quotation_table.php │ ├── 2018_04_14_121802_create_transfers_table.php │ ├── 2018_04_14_121913_create_product_transfer_table.php │ ├── 2018_05_13_082847_add_payment_id_and_change_sale_id_to_payments_table.php │ ├── 2018_05_13_090906_change_customer_id_to_payment_with_credit_card_table.php │ ├── 2018_05_20_054532_create_adjustments_table.php │ ├── 2018_05_20_054859_create_product_adjustments_table.php │ ├── 2018_05_21_163419_create_returns_table.php │ ├── 2018_05_21_163443_create_product_returns_table.php │ ├── 2018_06_02_050905_create_roles_table.php │ ├── 2018_06_02_073430_add_columns_to_users_table.php │ ├── 2018_06_03_053738_create_permission_tables.php │ ├── 2018_06_21_063736_create_pos_setting_table.php │ ├── 2018_06_21_094155_add_user_id_to_sales_table.php │ ├── 2018_06_21_101529_add_user_id_to_purchases_table.php │ ├── 2018_06_21_103512_add_user_id_to_transfers_table.php │ ├── 2018_06_23_061058_add_user_id_to_quotations_table.php │ ├── 2018_06_23_082427_add_is_deleted_to_users_table.php │ ├── 2018_06_25_043308_change_email_to_users_table.php │ ├── 2018_07_06_115449_create_general_settings_table.php │ ├── 2018_07_08_043944_create_languages_table.php │ ├── 2018_07_11_102144_add_user_id_to_returns_table.php │ ├── 2018_07_11_102334_add_user_id_to_payments_table.php │ ├── 2018_07_22_130541_add_digital_to_products_table.php │ ├── 2018_07_24_154250_create_deliveries_table.php │ ├── 2018_08_16_053336_create_expense_categories_table.php │ ├── 2018_08_17_115415_create_expenses_table.php │ ├── 2018_08_18_050418_create_gift_cards_table.php │ ├── 2018_08_19_063119_create_payment_with_gift_card_table.php │ ├── 2018_08_25_042333_create_gift_card_recharges_table.php │ ├── 2018_08_25_101354_add_deposit_expense_to_customers_table.php │ ├── 2018_08_26_043801_create_deposits_table.php │ ├── 2018_09_02_044042_add_keybord_active_to_pos_setting_table.php │ ├── 2018_09_09_092713_create_payment_with_paypal_table.php │ ├── 2018_09_10_051254_add_currency_to_general_settings_table.php │ ├── 2018_10_22_084118_add_biller_and_store_id_to_users_table.php │ ├── 2018_10_26_034927_create_coupons_table.php │ ├── 2018_10_27_090857_add_coupon_to_sales_table.php │ ├── 2018_11_07_070155_add_currency_position_to_general_settings_table.php │ ├── 2018_11_19_094650_add_combo_to_products_table.php │ ├── 2018_12_09_043712_create_accounts_table.php │ ├── 2018_12_17_112253_add_is_default_to_accounts_table.php │ ├── 2018_12_19_103941_add_account_id_to_payments_table.php │ ├── 2018_12_20_065900_add_account_id_to_expenses_table.php │ ├── 2018_12_20_082753_add_account_id_to_returns_table.php │ ├── 2018_12_26_064330_create_return_purchases_table.php │ ├── 2018_12_26_144708_create_purchase_product_return_table.php │ ├── 2018_12_27_110018_create_departments_table.php │ ├── 2018_12_30_054844_create_employees_table.php │ ├── 2018_12_31_125210_create_payrolls_table.php │ ├── 2018_12_31_150446_add_department_id_to_employees_table.php │ ├── 2019_01_01_062708_add_user_id_to_expenses_table.php │ ├── 2019_01_02_075644_create_hrm_settings_table.php │ ├── 2019_01_02_090334_create_attendances_table.php │ ├── 2019_01_27_160956_add_three_columns_to_general_settings_table.php │ ├── 2019_02_15_183303_create_stock_counts_table.php │ ├── 2019_02_17_101604_add_is_adjusted_to_stock_counts_table.php │ ├── 2019_04_13_101707_add_tax_no_to_customers_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_10_14_111455_create_holidays_table.php │ ├── 2019_11_13_145619_add_is_variant_to_products_table.php │ ├── 2019_11_13_150206_create_product_variants_table.php │ ├── 2019_11_13_153828_create_variants_table.php │ ├── 2019_11_25_134041_add_qty_to_product_variants_table.php │ ├── 2019_11_25_134922_add_variant_id_to_product_purchases_table.php │ ├── 2019_11_25_145341_add_variant_id_to_product_warehouse_table.php │ ├── 2019_11_29_182201_add_variant_id_to_product_sales_table.php │ ├── 2019_12_04_121311_add_variant_id_to_product_quotation_table.php │ ├── 2019_12_05_123802_add_variant_id_to_product_transfer_table.php │ ├── 2019_12_08_114954_add_variant_id_to_product_returns_table.php │ ├── 2019_12_08_203146_add_variant_id_to_purchase_product_return_table.php │ ├── 2020_02_28_103340_create_money_transfers_table.php │ ├── 2020_07_01_193151_add_image_to_categories_table.php │ ├── 2020_09_26_130426_add_user_id_to_deliveries_table.php │ ├── 2020_10_11_125457_create_cash_registers_table.php │ ├── 2020_10_13_155019_add_cash_register_id_to_sales_table.php │ ├── 2020_10_13_172624_add_cash_register_id_to_returns_table.php │ ├── 2020_10_17_212338_add_cash_register_id_to_payments_table.php │ ├── 2020_10_18_124200_add_cash_register_id_to_expenses_table.php │ ├── 2020_10_21_121632_add_developed_by_to_general_settings_table.php │ ├── 2020_10_30_135557_create_notifications_table.php │ ├── 2020_11_01_044954_create_currencies_table.php │ ├── 2020_11_01_140736_add_price_to_product_warehouse_table.php │ ├── 2020_11_02_050633_add_is_diff_price_to_products_table.php │ ├── 2020_11_09_055222_add_user_id_to_customers_table.php │ └── 2020_11_17_054806_add_invoice_format_to_general_settings_table.php └── seeds │ └── DatabaseSeeder.php ├── dbBackup └── salepropos.sql ├── index.php ├── manifest.json ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── beep │ ├── beep-07.mp3 │ └── beep-timber.mp3 ├── css │ ├── app.css │ ├── custom-default.css │ ├── dropzone.css │ ├── grasp_mobile_progress_circle-1.0.0.min.css │ ├── style.css │ └── style.default.css ├── data │ └── countries.json ├── documents │ ├── Faston mahfil 18.docx │ ├── Poster mahfil 18.docx │ ├── adjustment │ │ └── ic_launcher_accountsaddress2-web.png │ ├── delivery │ │ ├── dr-20180725-062514.jpeg │ │ ├── dr-20180725-062514.jpg │ │ └── dr-20180725-070232.jpg │ ├── purchase │ │ ├── 20190307_112134.jpg │ │ ├── 31933873_10209026509098802_8170668289815478272_n.jpg │ │ ├── 90662b70-28e2-4d0b-99c3-78243d641e1c.jpg │ │ ├── Customer Renewal Reminder.csv │ │ ├── Online Game ports from PISOWIFI.txt │ │ ├── bb.png │ │ ├── course list.txt │ │ ├── ic_launcher_accountsaddress1-web.png │ │ ├── ic_launcher_accountsaddress2-web.png │ │ ├── pr-20180530-035141.jpg │ │ ├── screen_splash.png │ │ └── sr-20180530-051817.jpg │ └── transfer │ │ └── 30947.jpg ├── downloads │ ├── 2018-02-25.csv │ ├── 2018-02-26.csv │ ├── 2018-02-27.csv │ ├── 2018-02-28.csv │ ├── 2018-03-11.csv │ ├── Biller-2018-03-12.csv │ ├── Warehouse- 28-02-2018.csv │ ├── customer- 11-03-2018.csv │ ├── customer_group- 10-03-2018.csv │ ├── product- 03-04-2018.csv │ ├── product- 10-03-2018.csv │ ├── tax- 04-03-2018.csv │ └── unit- 03-03-2018.csv ├── favicon.ico ├── icons │ ├── icon-128x128.png │ ├── icon-144x144.png │ ├── icon-152x152.png │ ├── icon-192x192.png │ ├── icon-384x384.png │ ├── icon-512x512.png │ ├── icon-72x72.png │ └── icon-96x96.png ├── images │ ├── 29497618_1212833785513817_2887668216967394137_n.jpg │ ├── biller │ │ ├── aks.jpg │ │ ├── mogaTel.jpg │ │ └── x.png │ ├── brand │ │ ├── Apple.jpg │ │ ├── EGWorldwide.jpg │ │ ├── HP.jpg │ │ ├── Oppo.jpg │ │ ├── Repair.png │ │ ├── cocacola.png │ │ └── samsung.jpg │ ├── category.zip │ ├── category │ │ ├── 20200701093146.jpg │ │ └── 20201012055703.png │ ├── employee │ │ ├── davitrepairge.jpg │ │ ├── johngmailcom.jpg │ │ ├── junnunahmed2018gmailcom.jpg │ │ └── testgmailcom.jpg │ ├── gift_card │ │ ├── back.png │ │ └── front.jpg │ ├── product.zip │ ├── product │ │ ├── 1572515542825e4e2e433-e29b-4ca1-abb2-aad995574f2a_1.e4dc9f20c1d8b2999d66556ae0aa1600.jpeg │ │ ├── 1572759415477product-page-fresh-breath.jpg │ │ ├── 1577165120189220px-Blue_Tshirt.jpg │ │ ├── PoloShirt.jpg │ │ ├── SamsungGalaxyS9.jpg │ │ ├── Shoe.jpg │ │ ├── TshirtCrewNeck.png │ │ ├── airphonesamsung.jpg │ │ ├── images.zip │ │ ├── iphoneX.jpg │ │ ├── lalacrybabydoll.jpg │ │ ├── ldms.jpg │ │ ├── lychee.jpg │ │ ├── mac airbook.jpg │ │ ├── mango.jpg │ │ ├── potato.jpeg │ │ ├── toponemouse.jpg │ │ └── zummXD2dvAtI.png │ ├── supplier │ │ ├── LyfPublication.jpg │ │ ├── globaltouch.jpg │ │ └── mogaFruit.jpg │ └── zummXD2dvAtI.png ├── img │ ├── avatar-1.jpg │ ├── avatar-2.jpg │ ├── avatar-3.jpg │ ├── avatar-4.jpg │ ├── avatar-5.jpg │ ├── avatar-6.jpg │ ├── favicon.ico │ ├── mockup1.jpg │ ├── mockup2.jpg │ ├── mockup3.jpg │ ├── mockup4.jpg │ ├── mockup5.jpg │ ├── mockup6.jpg │ ├── mockup7.jpg │ └── template-mac.png ├── index.php ├── js │ ├── app.js │ ├── charts-custom.js │ ├── charts-home.js │ ├── dropzone-backup.js │ ├── dropzone.js │ ├── front.js │ ├── grasp_mobile_progress_circle-1.0.0.min.js │ └── script.js ├── logo │ └── logo.png ├── offline.html ├── product │ └── files │ │ ├── 1532329769.pdf │ │ ├── 1532330693.JPG │ │ ├── 1533454125.jpg │ │ ├── 1557750536.png │ │ ├── 1558148661.jpg │ │ ├── 1558148709.jpg │ │ ├── 1560782987.jpg │ │ ├── 1562562533.png │ │ ├── 1565730789.jpg │ │ └── 1568270817.jpg ├── purchase │ └── documents │ │ └── 30947.jpg ├── quotation │ └── documents │ │ ├── 49156-Z-Energy-Caltex-Lubricants-Guide-FA.pdf │ │ └── Project proposal-2011331018.pdf ├── robots.txt ├── sale │ └── documents │ │ ├── aurabrosur_organizasyon_01.jpg │ │ ├── barberia.jpg │ │ └── screen_splash.png ├── sample_file │ ├── sample_biller.csv │ ├── sample_brand.csv │ ├── sample_category.csv │ ├── sample_customer.csv │ ├── sample_customer_group.csv │ ├── sample_expense_category.csv │ ├── sample_products.csv │ ├── sample_purchase_products.csv │ ├── sample_sale_products.csv │ ├── sample_supplier.csv │ ├── sample_tax.csv │ ├── sample_transfer_products.csv │ ├── sample_unit.csv │ └── sample_warehouse.csv ├── stock_count │ ├── 20190228-124939.csv │ ├── 20190415-091614.csv │ ├── 20190420-121520.csv │ ├── 20190421-083130.csv │ ├── 20190421-092009.csv │ ├── 20190422-010940.csv │ ├── 20190425-045102.csv │ ├── 20190426-103126.csv │ ├── 20190430-044132.csv │ ├── 20190430-083244.csv │ ├── 20190430-083313.csv │ ├── 20190501-084744.csv │ ├── 20190503-073700.csv │ ├── 20190505-063355.csv │ ├── 20190505-090344.csv │ ├── 20190506-032528.csv │ ├── 20190506-094203.csv │ ├── 20190506-111841.csv │ ├── 20190506-112237.csv │ ├── 20190508-075606.csv │ ├── 20190508-083839.csv │ ├── 20190508-084037.csv │ ├── 20190508-124229.csv │ ├── 20190510-022129.csv │ ├── 20190513-062605.csv │ ├── 20190513-095139.csv │ ├── 20190516-123903.csv │ ├── 20190517-040459.csv │ ├── 20190518-014708.csv │ ├── 20190519-030006.csv │ ├── 20190519-030106.csv │ ├── 20190519-043032.csv │ ├── 20190519-045258.csv │ ├── 20190524-024144.csv │ ├── 20190524-055205.csv │ ├── 20190524-095058.csv │ ├── 20190526-012835.csv │ ├── 20190529-063922.csv │ ├── 20190529-122149.csv │ ├── 20190530-053324.csv │ ├── 20190602-093457.csv │ ├── 20190603-122833.csv │ ├── 20190607-063145.csv │ ├── 20190607-093748.csv │ ├── 20190607-124055.csv │ ├── 20190608-055308.csv │ ├── 20190611-100023.csv │ ├── 20190611-100133.csv │ ├── 20190612-021911.csv │ ├── 20190613-033122.csv │ ├── 20190618-103532.csv │ ├── 20190621-055739.csv │ ├── 20190621-073713.csv │ ├── 20190622-024704.csv │ ├── 20190622-093342.csv │ ├── 20190622-093725.csv │ ├── 20190622-094019.csv │ ├── 20190622-094042.csv │ ├── 20190623-102545.csv │ ├── 20190627-110948.csv │ ├── 20190701-014820.csv │ ├── 20190701-022853.csv │ ├── 20190702-091504.csv │ ├── 20190703-032154.csv │ ├── 20190707-065355.csv │ ├── 20190708-124742.csv │ ├── 20190713-124900.csv │ ├── 20190717-055735.csv │ ├── 20190717-073215.csv │ ├── 20190722-033720.csv │ ├── 20190722-082218.csv │ ├── 20190724-050121.csv │ ├── 20190727-104033.csv │ ├── 20190729-063137.csv │ ├── 20190730-024010.csv │ ├── 20190730-031942.csv │ ├── 20190801-053004.csv │ ├── 20190801-053602.csv │ ├── 20190806-011121.csv │ ├── 20190807-124518.csv │ ├── 20190808-011959.csv │ ├── 20190808-110844.csv │ ├── 20190812-040058.csv │ ├── 20190814-011543.csv │ ├── 20190814-023056.csv │ ├── 20190814-023420.csv │ ├── 20190814-023727.csv │ ├── 20190815-011755.csv │ ├── 20190815-064948.csv │ ├── 20190818-033203.csv │ ├── 20190823-012739.csv │ ├── 20190824-020949.csv │ ├── 20190824-021358.csv │ ├── 20190824-055511.csv │ ├── 20190827-012452.csv │ ├── 20190901-012032.csv │ ├── 20190901-012235.csv │ ├── 20190901-012357.csv │ ├── 20190903-125720.csv │ ├── 20190905-082155.csv │ ├── 20190907-101059.csv │ ├── 20190911-110949.csv │ ├── 20190911-120457.csv │ ├── 20190913-021002.csv │ ├── 20190913-095248.csv │ └── 20190915-021320.csv ├── transfer │ └── documents │ │ └── Project proposal-2011331018.pdf ├── vendor │ ├── bootstrap-toggle │ │ ├── .gitignore │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── css │ │ │ ├── bootstrap-toggle.css │ │ │ ├── bootstrap-toggle.min.css │ │ │ ├── bootstrap2-toggle.css │ │ │ └── bootstrap2-toggle.min.css │ │ ├── doc │ │ │ ├── header.png │ │ │ ├── nyt.png │ │ │ ├── nytdev.svg │ │ │ ├── script.js │ │ │ └── stylesheet.css │ │ ├── index.html │ │ ├── js │ │ │ ├── bootstrap-toggle.js │ │ │ ├── bootstrap-toggle.min.js │ │ │ ├── bootstrap-toggle.min.js.map │ │ │ ├── bootstrap2-toggle.js │ │ │ ├── bootstrap2-toggle.min.js │ │ │ └── bootstrap2-toggle.min.js.map │ │ └── package.json │ ├── bootstrap │ │ ├── css │ │ │ ├── awesome-bootstrap-checkbox.css │ │ │ ├── bootstrap-datepicker.min.css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-select.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ └── js │ │ │ ├── bootstrap-select.min.js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ ├── chart.js │ │ ├── Chart.bundle.js │ │ ├── Chart.bundle.min.js │ │ ├── Chart.js │ │ └── Chart.min.js │ ├── datatable │ │ ├── buttons.bootstrap4.min.css │ │ ├── buttons.bootstrap4.min.js │ │ ├── buttons.colVis.min.js │ │ ├── buttons.html5.min.js │ │ ├── buttons.print.min.js │ │ ├── dataTables.bootstrap4.min.css │ │ ├── dataTables.bootstrap4.min.js │ │ ├── dataTables.buttons.min.js │ │ ├── dataTables.checkboxes.css │ │ ├── dataTables.checkboxes.min.js │ │ ├── dataTables.select.min.js │ │ ├── jquery.dataTables.min.js │ │ ├── pdfmake.min.js │ │ ├── select.bootstrap4.min.css │ │ ├── sum().js │ │ └── vfs_fonts.js │ ├── daterange │ │ ├── css │ │ │ ├── daterangepicker.css │ │ │ └── daterangepicker.min.css │ │ ├── index.html │ │ └── js │ │ │ ├── daterangepicker.min.js │ │ │ ├── jquery.3.2.1.min.js │ │ │ ├── knockout-3.4.2.js │ │ │ └── moment.min.js │ ├── dripicons │ │ ├── fonts │ │ │ ├── dripicons-v2.eot │ │ │ ├── dripicons-v2.svg │ │ │ ├── dripicons-v2.ttf │ │ │ └── dripicons-v2.woff │ │ └── webfont.css │ ├── dropzone │ │ └── dropzone.js │ ├── font-awesome │ │ ├── HELP-US-OUT.txt │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ ├── jquery-timepicker │ │ ├── .eslintrc.json │ │ ├── .gitignore │ │ ├── GruntFile.js │ │ ├── README.md │ │ ├── __tests__ │ │ │ └── timepicker-test.js │ │ ├── bower.json │ │ ├── composer.json │ │ ├── index.html │ │ ├── jquery.timepicker.css │ │ ├── jquery.timepicker.d.ts │ │ ├── jquery.timepicker.js │ │ ├── jquery.timepicker.min.css │ │ ├── jquery.timepicker.min.js │ │ ├── jt.timepicker.jquery.json │ │ ├── lib │ │ │ ├── bootstrap-datepicker.css │ │ │ ├── bootstrap-datepicker.js │ │ │ ├── glyphicons-halflings.png │ │ │ ├── screenshot.png │ │ │ ├── site.css │ │ │ └── site.js │ │ └── package.json │ ├── jquery-validation │ │ ├── additional-methods.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ └── localization │ │ │ ├── messages_ar.js │ │ │ ├── messages_az.js │ │ │ ├── messages_bg.js │ │ │ ├── messages_bn_BD.js │ │ │ ├── messages_ca.js │ │ │ ├── messages_cs.js │ │ │ ├── messages_da.js │ │ │ ├── messages_de.js │ │ │ ├── messages_el.js │ │ │ ├── messages_es.js │ │ │ ├── messages_es_AR.js │ │ │ ├── messages_es_PE.js │ │ │ ├── messages_et.js │ │ │ ├── messages_eu.js │ │ │ ├── messages_fa.js │ │ │ ├── messages_fi.js │ │ │ ├── messages_fr.js │ │ │ ├── messages_ge.js │ │ │ ├── messages_gl.js │ │ │ ├── messages_he.js │ │ │ ├── messages_hr.js │ │ │ ├── messages_hu.js │ │ │ ├── messages_hy_AM.js │ │ │ ├── messages_id.js │ │ │ ├── messages_is.js │ │ │ ├── messages_it.js │ │ │ ├── messages_ja.js │ │ │ ├── messages_ka.js │ │ │ ├── messages_kk.js │ │ │ ├── messages_ko.js │ │ │ ├── messages_lt.js │ │ │ ├── messages_lv.js │ │ │ ├── messages_mk.js │ │ │ ├── messages_my.js │ │ │ ├── messages_nl.js │ │ │ ├── messages_no.js │ │ │ ├── messages_pl.js │ │ │ ├── messages_pt_BR.js │ │ │ ├── messages_pt_PT.js │ │ │ ├── messages_ro.js │ │ │ ├── messages_ru.js │ │ │ ├── messages_sd.js │ │ │ ├── messages_si.js │ │ │ ├── messages_sk.js │ │ │ ├── messages_sl.js │ │ │ ├── messages_sr.js │ │ │ ├── messages_sr_lat.js │ │ │ ├── messages_sv.js │ │ │ ├── messages_th.js │ │ │ ├── messages_tj.js │ │ │ ├── messages_tr.js │ │ │ ├── messages_uk.js │ │ │ ├── messages_ur.js │ │ │ ├── messages_vi.js │ │ │ ├── messages_zh.js │ │ │ ├── messages_zh_TW.js │ │ │ ├── methods_de.js │ │ │ ├── methods_es_CL.js │ │ │ ├── methods_fi.js │ │ │ ├── methods_nl.js │ │ │ └── methods_pt.js │ ├── jquery.cookie │ │ ├── MIT-LICENSE.txt │ │ ├── component.json │ │ ├── cookie.jquery.json │ │ └── jquery.cookie.js │ ├── jquery │ │ ├── bootstrap-datepicker.min.js │ │ ├── core.js │ │ ├── jquery-ui.min.js │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── jquery.slim.js │ │ ├── jquery.slim.min.js │ │ └── jquery.timepicker.min.js │ ├── keyboard │ │ ├── css │ │ │ ├── images │ │ │ │ ├── disabled.svg │ │ │ │ ├── enabled.svg │ │ │ │ └── keyboard.svg │ │ │ ├── keyboard-basic.css │ │ │ ├── keyboard-dark.css │ │ │ ├── keyboard-previewkeyset.css │ │ │ └── keyboard.css │ │ └── js │ │ │ ├── jquery.keyboard.extension-all.js │ │ │ ├── jquery.keyboard.extension-altkeyspopup.js │ │ │ ├── jquery.keyboard.extension-autocomplete.js │ │ │ ├── jquery.keyboard.extension-caret.js │ │ │ ├── jquery.keyboard.extension-extender.js │ │ │ ├── jquery.keyboard.extension-mobile.js │ │ │ ├── jquery.keyboard.extension-navigation.js │ │ │ ├── jquery.keyboard.extension-previewkeyset.js │ │ │ ├── jquery.keyboard.extension-scramble.js │ │ │ ├── jquery.keyboard.extension-typing.js │ │ │ ├── jquery.keyboard.js │ │ │ └── jquery.mousewheel.js │ ├── malihu-custom-scrollbar-plugin │ │ ├── jquery.mCustomScrollbar.concat.min.js │ │ ├── jquery.mCustomScrollbar.css │ │ ├── jquery.mCustomScrollbar.js │ │ └── mCSB_buttons.png │ ├── popper.js │ │ ├── esm │ │ │ ├── popper-utils.js │ │ │ ├── popper-utils.min.js │ │ │ ├── popper.js │ │ │ └── popper.min.js │ │ ├── popper-utils.js │ │ ├── popper-utils.min.js │ │ ├── popper.js │ │ ├── popper.min.js │ │ └── umd │ │ │ ├── popper-utils.js │ │ │ ├── popper-utils.min.js │ │ │ ├── popper.js │ │ │ └── popper.min.js │ ├── stripe │ │ └── checkout.js │ └── tinymce │ │ ├── LICENSE.TXT │ │ ├── changelog.txt │ │ └── js │ │ ├── tinymce.min.js │ │ └── tinymce │ │ ├── jquery.tinymce.min.js │ │ ├── langs │ │ └── readme.md │ │ ├── license.txt │ │ ├── plugins │ │ ├── advlist │ │ │ └── plugin.min.js │ │ ├── anchor │ │ │ └── plugin.min.js │ │ ├── autolink │ │ │ └── plugin.min.js │ │ ├── autoresize │ │ │ └── plugin.min.js │ │ ├── autosave │ │ │ └── plugin.min.js │ │ ├── bbcode │ │ │ └── plugin.min.js │ │ ├── charmap │ │ │ └── plugin.min.js │ │ ├── code │ │ │ └── plugin.min.js │ │ ├── codesample │ │ │ ├── css │ │ │ │ └── prism.css │ │ │ └── plugin.min.js │ │ ├── colorpicker │ │ │ └── plugin.min.js │ │ ├── contextmenu │ │ │ └── plugin.min.js │ │ ├── directionality │ │ │ └── plugin.min.js │ │ ├── emoticons │ │ │ ├── img │ │ │ │ ├── smiley-cool.gif │ │ │ │ ├── smiley-cry.gif │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ ├── smiley-frown.gif │ │ │ │ ├── smiley-innocent.gif │ │ │ │ ├── smiley-kiss.gif │ │ │ │ ├── smiley-laughing.gif │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ ├── smiley-sealed.gif │ │ │ │ ├── smiley-smile.gif │ │ │ │ ├── smiley-surprised.gif │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ ├── smiley-undecided.gif │ │ │ │ ├── smiley-wink.gif │ │ │ │ └── smiley-yell.gif │ │ │ └── plugin.min.js │ │ ├── fullpage │ │ │ └── plugin.min.js │ │ ├── fullscreen │ │ │ └── plugin.min.js │ │ ├── help │ │ │ ├── img │ │ │ │ └── logo.png │ │ │ └── plugin.min.js │ │ ├── hr │ │ │ └── plugin.min.js │ │ ├── image │ │ │ └── plugin.min.js │ │ ├── imagetools │ │ │ └── plugin.min.js │ │ ├── importcss │ │ │ └── plugin.min.js │ │ ├── insertdatetime │ │ │ └── plugin.min.js │ │ ├── legacyoutput │ │ │ └── plugin.min.js │ │ ├── link │ │ │ └── plugin.min.js │ │ ├── lists │ │ │ └── plugin.min.js │ │ ├── media │ │ │ └── plugin.min.js │ │ ├── nonbreaking │ │ │ └── plugin.min.js │ │ ├── noneditable │ │ │ └── plugin.min.js │ │ ├── pagebreak │ │ │ └── plugin.min.js │ │ ├── paste │ │ │ └── plugin.min.js │ │ ├── preview │ │ │ └── plugin.min.js │ │ ├── print │ │ │ └── plugin.min.js │ │ ├── save │ │ │ └── plugin.min.js │ │ ├── searchreplace │ │ │ └── plugin.min.js │ │ ├── spellchecker │ │ │ └── plugin.min.js │ │ ├── tabfocus │ │ │ └── plugin.min.js │ │ ├── table │ │ │ └── plugin.min.js │ │ ├── template │ │ │ └── plugin.min.js │ │ ├── textcolor │ │ │ └── plugin.min.js │ │ ├── textpattern │ │ │ └── plugin.min.js │ │ ├── toc │ │ │ └── plugin.min.js │ │ ├── visualblocks │ │ │ ├── css │ │ │ │ └── visualblocks.css │ │ │ └── plugin.min.js │ │ ├── visualchars │ │ │ └── plugin.min.js │ │ └── wordcount │ │ │ └── plugin.min.js │ │ ├── skins │ │ └── lightgray │ │ │ ├── content.inline.min.css │ │ │ ├── content.min.css │ │ │ ├── content.mobile.min.css │ │ │ ├── fonts │ │ │ ├── tinymce-mobile.woff │ │ │ ├── tinymce-small.eot │ │ │ ├── tinymce-small.svg │ │ │ ├── tinymce-small.ttf │ │ │ ├── tinymce-small.woff │ │ │ ├── tinymce.eot │ │ │ ├── tinymce.svg │ │ │ ├── tinymce.ttf │ │ │ └── tinymce.woff │ │ │ ├── img │ │ │ ├── anchor.gif │ │ │ ├── loader.gif │ │ │ ├── object.gif │ │ │ └── trans.gif │ │ │ ├── skin.min.css │ │ │ └── skin.mobile.min.css │ │ ├── themes │ │ ├── inlite │ │ │ └── theme.min.js │ │ ├── mobile │ │ │ └── theme.min.js │ │ └── modern │ │ │ └── theme.min.js │ │ └── tinymce.min.js └── web.config ├── read_me ├── assets │ ├── css │ │ ├── documenter_style.css │ │ ├── img │ │ │ ├── info.png │ │ │ └── warning.png │ │ └── jquery.mCustomScrollbar.css │ ├── images │ │ ├── accounting_1.png │ │ ├── adjustment1.png │ │ ├── adjustment2.png │ │ ├── biller1.png │ │ ├── brand1.png │ │ ├── category1.png │ │ ├── category10.png │ │ ├── category2.png │ │ ├── category3.png │ │ ├── category4.png │ │ ├── category5.png │ │ ├── category6.png │ │ ├── category7.png │ │ ├── category8.png │ │ ├── category9.png │ │ ├── customer1.png │ │ ├── customer2.png │ │ ├── customer_group1.png │ │ ├── dashboard1.png │ │ ├── dashboard2.png │ │ ├── dashboard3.png │ │ ├── dashboard4.png │ │ ├── dashboard5.png │ │ ├── delivery1.png │ │ ├── expense1.png │ │ ├── expense2.png │ │ ├── gift_card1.png │ │ ├── gift_card2.png │ │ ├── install1.png │ │ ├── install2.png │ │ ├── install3.png │ │ ├── install4.png │ │ ├── logo.png │ │ ├── mail1.png │ │ ├── pos1.png │ │ ├── pos_printer1.png │ │ ├── pos_printer2.png │ │ ├── pos_printer3.png │ │ ├── pos_printer4.png │ │ ├── pos_printer5.png │ │ ├── pos_printer6.png │ │ ├── pos_printer7.png │ │ ├── pos_printer8.png │ │ ├── pos_printer9.png │ │ ├── product1.png │ │ ├── product2.png │ │ ├── product3.png │ │ ├── purchase1.png │ │ ├── purchase2.png │ │ ├── purchase3.png │ │ ├── purchase4.png │ │ ├── purchase5.png │ │ ├── purchase6.png │ │ ├── purchase7.png │ │ ├── quotation1.png │ │ ├── quotation2.png │ │ ├── quotation3.png │ │ ├── return1.png │ │ ├── role1.png │ │ ├── sale1.png │ │ ├── sale2.png │ │ ├── sale3.png │ │ ├── sale4.png │ │ ├── sale5.png │ │ ├── sale6.png │ │ ├── supplier1.png │ │ ├── tax1.png │ │ ├── transfer1.png │ │ ├── translation.png │ │ ├── unit1.png │ │ ├── update1.png │ │ ├── update2.png │ │ ├── update3.png │ │ ├── update4.png │ │ ├── update5.png │ │ ├── update6.png │ │ ├── update7.png │ │ ├── update_env.png │ │ ├── user1.png │ │ └── warehouse1.png │ ├── js │ │ ├── google-code-prettify │ │ │ ├── prettify.css │ │ │ └── prettify.js │ │ ├── jquery.easing.js │ │ ├── jquery.js │ │ ├── jquery.mCustomScrollbar.js │ │ ├── jquery.scrollTo.js │ │ └── script.js │ └── malihu-custom-scrollbar-plugin │ │ ├── jquery.mCustomScrollbar.concat.min.js │ │ ├── jquery.mCustomScrollbar.css │ │ ├── jquery.mCustomScrollbar.js │ │ └── mCSB_buttons.png └── index.html ├── resources ├── assets │ ├── js │ │ ├── app.js │ │ ├── bootstrap.js │ │ └── components │ │ │ └── ExampleComponent.vue │ └── sass │ │ ├── _variables.scss │ │ └── app.scss ├── js │ ├── app.js │ ├── bootstrap.js │ └── components │ │ └── ExampleComponent.vue ├── lang │ ├── ar │ │ └── file.php │ ├── de │ │ └── file.php │ ├── en │ │ ├── auth.php │ │ ├── file.php │ │ ├── language.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ ├── es │ │ └── file.php │ ├── fr │ │ └── file.php │ ├── hi │ │ └── file.php │ ├── id │ │ └── file.php │ ├── it │ │ └── file.php │ ├── lao │ │ └── file.php │ ├── nl │ │ └── file.php │ ├── pt_BR │ │ └── file.php │ ├── ru │ │ └── file.php │ ├── tr │ │ └── file.php │ └── vi │ │ └── file.php ├── sass │ ├── _variables.scss │ └── app.scss └── views │ ├── account │ ├── account_statement.blade.php │ ├── balance_sheet.blade.php │ └── index.blade.php │ ├── adjustment │ ├── create.blade.php │ ├── edit.blade.php │ └── index.blade.php │ ├── attendance │ └── index.blade.php │ ├── auth │ ├── login.blade.php │ ├── passwords │ │ ├── email.blade.php │ │ └── reset.blade.php │ ├── register-backup.blade.php │ ├── register.blade.php │ └── verify.blade.php │ ├── barcode.blade.php │ ├── biller │ ├── create.blade.php │ ├── edit.blade.php │ └── index.blade.php │ ├── brand │ └── create.blade.php │ ├── cash_register │ └── index.blade.php │ ├── category │ └── create.blade.php │ ├── charts.blade.bak │ ├── charts.blade.php │ ├── checkout.blade.php │ ├── coupon │ └── index.blade.php │ ├── currency │ └── index.blade.php │ ├── customer │ ├── create.blade.php │ ├── edit.blade.php │ └── index.blade.php │ ├── customer_group │ └── create.blade.php │ ├── customer_index.blade.php │ ├── delivery │ └── index.blade.php │ ├── department │ └── index.blade.php │ ├── employee │ ├── create.blade.php │ └── index.blade.php │ ├── expense │ └── index.blade.php │ ├── expense_category │ └── index.blade.php │ ├── forms.blade.bak │ ├── forms.blade.php │ ├── gift_card │ └── index.blade.php │ ├── holiday │ ├── index.blade.php │ └── my_holiday.blade.php │ ├── home.blade.php │ ├── index.blade.php │ ├── layout │ ├── main.blade.php │ └── top-head.blade.php │ ├── layouts │ └── app.blade.php │ ├── login.blade.php │ ├── mail │ ├── biller_create.blade.php │ ├── customer_create.blade.php │ ├── customer_deposit.blade.php │ ├── delivery_challan.blade.php │ ├── delivery_details.blade.php │ ├── gift_card_create.blade.php │ ├── gift_card_recharge.blade.php │ ├── holiday_approve.blade.php │ ├── payment_details.blade.php │ ├── payroll_details.blade.php │ ├── quotation_details.blade.php │ ├── return_details.blade.php │ ├── sale_details.blade.php │ ├── supplier_create.blade.php │ └── user_details.blade.php │ ├── money_transfer │ └── index.blade.php │ ├── payroll │ └── index.blade.php │ ├── product │ ├── create.blade.php │ ├── edit.blade.php │ ├── gallery_image.blade.php │ ├── index.blade.php │ └── print_barcode.blade.php │ ├── purchase │ ├── create.blade.php │ ├── edit.blade.php │ ├── import.blade.php │ └── index.blade.php │ ├── quotation │ ├── create.blade.php │ ├── create_purchase.blade.php │ ├── create_sale.blade.php │ ├── edit.blade.php │ └── index.blade.php │ ├── register.blade.php │ ├── report │ ├── best_seller.blade.php │ ├── customer_report.blade.php │ ├── daily_purchase.blade.php │ ├── daily_sale.blade.php │ ├── due_report.blade.php │ ├── monthly_purchase.blade.php │ ├── monthly_sale.blade.php │ ├── payment_report.blade.php │ ├── product_report.blade.php │ ├── profit_loss.blade.php │ ├── purchase_report.blade.php │ ├── qty_alert_report.blade.php │ ├── sale_report.blade.php │ ├── supplier_report.blade.php │ ├── user_report.blade.php │ ├── warehouse_report.blade.php │ └── warehouse_stock.blade.php │ ├── return │ ├── create.blade.php │ ├── edit.blade.php │ └── index.blade.php │ ├── return_purchase │ ├── create.blade.php │ ├── edit.blade.php │ └── index.blade.php │ ├── role │ ├── create.blade.php │ └── permission.blade.php │ ├── sale │ ├── create.blade.php │ ├── create_sale.blade.php │ ├── edit.blade.php │ ├── import.blade.php │ ├── index.blade.php │ ├── invoice.blade.php │ └── pos.blade.php │ ├── setting │ ├── create_sms.blade.php │ ├── general_setting.blade.php │ ├── hrm_setting.blade.php │ ├── mail_setting.blade.php │ ├── pos_setting.blade.php │ └── sms_setting.blade.php │ ├── stock_count │ ├── index.blade.php │ └── qty_adjustment.blade.php │ ├── supplier │ ├── create.blade.php │ ├── edit.blade.php │ └── index.blade.php │ ├── tables.blade.php │ ├── tax │ └── create.blade.php │ ├── transfer │ ├── create.blade.php │ ├── edit.blade.php │ ├── import.blade.php │ └── index.blade.php │ ├── unit │ └── create.blade.php │ ├── user │ ├── create.blade.php │ ├── edit.blade.php │ ├── index.blade.php │ ├── my_transaction.blade.php │ └── profile.blade.php │ ├── warehouse │ └── create.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── service-worker.js ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ └── testing │ │ └── .gitignore └── logs │ └── laravel.log ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php ├── webpack.mix.js └── word list.txt /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | insert_final_newline = true 7 | indent_style = space 8 | indent_size = 4 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | 14 | [*.{yml,yaml}] 15 | indent_size = 2 16 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.css linguist-vendored 3 | *.scss linguist-vendored 4 | *.js linguist-vendored 5 | CHANGELOG.md export-ignore 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /public/hot 3 | /public/storage 4 | /storage/*.key 5 | /vendor 6 | .env 7 | .env.backup 8 | .phpunit.result.cache 9 | Homestead.json 10 | Homestead.yaml 11 | npm-debug.log 12 | yarn-error.log 13 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | 2 | 3 | Options -MultiViews -Indexes 4 | 5 | 6 | RewriteEngine On 7 | 8 | # Handle Authorization Header 9 | RewriteCond %{HTTP:Authorization} . 10 | RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] 11 | 12 | # Redirect Trailing Slashes If Not A Folder... 13 | RewriteCond %{REQUEST_FILENAME} !-d 14 | RewriteCond %{REQUEST_URI} (.+)/$ 15 | RewriteRule ^ %1 [L,R=301] 16 | 17 | # Handle Front Controller... 18 | RewriteCond %{REQUEST_FILENAME} !-d 19 | RewriteCond %{REQUEST_FILENAME} !-f 20 | RewriteRule ^ index.php [L] 21 | 22 | -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | php: 2 | preset: laravel 3 | disabled: 4 | - unused_use 5 | finder: 6 | not-name: 7 | - index.php 8 | - server.php 9 | js: 10 | finder: 11 | not-name: 12 | - webpack.mix.js 13 | css: true 14 | -------------------------------------------------------------------------------- /app/Account.php: -------------------------------------------------------------------------------- 1 | hasMany('App\Sale'); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/Brand.php: -------------------------------------------------------------------------------- 1 | hasMany('App/Product'); 17 | 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/CashRegister.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\User'); 14 | } 15 | 16 | public function warehouse() 17 | { 18 | return $this->belongsTo('App\Warehouse'); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/Category.php: -------------------------------------------------------------------------------- 1 | hasMany('App\Product'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /app/Coupon.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\User'); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/CustomerGroup.php: -------------------------------------------------------------------------------- 1 | belongsTo("App\Sale"); 16 | } 17 | 18 | public function user() 19 | { 20 | return $this->belongsTo("App\User"); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /app/Department.php: -------------------------------------------------------------------------------- 1 | hasMany('App\Payroll'); 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /app/Expense.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Warehouse'); 16 | } 17 | 18 | public function expenseCategory() { 19 | return $this->belongsTo('App\ExpenseCategory'); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/ExpenseCategory.php: -------------------------------------------------------------------------------- 1 | hasMany('App\Expense'); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /app/GeneralSetting.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\User'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /app/HrmSetting.php: -------------------------------------------------------------------------------- 1 | 1]); 16 | $language->code = $locale; 17 | $language->save();*/ 18 | return Redirect::back(); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/Http/Controllers/NotificationController.php: -------------------------------------------------------------------------------- 1 | user_id); 15 | $user->notify(new SendNotification($request)); 16 | return redirect()->back()->with('message', 'Notification send successfully'); 17 | } 18 | 19 | public function markAsRead() 20 | { 21 | Auth::user()->unreadNotifications->markAsRead(); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /app/Http/Controllers/VariantController.php: -------------------------------------------------------------------------------- 1 | isActive()){ 20 | return $next($request); 21 | } 22 | 23 | return redirect('/dashboard'); 24 | 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- 1 | expectsJson()) { 18 | return route('login'); 19 | } 20 | } 21 | } -------------------------------------------------------------------------------- /app/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- 1 | check()) { 22 | return redirect(RouteServiceProvider::HOME); 23 | } 24 | 25 | return $next($request); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Account'); 14 | } 15 | 16 | public function toAccount() 17 | { 18 | return $this->belongsTo('App\Account'); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/Payment.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Employee'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /app/PosSetting.php: -------------------------------------------------------------------------------- 1 | where([ 14 | ['product_id', $product_id], 15 | ['variant_id', $variant_id] 16 | ]); 17 | } 18 | 19 | public function scopeFindExactProductWithCode($query, $product_id, $item_code) 20 | { 21 | return $query->where([ 22 | ['product_id', $product_id], 23 | ['item_code', $item_code], 24 | ]); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/Product_Sale.php: -------------------------------------------------------------------------------- 1 | 'App\Policies\ModelPolicy', 17 | ]; 18 | 19 | /** 20 | * Register any authentication / authorization services. 21 | * 22 | * @return void 23 | */ 24 | public function boot() 25 | { 26 | $this->registerPolicies(); 27 | 28 | // 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- 1 | [ 17 | 'App\Listeners\EventListener', 18 | ], 19 | ]; 20 | 21 | /** 22 | * Register any events for your application. 23 | * 24 | * @return void 25 | */ 26 | public function boot() 27 | { 28 | parent::boot(); 29 | 30 | // 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /app/Purchase.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Supplier'); 17 | } 18 | 19 | public function warehouse() 20 | { 21 | return $this->belongsTo('App\Warehouse'); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /app/PurchaseProductReturn.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Supplier'); 17 | } 18 | 19 | public function warehouse() 20 | { 21 | return $this->belongsTo('App\Warehouse'); 22 | } 23 | 24 | public function user() 25 | { 26 | return $this->belongsTo('App\User'); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /app/Roles.php: -------------------------------------------------------------------------------- 1 | hasMany('App/Product'); 20 | 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /app/Tax.php: -------------------------------------------------------------------------------- 1 | hasMany('App/Product'); 16 | 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /app/Transfer.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Warehouse', 'from_warehouse_id'); 17 | } 18 | 19 | public function toWarehouse() 20 | { 21 | return $this->belongsTo('App\Warehouse', 'to_warehouse_id'); 22 | } 23 | 24 | public function user() 25 | { 26 | return $this->belongsTo('App\User', 'user_id'); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /app/Unit.php: -------------------------------------------------------------------------------- 1 | hasMany('App/Product'); 17 | 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/User.php: -------------------------------------------------------------------------------- 1 | is_active; 25 | } 26 | 27 | public function holiday() { 28 | return $this->hasMany('App\Holiday'); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /app/Variant.php: -------------------------------------------------------------------------------- 1 | belongsToMany('App\Variant', 'product_variants'); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /app/Warehouse.php: -------------------------------------------------------------------------------- 1 | hasMany('App\Product'); 17 | 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | *.sqlite-journal 3 | -------------------------------------------------------------------------------- /database/migrations/2018_06_21_094155_add_user_id_to_sales_table.php: -------------------------------------------------------------------------------- 1 | integer('user_id')->after('reference_no'); 18 | }); 19 | } 20 | 21 | /** 22 | * Reverse the migrations. 23 | * 24 | * @return void 25 | */ 26 | public function down() 27 | { 28 | Schema::table('sales', function (Blueprint $table) { 29 | // 30 | }); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /database/migrations/2018_06_23_082427_add_is_deleted_to_users_table.php: -------------------------------------------------------------------------------- 1 | boolean('is_deleted'); 18 | }); 19 | } 20 | 21 | /** 22 | * Reverse the migrations. 23 | * 24 | * @return void 25 | */ 26 | public function down() 27 | { 28 | Schema::table('users', function (Blueprint $table) { 29 | // 30 | }); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /database/migrations/2018_06_25_043308_change_email_to_users_table.php: -------------------------------------------------------------------------------- 1 | dropUnique('users_email_unique'); 18 | }); 19 | } 20 | 21 | /** 22 | * Reverse the migrations. 23 | * 24 | * @return void 25 | */ 26 | public function down() 27 | { 28 | Schema::table('users', function (Blueprint $table) { 29 | // 30 | }); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /database/migrations/2018_07_08_043944_create_languages_table.php: -------------------------------------------------------------------------------- 1 | increments('id'); 18 | $table->string('code'); 19 | $table->timestamps(); 20 | }); 21 | } 22 | 23 | /** 24 | * Reverse the migrations. 25 | * 26 | * @return void 27 | */ 28 | public function down() 29 | { 30 | Schema::dropIfExists('languages'); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /database/migrations/2018_07_11_102144_add_user_id_to_returns_table.php: -------------------------------------------------------------------------------- 1 | integer('user_id')->after('reference_no'); 18 | }); 19 | } 20 | 21 | /** 22 | * Reverse the migrations. 23 | * 24 | * @return void 25 | */ 26 | public function down() 27 | { 28 | Schema::table('returns', function (Blueprint $table) { 29 | // 30 | }); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /database/migrations/2018_09_02_044042_add_keybord_active_to_pos_setting_table.php: -------------------------------------------------------------------------------- 1 | boolean('keybord_active')->after('product_number'); 13 | }); 14 | } 15 | 16 | /** 17 | * Reverse the migrations. 18 | * 19 | * @return void 20 | */ 21 | public function down() 22 | { 23 | Schema::table('pos_setting', function (Blueprint $table) { 24 | // 25 | }); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /database/migrations/2018_12_27_110018_create_departments_table.php: -------------------------------------------------------------------------------- 1 | increments('id'); 13 | $table->string('name'); 14 | $table->boolean('is_active'); 15 | $table->timestamps(); 16 | }); 17 | } 18 | 19 | public function down() 20 | { 21 | Schema::dropIfExists('departments'); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /database/migrations/2019_11_13_153828_create_variants_table.php: -------------------------------------------------------------------------------- 1 | increments('id'); 14 | $table->string('name'); 15 | $table->timestamps(); 16 | }); 17 | } 18 | 19 | /** 20 | * Reverse the migrations. 21 | * 22 | * @return void 23 | */ 24 | public function down() 25 | { 26 | Schema::dropIfExists('variants'); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call(UsersTableSeeder::class); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | 3 | Options -MultiViews -Indexes 4 | 5 | 6 | RewriteEngine On 7 | 8 | # Handle Authorization Header 9 | RewriteCond %{HTTP:Authorization} . 10 | RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] 11 | 12 | # Redirect Trailing Slashes If Not A Folder... 13 | RewriteCond %{REQUEST_FILENAME} !-d 14 | RewriteCond %{REQUEST_URI} (.+)/$ 15 | RewriteRule ^ %1 [L,R=301] 16 | 17 | # Handle Front Controller... 18 | RewriteCond %{REQUEST_FILENAME} !-d 19 | RewriteCond %{REQUEST_FILENAME} !-f 20 | RewriteRule ^ index.php [L] 21 | 22 | -------------------------------------------------------------------------------- /public/beep/beep-07.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/beep/beep-07.mp3 -------------------------------------------------------------------------------- /public/beep/beep-timber.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/beep/beep-timber.mp3 -------------------------------------------------------------------------------- /public/css/grasp_mobile_progress_circle-1.0.0.min.css: -------------------------------------------------------------------------------- 1 | .gmpc{position:relative}.gmpc-percent-text{position:absolute;width:100%;top:50%;left:50%;transform:translate(-50%,-50%);text-align:center} 2 | -------------------------------------------------------------------------------- /public/documents/Faston mahfil 18.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/documents/Faston mahfil 18.docx -------------------------------------------------------------------------------- /public/documents/Poster mahfil 18.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/documents/Poster mahfil 18.docx -------------------------------------------------------------------------------- /public/documents/adjustment/ic_launcher_accountsaddress2-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/documents/adjustment/ic_launcher_accountsaddress2-web.png -------------------------------------------------------------------------------- /public/documents/delivery/dr-20180725-062514.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/documents/delivery/dr-20180725-062514.jpeg -------------------------------------------------------------------------------- /public/documents/delivery/dr-20180725-062514.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/documents/delivery/dr-20180725-062514.jpg -------------------------------------------------------------------------------- /public/documents/delivery/dr-20180725-070232.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/documents/delivery/dr-20180725-070232.jpg -------------------------------------------------------------------------------- /public/documents/purchase/20190307_112134.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/documents/purchase/20190307_112134.jpg -------------------------------------------------------------------------------- /public/documents/purchase/31933873_10209026509098802_8170668289815478272_n.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/documents/purchase/31933873_10209026509098802_8170668289815478272_n.jpg -------------------------------------------------------------------------------- /public/documents/purchase/90662b70-28e2-4d0b-99c3-78243d641e1c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/documents/purchase/90662b70-28e2-4d0b-99c3-78243d641e1c.jpg -------------------------------------------------------------------------------- /public/documents/purchase/Customer Renewal Reminder.csv: -------------------------------------------------------------------------------- 1 | "#","Name","Company Name","Company Address","Customer Since","Expired Date","Email","Phone" 2 | "1","forman ali","Bkash","muradpur, chittagong","26-02-2019","27-02-2019","forman@gmail.com","1231" 3 | "2","Abuilla","Uniliver","khulshi","26-02-2019","27-02-2019","abuilla@gmail.com","123123" -------------------------------------------------------------------------------- /public/documents/purchase/Online Game ports from PISOWIFI.txt: -------------------------------------------------------------------------------- 1 | Protocol From port To port Description Actions 2 | UDP 5060 5061 New port priority 3 | TCP 30101 30101 Mobile Legends TCP 4 | TCP 30021 30021 Mobile Legends TCP 5 | UDP 9992 9992 Mobile Legends UDP 6 | UDP 30190 30190 Mobile Legends UDP 7 | TCP 9339 9339 Clash of Clans 8 | TCP 11311 11311 ROS 9 | UDP 88 88 PUBG UDP 10 | UDP 3074 3074 PUBG UDP 11 | TCP 3074 3074 PUBG TCP 12 | UDP 500 500 PUBG TCP 13 | UDP 3544 3544 PUBG UDP 14 | UDP 4500 4500 PUBG UDP 15 | UDP 10000 10150 Arena of Valor -------------------------------------------------------------------------------- /public/documents/purchase/bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/documents/purchase/bb.png -------------------------------------------------------------------------------- /public/documents/purchase/course list.txt: -------------------------------------------------------------------------------- 1 | Theory: 2 | CSE 333 - 3 credits 3 | Lab: 4 | CSE 366 - 1.5 credits 5 | CSE 440 - 1.5 credits 6 | CSE 450 - 2 credits 7 | 8 | Total: 9 | Theory - 3 Credits 10 | Lab - 5 Credits 11 | 12 | Money: 13 | S2 : addmission - 1805. fine - 30 ReAdmission - 1500 = 3335 14 | Std6 : (3 * 95) + (5 * 145) = 285 + 725 = 1010 15 | Total = 4345 Taka -------------------------------------------------------------------------------- /public/documents/purchase/ic_launcher_accountsaddress1-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/documents/purchase/ic_launcher_accountsaddress1-web.png -------------------------------------------------------------------------------- /public/documents/purchase/ic_launcher_accountsaddress2-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/documents/purchase/ic_launcher_accountsaddress2-web.png -------------------------------------------------------------------------------- /public/documents/purchase/pr-20180530-035141.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/documents/purchase/pr-20180530-035141.jpg -------------------------------------------------------------------------------- /public/documents/purchase/screen_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/documents/purchase/screen_splash.png -------------------------------------------------------------------------------- /public/documents/purchase/sr-20180530-051817.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/documents/purchase/sr-20180530-051817.jpg -------------------------------------------------------------------------------- /public/documents/transfer/30947.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/documents/transfer/30947.jpg -------------------------------------------------------------------------------- /public/downloads/2018-02-25.csv: -------------------------------------------------------------------------------- 1 | "Brand Title"," Image" 2 | singer,555.jpg 3 | toshiba,555.jpg 4 | vision,555.jpg 5 | samsung,27583370_10155231509542967_913541089_n.jpg 6 | -------------------------------------------------------------------------------- /public/downloads/2018-02-26.csv: -------------------------------------------------------------------------------- 1 | "Brand Title"," Image" 2 | singer,555.jpg 3 | toshiba,555.jpg 4 | -------------------------------------------------------------------------------- /public/downloads/2018-02-27.csv: -------------------------------------------------------------------------------- 1 | name," image"," company_name"," vat_number"," email"," phone_number"," address"," city"," state"," postal_code"," country" 2 | "dhiman nangsha",10371400_948199798527194_5543418455903970676_n.jpg,lioncoders,12345,dhiman@lion-coders.com,12345,"kajir deuri",chittagong,,,bangladesh 3 | moinul,,nangsha-coders,1234,moinul@lion-coders.com,1234,jamalkhan,chittagong,,,bangladesh 4 | tariq,,"us garments",,tariq@lion-coders.com,123321,khulshi,chittagong,,,bangladesh 5 | Milan,555.jpg,"Tecdiary IT Solutions",,saleem@tecdiary.com,1234,fsfadf,fdsd,wp,malaysia,malaysia 6 | Milan,555.jpg,"Tecdiary IT Solutions",,"anda@tecdiary.com ",1234,fsfadf,fdsd,wp,malaysia,malaysia 7 | Milan,555.jpg,"Tecdiary IT Solutions",,"anda@tecdiary.com ",1234,fsfadf,fdsd,wp,malaysia,malaysia 8 | -------------------------------------------------------------------------------- /public/downloads/2018-02-28.csv: -------------------------------------------------------------------------------- 1 | name," phone"," email"," address" 2 | warehouse1,32131,war1@gmail.com,"khatungonj chittagong" 3 | warehouse2,,,"choumohoni 4 | chittagong" 5 | warehouse3,3123131,war3@gmail.com,"bandar chittagong" 6 | -------------------------------------------------------------------------------- /public/downloads/2018-03-11.csv: -------------------------------------------------------------------------------- 1 | name," company_name"," email"," phone_number"," address"," city"," state"," postal_code"," country" 2 | dhiman,lioncoders,dhiman@lion-coders.com,241341,ffsafasdfa,chittagong,,,bangladesh 3 | mainul,lioncoders,mainul@lion-coders.com,33213123414,jamalkhan,chittagong,chittagong,,bangladesh 4 | tariq,lioncoders,tariq@lion-coders.com,243141,khulshi,chittagong,,,bangladesh 5 | -------------------------------------------------------------------------------- /public/downloads/Biller-2018-03-12.csv: -------------------------------------------------------------------------------- 1 | name," image"," company_name"," vat_number"," email"," phone_number"," address"," city"," state"," postal_code"," country" 2 | dhiman,10371400_948199798527194_5543418455903970676_n.jpg,lioncoders,,mainul@lion-coders.com,321321321,jamalkhan,chittagong,,,bangladesh 3 | tariq,27583370_10155231509542967_913541089_n.jpg,nangsha,,dhiman@lion-coders.com,3123,jamalkhan,chittagong,,,bangladesh 4 | yousuf,555.jpg,kernel,,yousuf@kernel.com,2342141247,"venda masjid",chittagong,,,bangladesh 5 | -------------------------------------------------------------------------------- /public/downloads/Warehouse- 28-02-2018.csv: -------------------------------------------------------------------------------- 1 | name," phone"," email"," address" 2 | warehouse1,32131,war1@gmail.com,"khatungonj chittagong" 3 | warehouse2,,,"choumohoni 4 | chittagong" 5 | warehouse3,3123131,war3@gmail.com,"bandar chittagong" 6 | -------------------------------------------------------------------------------- /public/downloads/customer- 11-03-2018.csv: -------------------------------------------------------------------------------- 1 | customer_group," name"," company_name"," email"," phone_number"," address"," city"," state"," postal_code"," country" 2 | general,dhiman,lioncoders,dhiman@lion-coders.com,241341,ffsafasdfa,chittagong,,,bangladesh 3 | Distributors,mainul,lioncoders,mainul@lion-coders.com,33213123414,jamalkhan,chittagong,chittagong,,bangladesh 4 | reseller,tariq,lioncoders,tariq@lion-coders.com,243141,khulshi,chittagong,,,bangladesh 5 | -------------------------------------------------------------------------------- /public/downloads/customer_group- 10-03-2018.csv: -------------------------------------------------------------------------------- 1 | name," percentage" 2 | general,2 3 | Distributors,-25 4 | -------------------------------------------------------------------------------- /public/downloads/product- 03-04-2018.csv: -------------------------------------------------------------------------------- 1 | name," code"," brand"," category"," quantity"," unit"," price" 2 | mouse,99810362,samsung,computer,264,pc,120 3 | mango,70389460,N/A,fruits,389,kg,80 4 | airphone-samsung,26489509,samsung,computer,1333,pc,350 5 | mouse-top-one,21925907,N/A,computer,250,pc,400 6 | -------------------------------------------------------------------------------- /public/downloads/product- 10-03-2018.csv: -------------------------------------------------------------------------------- 1 | name," code"," brand"," category"," quantity"," unit"," price" 2 | mouse,99810362,samsung,computer,0,pc,120 3 | mango,70389460,N/A,fruits,400,kg,70 4 | airphone-samsung,26489509,samsung,computer,1350,pc,350 5 | -------------------------------------------------------------------------------- /public/downloads/tax- 04-03-2018.csv: -------------------------------------------------------------------------------- 1 | name," rate" 2 | vat@10%,12 3 | gst@20%,20 4 | vat@15%,15 5 | gst@5%,5.5 6 | -------------------------------------------------------------------------------- /public/downloads/unit- 03-03-2018.csv: -------------------------------------------------------------------------------- 1 | code," name"," baseUnit"," operator"," operationValue" 2 | pc,piece,,, 3 | box,"Dozen Box",1,*,12 4 | m,Meter,,, 5 | km,kilometer,3,*,100 6 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/favicon.ico -------------------------------------------------------------------------------- /public/icons/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/icons/icon-128x128.png -------------------------------------------------------------------------------- /public/icons/icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/icons/icon-144x144.png -------------------------------------------------------------------------------- /public/icons/icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/icons/icon-152x152.png -------------------------------------------------------------------------------- /public/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/icons/icon-192x192.png -------------------------------------------------------------------------------- /public/icons/icon-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/icons/icon-384x384.png -------------------------------------------------------------------------------- /public/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/icons/icon-512x512.png -------------------------------------------------------------------------------- /public/icons/icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/icons/icon-72x72.png -------------------------------------------------------------------------------- /public/icons/icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/icons/icon-96x96.png -------------------------------------------------------------------------------- /public/images/29497618_1212833785513817_2887668216967394137_n.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/29497618_1212833785513817_2887668216967394137_n.jpg -------------------------------------------------------------------------------- /public/images/biller/aks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/biller/aks.jpg -------------------------------------------------------------------------------- /public/images/biller/mogaTel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/biller/mogaTel.jpg -------------------------------------------------------------------------------- /public/images/biller/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/biller/x.png -------------------------------------------------------------------------------- /public/images/brand/Apple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/brand/Apple.jpg -------------------------------------------------------------------------------- /public/images/brand/EGWorldwide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/brand/EGWorldwide.jpg -------------------------------------------------------------------------------- /public/images/brand/HP.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/brand/HP.jpg -------------------------------------------------------------------------------- /public/images/brand/Oppo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/brand/Oppo.jpg -------------------------------------------------------------------------------- /public/images/brand/Repair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/brand/Repair.png -------------------------------------------------------------------------------- /public/images/brand/cocacola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/brand/cocacola.png -------------------------------------------------------------------------------- /public/images/brand/samsung.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/brand/samsung.jpg -------------------------------------------------------------------------------- /public/images/category.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/category.zip -------------------------------------------------------------------------------- /public/images/category/20200701093146.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/category/20200701093146.jpg -------------------------------------------------------------------------------- /public/images/category/20201012055703.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/category/20201012055703.png -------------------------------------------------------------------------------- /public/images/employee/davitrepairge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/employee/davitrepairge.jpg -------------------------------------------------------------------------------- /public/images/employee/johngmailcom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/employee/johngmailcom.jpg -------------------------------------------------------------------------------- /public/images/employee/junnunahmed2018gmailcom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/employee/junnunahmed2018gmailcom.jpg -------------------------------------------------------------------------------- /public/images/employee/testgmailcom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/employee/testgmailcom.jpg -------------------------------------------------------------------------------- /public/images/gift_card/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/gift_card/back.png -------------------------------------------------------------------------------- /public/images/gift_card/front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/gift_card/front.jpg -------------------------------------------------------------------------------- /public/images/product.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/product.zip -------------------------------------------------------------------------------- /public/images/product/1572515542825e4e2e433-e29b-4ca1-abb2-aad995574f2a_1.e4dc9f20c1d8b2999d66556ae0aa1600.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/product/1572515542825e4e2e433-e29b-4ca1-abb2-aad995574f2a_1.e4dc9f20c1d8b2999d66556ae0aa1600.jpeg -------------------------------------------------------------------------------- /public/images/product/1572759415477product-page-fresh-breath.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/product/1572759415477product-page-fresh-breath.jpg -------------------------------------------------------------------------------- /public/images/product/1577165120189220px-Blue_Tshirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/product/1577165120189220px-Blue_Tshirt.jpg -------------------------------------------------------------------------------- /public/images/product/PoloShirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/product/PoloShirt.jpg -------------------------------------------------------------------------------- /public/images/product/SamsungGalaxyS9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/product/SamsungGalaxyS9.jpg -------------------------------------------------------------------------------- /public/images/product/Shoe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/product/Shoe.jpg -------------------------------------------------------------------------------- /public/images/product/TshirtCrewNeck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/product/TshirtCrewNeck.png -------------------------------------------------------------------------------- /public/images/product/airphonesamsung.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/product/airphonesamsung.jpg -------------------------------------------------------------------------------- /public/images/product/images.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/product/images.zip -------------------------------------------------------------------------------- /public/images/product/iphoneX.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/product/iphoneX.jpg -------------------------------------------------------------------------------- /public/images/product/lalacrybabydoll.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/product/lalacrybabydoll.jpg -------------------------------------------------------------------------------- /public/images/product/ldms.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/product/ldms.jpg -------------------------------------------------------------------------------- /public/images/product/lychee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/product/lychee.jpg -------------------------------------------------------------------------------- /public/images/product/mac airbook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/product/mac airbook.jpg -------------------------------------------------------------------------------- /public/images/product/mango.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/product/mango.jpg -------------------------------------------------------------------------------- /public/images/product/potato.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/product/potato.jpeg -------------------------------------------------------------------------------- /public/images/product/toponemouse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/product/toponemouse.jpg -------------------------------------------------------------------------------- /public/images/product/zummXD2dvAtI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/product/zummXD2dvAtI.png -------------------------------------------------------------------------------- /public/images/supplier/LyfPublication.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/supplier/LyfPublication.jpg -------------------------------------------------------------------------------- /public/images/supplier/globaltouch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/supplier/globaltouch.jpg -------------------------------------------------------------------------------- /public/images/supplier/mogaFruit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/supplier/mogaFruit.jpg -------------------------------------------------------------------------------- /public/images/zummXD2dvAtI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/images/zummXD2dvAtI.png -------------------------------------------------------------------------------- /public/img/avatar-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/img/avatar-1.jpg -------------------------------------------------------------------------------- /public/img/avatar-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/img/avatar-2.jpg -------------------------------------------------------------------------------- /public/img/avatar-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/img/avatar-3.jpg -------------------------------------------------------------------------------- /public/img/avatar-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/img/avatar-4.jpg -------------------------------------------------------------------------------- /public/img/avatar-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/img/avatar-5.jpg -------------------------------------------------------------------------------- /public/img/avatar-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/img/avatar-6.jpg -------------------------------------------------------------------------------- /public/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/img/favicon.ico -------------------------------------------------------------------------------- /public/img/mockup1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/img/mockup1.jpg -------------------------------------------------------------------------------- /public/img/mockup2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/img/mockup2.jpg -------------------------------------------------------------------------------- /public/img/mockup3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/img/mockup3.jpg -------------------------------------------------------------------------------- /public/img/mockup4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/img/mockup4.jpg -------------------------------------------------------------------------------- /public/img/mockup5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/img/mockup5.jpg -------------------------------------------------------------------------------- /public/img/mockup6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/img/mockup6.jpg -------------------------------------------------------------------------------- /public/img/mockup7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/img/mockup7.jpg -------------------------------------------------------------------------------- /public/img/template-mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/img/template-mac.png -------------------------------------------------------------------------------- /public/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/logo/logo.png -------------------------------------------------------------------------------- /public/offline.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

NO INTERNET

8 | 9 | -------------------------------------------------------------------------------- /public/product/files/1532329769.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/product/files/1532329769.pdf -------------------------------------------------------------------------------- /public/product/files/1532330693.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/product/files/1532330693.JPG -------------------------------------------------------------------------------- /public/product/files/1533454125.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/product/files/1533454125.jpg -------------------------------------------------------------------------------- /public/product/files/1557750536.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/product/files/1557750536.png -------------------------------------------------------------------------------- /public/product/files/1558148661.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/product/files/1558148661.jpg -------------------------------------------------------------------------------- /public/product/files/1558148709.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/product/files/1558148709.jpg -------------------------------------------------------------------------------- /public/product/files/1560782987.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/product/files/1560782987.jpg -------------------------------------------------------------------------------- /public/product/files/1562562533.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/product/files/1562562533.png -------------------------------------------------------------------------------- /public/product/files/1565730789.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/product/files/1565730789.jpg -------------------------------------------------------------------------------- /public/product/files/1568270817.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/product/files/1568270817.jpg -------------------------------------------------------------------------------- /public/purchase/documents/30947.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/purchase/documents/30947.jpg -------------------------------------------------------------------------------- /public/quotation/documents/49156-Z-Energy-Caltex-Lubricants-Guide-FA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/quotation/documents/49156-Z-Energy-Caltex-Lubricants-Guide-FA.pdf -------------------------------------------------------------------------------- /public/quotation/documents/Project proposal-2011331018.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/quotation/documents/Project proposal-2011331018.pdf -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/sale/documents/aurabrosur_organizasyon_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/sale/documents/aurabrosur_organizasyon_01.jpg -------------------------------------------------------------------------------- /public/sale/documents/barberia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/sale/documents/barberia.jpg -------------------------------------------------------------------------------- /public/sale/documents/screen_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/sale/documents/screen_splash.png -------------------------------------------------------------------------------- /public/sample_file/sample_biller.csv: -------------------------------------------------------------------------------- 1 | name,image,company_name,vat_number,email,phone_number,address,city,state,postal_code,country 2 | modon,mogaTel.jpg,mogaTel,,modon@gmail.com,32321,nasirabad,chittagong,,,bd 3 | -------------------------------------------------------------------------------- /public/sample_file/sample_brand.csv: -------------------------------------------------------------------------------- 1 | title,image 2 | iphone,iphone.jpg 3 | -------------------------------------------------------------------------------- /public/sample_file/sample_category.csv: -------------------------------------------------------------------------------- 1 | name,parent_category 2 | fish,food 3 | apparel, 4 | -------------------------------------------------------------------------------- /public/sample_file/sample_customer.csv: -------------------------------------------------------------------------------- 1 | customer_group,name,company_name,email,phone_number,address,city,state,postal_code,country 2 | general,anwar,smart it,anwar@smartit.com,32321,nasirabad,chittagong,,,bd 3 | -------------------------------------------------------------------------------- /public/sample_file/sample_customer_group.csv: -------------------------------------------------------------------------------- 1 | name,percentage 2 | test,-20 3 | -------------------------------------------------------------------------------- /public/sample_file/sample_expense_category.csv: -------------------------------------------------------------------------------- 1 | code,name 2 | 1234,snacks 3 | -------------------------------------------------------------------------------- /public/sample_file/sample_products.csv: -------------------------------------------------------------------------------- 1 | image,name,code,type,brand,category,unit_code,cost,price,product_details,variant_name,item_code,additional_price 2 | ,tinko,9999,standard,Lotto,accessories,pc,15,20,this is test product with variant,"S,M,L","S-9999,M-9999,L-9999","0,0,10" 3 | ,test,1111,standard,,food,kg,10,15,this is test product without variant,,, 4 | -------------------------------------------------------------------------------- /public/sample_file/sample_purchase_products.csv: -------------------------------------------------------------------------------- 1 | product_code,quantity,purchase_unit,product_cost,discount_per_unit,tax_name 2 | 63920719,2,pc,320,5,vat@10 3 | 72782608,1,cartoon,192,0,no tax 4 | -------------------------------------------------------------------------------- /public/sample_file/sample_sale_products.csv: -------------------------------------------------------------------------------- 1 | product_code,quantity,sale_unit,product_price,discount_per_unit,tax_name 2 | 63920719,2,pc,350,10,vat@10 3 | 72782608,1,dozen,120,0,vat@15 4 | 40624536,2,n/a,21,0,no tax 5 | -------------------------------------------------------------------------------- /public/sample_file/sample_supplier.csv: -------------------------------------------------------------------------------- 1 | name,image,company_name,vat_number,email,phone_number,address,city,state,postal_code,country 2 | modon,mogaFruit.jpg,mogaFruit,,modon@gmail.com,32321,nasirabad,chittagong,,,bd 3 | -------------------------------------------------------------------------------- /public/sample_file/sample_tax.csv: -------------------------------------------------------------------------------- 1 | name,rate 2 | vat 20,20 3 | -------------------------------------------------------------------------------- /public/sample_file/sample_transfer_products.csv: -------------------------------------------------------------------------------- 1 | product_code,quantity,purchase_unit,product_cost,tax_name 2 | 63920719,3,pc,320,vat@10 3 | 72782608,1,cartoon,192,no tax 4 | -------------------------------------------------------------------------------- /public/sample_file/sample_unit.csv: -------------------------------------------------------------------------------- 1 | code,name,base_unit,operator,operation_value 2 | gm,gram,kg,/,1000 3 | -------------------------------------------------------------------------------- /public/sample_file/sample_warehouse.csv: -------------------------------------------------------------------------------- 1 | name,phone,email,address 2 | gudam,2121,,narayanganj 3 | -------------------------------------------------------------------------------- /public/stock_count/20190228-124939.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | lychee,38314290,102, 3 | mango,72782608,1932, 4 | Mouse,63920719,72.5, 5 | Earphone,85415108,72, 6 | "Baby doll",31261512,56, 7 | potato,212132,61, 8 | iphone-X,97103461,14, 9 | "Galaxy S9",72100265,15, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,13, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,10, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190415-091614.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190420-121520.csv: -------------------------------------------------------------------------------- 1 | Product Name, Product Code, Expected, Counted 2 | lychee,38314290,102,90 3 | mango,72782608,1932,1000 4 | Mouse,63920719,72.5,55 5 | Earphone,85415108,72,55 6 | Baby doll,31261512,56,50 7 | potato,212132,61,7 8 | iphone-X,97103461,14,66 9 | Galaxy S9,72100265,15,45 10 | Shoe,90471412,14,3 11 | Polo Shirt,53467102,13,3 12 | Toothpaste,8.59875E+11,10,4 13 | tissue,8.94116E+12,10,3 14 | -------------------------------------------------------------------------------- /public/stock_count/20190421-083130.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | dfdf,49219710,5, 15 | -------------------------------------------------------------------------------- /public/stock_count/20190421-092009.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190422-010940.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,87, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190425-045102.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,129.5, 3 | mango,72782608,1355, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190426-103126.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190430-044132.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Earphone,85415108,104, 3 | -------------------------------------------------------------------------------- /public/stock_count/20190430-083244.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | lychee,38314290,99, 3 | mango,72782608,1920, 4 | Mouse,63920719,67.5, 5 | Earphone,85415108,68, 6 | "Baby doll",31261512,54, 7 | potato,212132,61, 8 | iphone-X,97103461,12, 9 | "Galaxy S9",72100265,13, 10 | Shoe,90471412,12, 11 | "Polo Shirt",53467102,13, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,15, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190430-083313.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | lychee,38314290,121, 5 | -------------------------------------------------------------------------------- /public/stock_count/20190501-084744.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190503-073700.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | lychee,38314290,102, 3 | mango,72782608,1920, 4 | Mouse,63920719,82.5, 5 | Earphone,85415108,72, 6 | "Baby doll",31261512,54, 7 | potato,212132,61, 8 | iphone-X,97103461,14, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,13, 11 | "Polo Shirt",53467102,13, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,15, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190505-063355.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190505-090344.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190506-032528.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190506-094203.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,134.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,94, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190506-111841.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190506-112237.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Earphone,85415108,104, 3 | -------------------------------------------------------------------------------- /public/stock_count/20190508-075606.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,134.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190508-083839.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190508-084037.csv: -------------------------------------------------------------------------------- 1 | Product Name, Product Code, Expected, Counted 2 | Mouse,63920719,135.5,135.5 3 | mango,72782608,1380,1370 4 | Earphone,85415108,104,104 5 | Baby doll,31261512,88,80 6 | lychee,38314290,121,121 7 | potato,212132,50,50 8 | iphone-X,97103461,24,24 9 | Galaxy S9,72100265,14,141 10 | Shoe,90471412,14,14 11 | Polo Shirt,53467102,15,15 12 | Toothpaste,8.59875E+11,10,10 13 | tissue,8.94116E+12,16,16 14 | -------------------------------------------------------------------------------- /public/stock_count/20190508-124229.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,82.5, 3 | Earphone,85415108,72, 4 | -------------------------------------------------------------------------------- /public/stock_count/20190510-022129.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190513-062605.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Earphone,85415108,104, 3 | -------------------------------------------------------------------------------- /public/stock_count/20190513-095139.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190516-123903.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190517-040459.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190518-014708.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190519-030006.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190519-030106.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190519-043032.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190519-045258.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Earphone,85415108,104, 3 | iphone-X,97103461,24, 4 | "Galaxy S9",72100265,14, 5 | CNG,31040236,100, 6 | -------------------------------------------------------------------------------- /public/stock_count/20190524-024144.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190524-055205.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190524-095058.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190526-012835.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190529-063922.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190529-122149.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,2380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190530-053324.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190602-093457.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190603-122833.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | lychee,38314290,101, 3 | mango,72782608,1908, 4 | Mouse,63920719,57.5, 5 | Earphone,85415108,71, 6 | "Baby doll",31261512,55, 7 | potato,212132,61, 8 | iphone-X,97103461,13, 9 | "Galaxy S9",72100265,13, 10 | Shoe,90471412,13, 11 | "Polo Shirt",53467102,13, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,15, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190607-063145.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190607-093748.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | lychee,38314290,101, 3 | mango,72782608,1908, 4 | Mouse,63920719,79.5, 5 | Earphone,85415108,71, 6 | "Baby doll",31261512,55, 7 | potato,212132,61, 8 | iphone-X,97103461,13, 9 | "Galaxy S9",72100265,13, 10 | Shoe,90471412,13, 11 | "Polo Shirt",53467102,13, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,15, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190607-124055.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190608-055308.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | "NANO CAM FİLMİ",89710961,550, 15 | -------------------------------------------------------------------------------- /public/stock_count/20190611-100023.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190611-100133.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Shoe,90471412,13, 3 | "Polo Shirt",53467102,13, 4 | Toothpaste,859875003032,10, 5 | tissue,8941161008066,15, 6 | -------------------------------------------------------------------------------- /public/stock_count/20190612-021911.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190613-033122.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | "Silk Emulsion",7003Q,2400, 15 | -------------------------------------------------------------------------------- /public/stock_count/20190618-103532.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190621-055739.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190621-073713.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190622-024704.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | lychee,38314290,101, 3 | mango,72782608,1908, 4 | Mouse,63920719,78.5, 5 | Earphone,85415108,69, 6 | "Baby doll",31261512,55, 7 | potato,212132,61, 8 | iphone-X,97103461,15, 9 | "Galaxy S9",72100265,15, 10 | Shoe,90471412,12, 11 | "Polo Shirt",53467102,12, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,15, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190622-093342.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190622-093725.csv: -------------------------------------------------------------------------------- 1 | "Product Name,"" Product Code"","" Expected"","" Counted""" 2 | Mouse,63920719,135.5,2 3 | mango,72782608,1380,10 4 | Earphone,85415108,104, 5 | Baby doll,31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | Galaxy S9,72100265,14, 10 | Shoe,90471412,14, 11 | Polo Shirt,53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190622-094019.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190622-094042.csv: -------------------------------------------------------------------------------- 1 | "Product Name,"" Product Code"","" Expected"","" Counted""" 2 | Mouse,63920719,135.5,2 3 | mango,72782608,1380,10 4 | Earphone,85415108,104,120 5 | Baby doll,31261512,88,88 6 | lychee,38314290,121,121 7 | potato,212132,50,50 8 | iphone-X,97103461,24,30 9 | Galaxy S9,72100265,14,10 10 | Shoe,90471412,14,14 11 | Polo Shirt,53467102,15,13 12 | Toothpaste,859875003032,10,12 13 | tissue,8941161008066,16,16 14 | -------------------------------------------------------------------------------- /public/stock_count/20190623-102545.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,235.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190627-110948.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | lychee,38314290,101, 3 | mango,72782608,1908, 4 | Mouse,63920719,78.5, 5 | Earphone,85415108,69, 6 | "Baby doll",31261512,45, 7 | potato,212132,61, 8 | iphone-X,97103461,15, 9 | "Galaxy S9",72100265,15, 10 | Shoe,90471412,12, 11 | "Polo Shirt",53467102,12, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,15, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190701-014820.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | lychee,38314290,121, 6 | potato,212132,50, 7 | iphone-X,97103461,24, 8 | "Galaxy S9",72100265,14, 9 | Shoe,90471412,14, 10 | "Polo Shirt",53467102,15, 11 | Toothpaste,859875003032,10, 12 | tissue,8941161008066,16, 13 | -------------------------------------------------------------------------------- /public/stock_count/20190701-022853.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Earphone,85415108,104, 3 | iphone-X,97103461,24, 4 | "Galaxy S9",72100265,14, 5 | -------------------------------------------------------------------------------- /public/stock_count/20190702-091504.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190703-032154.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1140, 4 | Earphone,85415108,84, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190707-065355.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190708-124742.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190713-124900.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | برجر,26109873,0, 15 | -------------------------------------------------------------------------------- /public/stock_count/20190717-055735.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190717-073215.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190722-033720.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,134.5, 3 | mango,72782608,1384, 4 | Earphone,85415108,109, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,14, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190722-082218.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190724-050121.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Earphone,85415108,104, 3 | -------------------------------------------------------------------------------- /public/stock_count/20190727-104033.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | "Wooden Hangers",R69,0, 3 | "Pastic Hangers",R1110,0, 4 | -------------------------------------------------------------------------------- /public/stock_count/20190729-063137.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190730-024010.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Earphone,85415108,73, 3 | -------------------------------------------------------------------------------- /public/stock_count/20190730-031942.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190801-053004.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190801-053602.csv: -------------------------------------------------------------------------------- 1 | "Product Name,"" Product Code"","" Expected"","" Counted""" 2 | Mouse,63920719,135.5,120 3 | mango,72782608,1380,1380 4 | Earphone,85415108,104,104 5 | Baby doll,31261512,88,89 6 | lychee,38314290,121,115 7 | potato,212132,50,50 8 | iphone-X,97103461,24,76 9 | Galaxy S9,72100265,14,20 10 | Shoe,90471412,14,14 11 | Polo Shirt,53467102,15,15 12 | Toothpaste,859875003032,10,8 13 | tissue,8941161008066,16,10 14 | -------------------------------------------------------------------------------- /public/stock_count/20190806-011121.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1356, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190807-124518.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1344, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190808-011959.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190808-110844.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190812-040058.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190814-011543.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190814-023056.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | lychee,38314290,101, 3 | mango,72782608,1908, 4 | Mouse,63920719,69.5, 5 | Earphone,85415108,69, 6 | "Baby doll",31261512,55, 7 | potato,212132,61, 8 | iphone-X,97103461,15, 9 | "Galaxy S9",72100265,15, 10 | Shoe,90471412,12, 11 | "Polo Shirt",53467102,12, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,15, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190814-023420.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,69.5, 3 | Earphone,85415108,69, 4 | iphone-X,97103461,10, 5 | -------------------------------------------------------------------------------- /public/stock_count/20190814-023727.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | lychee,38314290,101, 3 | mango,72782608,1908, 4 | Mouse,63920719,69.5, 5 | Earphone,85415108,69, 6 | "Baby doll",31261512,55, 7 | potato,212132,61, 8 | iphone-X,97103461,14, 9 | "Galaxy S9",72100265,15, 10 | Shoe,90471412,12, 11 | "Polo Shirt",53467102,12, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,15, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190815-011755.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,204, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190815-064948.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Earphone,85415108,69, 3 | -------------------------------------------------------------------------------- /public/stock_count/20190818-033203.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Earphone,85415108,104, 3 | iphone-X,97103461,24, 4 | -------------------------------------------------------------------------------- /public/stock_count/20190823-012739.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190824-020949.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190824-021358.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Earphone,85415108,104, 3 | -------------------------------------------------------------------------------- /public/stock_count/20190824-055511.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190827-012452.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | lychee,38314290,101, 3 | mango,72782608,1908, 4 | Mouse,63920719,78.5, 5 | Earphone,85415108,69, 6 | "Baby doll",31261512,55, 7 | potato,212132,61, 8 | iphone-X,97103461,15, 9 | "Galaxy S9",72100265,15, 10 | Shoe,90471412,12, 11 | "Polo Shirt",53467102,12, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,15, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190901-012032.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190901-012235.csv: -------------------------------------------------------------------------------- 1 | Product Name, Product Code, Expected, Counted 2 | Mouse,63920719,135.5,12 3 | mango,72782608,1380,12 4 | Earphone,85415108,104,12 5 | Baby doll,31261512,88,12 6 | lychee,38314290,121,12 7 | potato,212132,50,12 8 | iphone-X,97103461,24,12 9 | Galaxy S9,72100265,14,12 10 | Shoe,90471412,14,12 11 | Polo Shirt,53467102,15,12 12 | Toothpaste,8.59875E+11,10,12 13 | tissue,8.94116E+12,16,12 14 | -------------------------------------------------------------------------------- /public/stock_count/20190901-012357.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190903-125720.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190905-082155.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190907-101059.csv: -------------------------------------------------------------------------------- 1 | Product Name, Product Code, Expected, Counted 2 | lychee,38314290,102,105 3 | mango,72782608,1932,1932 4 | Mouse,63920719,72.5,72.5 5 | Earphone,85415108,72,72 6 | Baby doll,31261512,56,56 7 | potato,212132,61,61 8 | iphone-X,97103461,14,14 9 | Galaxy S9,72100265,15,15 10 | Shoe,90471412,14,14 11 | Polo Shirt,53467102,13,13 12 | Toothpaste,859875003032,10,10 13 | tissue,8941161008066,10,10 14 | -------------------------------------------------------------------------------- /public/stock_count/20190911-110949.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190911-120457.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | mango,72782608,1380, 3 | lychee,38314290,121, 4 | -------------------------------------------------------------------------------- /public/stock_count/20190913-021002.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1380, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190913-095248.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1356, 4 | Earphone,85415108,105, 5 | "Baby doll",31261512,90, 6 | lychee,38314290,119, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,12, 13 | tissue,8941161008066,12, 14 | -------------------------------------------------------------------------------- /public/stock_count/20190915-021320.csv: -------------------------------------------------------------------------------- 1 | "Product Name"," Product Code"," Expected"," Counted" 2 | Mouse,63920719,135.5, 3 | mango,72782608,1080, 4 | Earphone,85415108,104, 5 | "Baby doll",31261512,88, 6 | lychee,38314290,121, 7 | potato,212132,50, 8 | iphone-X,97103461,24, 9 | "Galaxy S9",72100265,14, 10 | Shoe,90471412,14, 11 | "Polo Shirt",53467102,15, 12 | Toothpaste,859875003032,10, 13 | tissue,8941161008066,16, 14 | -------------------------------------------------------------------------------- /public/transfer/documents/Project proposal-2011331018.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/transfer/documents/Project proposal-2011331018.pdf -------------------------------------------------------------------------------- /public/vendor/bootstrap-toggle/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules -------------------------------------------------------------------------------- /public/vendor/bootstrap-toggle/doc/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/bootstrap-toggle/doc/header.png -------------------------------------------------------------------------------- /public/vendor/bootstrap-toggle/doc/nyt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/bootstrap-toggle/doc/nyt.png -------------------------------------------------------------------------------- /public/vendor/datatable/dataTables.checkboxes.css: -------------------------------------------------------------------------------- 1 | table.dataTable.dt-checkboxes-select tbody tr, 2 | table.dataTable thead th.dt-checkboxes-select-all, 3 | table.dataTable tbody td.dt-checkboxes-cell { 4 | cursor: pointer; 5 | } 6 | 7 | table.dataTable thead th.dt-checkboxes-select-all, 8 | table.dataTable tbody td.dt-checkboxes-cell { 9 | text-align: center; 10 | } 11 | 12 | div.dataTables_wrapper span.select-info, 13 | div.dataTables_wrapper span.select-item { 14 | margin-left: 0.5em; 15 | } 16 | 17 | @media screen and (max-width: 640px) { 18 | div.dataTables_wrapper span.select-info, 19 | div.dataTables_wrapper span.select-item { 20 | margin-left: 0; 21 | display: block; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /public/vendor/dripicons/fonts/dripicons-v2.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/dripicons/fonts/dripicons-v2.eot -------------------------------------------------------------------------------- /public/vendor/dripicons/fonts/dripicons-v2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/dripicons/fonts/dripicons-v2.ttf -------------------------------------------------------------------------------- /public/vendor/dripicons/fonts/dripicons-v2.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/dripicons/fonts/dripicons-v2.woff -------------------------------------------------------------------------------- /public/vendor/font-awesome/HELP-US-OUT.txt: -------------------------------------------------------------------------------- 1 | I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project, 2 | Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome, 3 | comprehensive icon sets or copy and paste your own. 4 | 5 | Please. Check it out. 6 | 7 | -Dave Gandy 8 | -------------------------------------------------------------------------------- /public/vendor/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/vendor/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/vendor/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/vendor/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/vendor/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public/vendor/jquery-timepicker/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /public/vendor/jquery-timepicker/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_store 2 | *.sw* 3 | node_modules 4 | .idea 5 | package-lock.json 6 | yarn.lock 7 | -------------------------------------------------------------------------------- /public/vendor/jquery-timepicker/__tests__/timepicker-test.js: -------------------------------------------------------------------------------- 1 | jest.dontMock("jquery").dontMock("../jquery.timepicker"); 2 | 3 | const $ = require("jquery"); 4 | require("../jquery.timepicker"); 5 | 6 | const TEST_INPUT = "testInput"; 7 | 8 | beforeEach(() => { 9 | document.body.innerHTML = ``; 10 | }); 11 | 12 | test("timepicker initializes", () => { 13 | $(`#${TEST_INPUT}`).timepicker(); 14 | }); 15 | 16 | test("show single string noneOption correctly", () =>{ 17 | $(`#${TEST_INPUT}`).timepicker({ 18 | "noneOption": "----" 19 | }).timepicker('show'); 20 | 21 | $('.ui-timepicker-list li:first-child').trigger('click'); 22 | 23 | 24 | expect($(`#${TEST_INPUT}`).val()).toEqual(''); 25 | }); 26 | -------------------------------------------------------------------------------- /public/vendor/jquery-timepicker/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jt.timepicker", 3 | "version": "1.11.14", 4 | "description": "A jQuery timepicker plugin inspired by Google Calendar.", 5 | "homepage": "http://jonthornton.github.com/jquery-timepicker", 6 | "main": ["./jquery.timepicker.js", "./jquery.timepicker.css"], 7 | "dependencies": { 8 | "jquery": ">= 1.7" 9 | }, 10 | "keywords": ["time", "picker", "google calendar"], 11 | "author": { 12 | "name": "Jon Thornton", 13 | "web": "https://github.com/jonthornton" 14 | }, 15 | "license": "http://opensource.org/licenses/MIT" 16 | } 17 | -------------------------------------------------------------------------------- /public/vendor/jquery-timepicker/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jonthornton/jquery-timepicker", 3 | "description": 4 | "A javascript timepicker plugin for jQuery inspired by Google Calendar.", 5 | "type": "component", 6 | "homepage": "http://jonthornton.github.io/jquery-timepicker/", 7 | "license": "MIT", 8 | "authors": [ 9 | { 10 | "name": "Jon Thornton" 11 | } 12 | ], 13 | "require": { 14 | "robloach/component-installer": "*", 15 | "components/jquery": "*" 16 | }, 17 | "extra": { 18 | "component": { 19 | "scripts": ["jquery.timepicker.js"], 20 | "files": ["jquery.timepicker.min.js", "jquery.timepicker.css"] 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /public/vendor/jquery-timepicker/lib/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/jquery-timepicker/lib/glyphicons-halflings.png -------------------------------------------------------------------------------- /public/vendor/jquery-timepicker/lib/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/jquery-timepicker/lib/screenshot.png -------------------------------------------------------------------------------- /public/vendor/jquery-validation/localization/methods_de.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else if (typeof module === "object" && module.exports) { 5 | module.exports = factory( require( "jquery" ) ); 6 | } else { 7 | factory( jQuery ); 8 | } 9 | }(function( $ ) { 10 | 11 | /* 12 | * Localized default methods for the jQuery validation plugin. 13 | * Locale: DE 14 | */ 15 | $.extend( $.validator.methods, { 16 | date: function( value, element ) { 17 | return this.optional( element ) || /^\d\d?\.\d\d?\.\d\d\d?\d?$/.test( value ); 18 | }, 19 | number: function( value, element ) { 20 | return this.optional( element ) || /^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test( value ); 21 | } 22 | } ); 23 | return $; 24 | })); -------------------------------------------------------------------------------- /public/vendor/jquery-validation/localization/methods_es_CL.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else if (typeof module === "object" && module.exports) { 5 | module.exports = factory( require( "jquery" ) ); 6 | } else { 7 | factory( jQuery ); 8 | } 9 | }(function( $ ) { 10 | 11 | /* 12 | * Localized default methods for the jQuery validation plugin. 13 | * Locale: ES_CL 14 | */ 15 | $.extend( $.validator.methods, { 16 | date: function( value, element ) { 17 | return this.optional( element ) || /^\d\d?\-\d\d?\-\d\d\d?\d?$/.test( value ); 18 | }, 19 | number: function( value, element ) { 20 | return this.optional( element ) || /^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test( value ); 21 | } 22 | } ); 23 | return $; 24 | })); -------------------------------------------------------------------------------- /public/vendor/jquery-validation/localization/methods_fi.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else if (typeof module === "object" && module.exports) { 5 | module.exports = factory( require( "jquery" ) ); 6 | } else { 7 | factory( jQuery ); 8 | } 9 | }(function( $ ) { 10 | 11 | /* 12 | * Localized default methods for the jQuery validation plugin. 13 | * Locale: FI 14 | */ 15 | $.extend( $.validator.methods, { 16 | date: function( value, element ) { 17 | return this.optional( element ) || /^\d{1,2}\.\d{1,2}\.\d{4}$/.test( value ); 18 | }, 19 | number: function( value, element ) { 20 | return this.optional( element ) || /^-?(?:\d+)(?:,\d+)?$/.test( value ); 21 | } 22 | } ); 23 | return $; 24 | })); -------------------------------------------------------------------------------- /public/vendor/jquery-validation/localization/methods_pt.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else if (typeof module === "object" && module.exports) { 5 | module.exports = factory( require( "jquery" ) ); 6 | } else { 7 | factory( jQuery ); 8 | } 9 | }(function( $ ) { 10 | 11 | /* 12 | * Localized default methods for the jQuery validation plugin. 13 | * Locale: PT_BR 14 | */ 15 | $.extend( $.validator.methods, { 16 | date: function( value, element ) { 17 | return this.optional( element ) || /^\d\d?\/\d\d?\/\d\d\d?\d?$/.test( value ); 18 | } 19 | } ); 20 | return $; 21 | })); -------------------------------------------------------------------------------- /public/vendor/jquery.cookie/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jquery.cookie", 3 | "repo": "carhartl/jquery-cookie", 4 | "description": "A simple, lightweight jQuery plugin for reading, writing and deleting cookies", 5 | "version": "1.4.1", 6 | "keywords": [], 7 | "dependencies": {}, 8 | "development": {}, 9 | "license": "MIT", 10 | "main": "jquery.cookie.js", 11 | "scripts": [ 12 | "jquery.cookie.js" 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/vendor/keyboard/css/images/disabled.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /public/vendor/keyboard/css/images/enabled.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/vendor/keyboard/css/images/keyboard.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/vendor/malihu-custom-scrollbar-plugin/mCSB_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/malihu-custom-scrollbar-plugin/mCSB_buttons.png -------------------------------------------------------------------------------- /public/vendor/tinymce/js/tinymce/langs/readme.md: -------------------------------------------------------------------------------- 1 | This is where language files should be placed. 2 | 3 | Please DO NOT translate these directly use this service: https://www.transifex.com/projects/p/tinymce/ 4 | -------------------------------------------------------------------------------- /public/vendor/tinymce/js/tinymce/plugins/emoticons/img/smiley-cool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/tinymce/js/tinymce/plugins/emoticons/img/smiley-cool.gif -------------------------------------------------------------------------------- /public/vendor/tinymce/js/tinymce/plugins/emoticons/img/smiley-cry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/tinymce/js/tinymce/plugins/emoticons/img/smiley-cry.gif -------------------------------------------------------------------------------- /public/vendor/tinymce/js/tinymce/plugins/emoticons/img/smiley-embarassed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/tinymce/js/tinymce/plugins/emoticons/img/smiley-embarassed.gif -------------------------------------------------------------------------------- /public/vendor/tinymce/js/tinymce/plugins/emoticons/img/smiley-foot-in-mouth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/tinymce/js/tinymce/plugins/emoticons/img/smiley-foot-in-mouth.gif -------------------------------------------------------------------------------- /public/vendor/tinymce/js/tinymce/plugins/emoticons/img/smiley-frown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/tinymce/js/tinymce/plugins/emoticons/img/smiley-frown.gif -------------------------------------------------------------------------------- /public/vendor/tinymce/js/tinymce/plugins/emoticons/img/smiley-innocent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/tinymce/js/tinymce/plugins/emoticons/img/smiley-innocent.gif -------------------------------------------------------------------------------- /public/vendor/tinymce/js/tinymce/plugins/emoticons/img/smiley-kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/tinymce/js/tinymce/plugins/emoticons/img/smiley-kiss.gif -------------------------------------------------------------------------------- /public/vendor/tinymce/js/tinymce/plugins/emoticons/img/smiley-laughing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/tinymce/js/tinymce/plugins/emoticons/img/smiley-laughing.gif -------------------------------------------------------------------------------- /public/vendor/tinymce/js/tinymce/plugins/emoticons/img/smiley-money-mouth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/tinymce/js/tinymce/plugins/emoticons/img/smiley-money-mouth.gif -------------------------------------------------------------------------------- /public/vendor/tinymce/js/tinymce/plugins/emoticons/img/smiley-sealed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/tinymce/js/tinymce/plugins/emoticons/img/smiley-sealed.gif -------------------------------------------------------------------------------- /public/vendor/tinymce/js/tinymce/plugins/emoticons/img/smiley-smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/tinymce/js/tinymce/plugins/emoticons/img/smiley-smile.gif -------------------------------------------------------------------------------- /public/vendor/tinymce/js/tinymce/plugins/emoticons/img/smiley-surprised.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/tinymce/js/tinymce/plugins/emoticons/img/smiley-surprised.gif -------------------------------------------------------------------------------- /public/vendor/tinymce/js/tinymce/plugins/emoticons/img/smiley-tongue-out.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/tinymce/js/tinymce/plugins/emoticons/img/smiley-tongue-out.gif -------------------------------------------------------------------------------- /public/vendor/tinymce/js/tinymce/plugins/emoticons/img/smiley-undecided.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/tinymce/js/tinymce/plugins/emoticons/img/smiley-undecided.gif -------------------------------------------------------------------------------- /public/vendor/tinymce/js/tinymce/plugins/emoticons/img/smiley-wink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/tinymce/js/tinymce/plugins/emoticons/img/smiley-wink.gif -------------------------------------------------------------------------------- /public/vendor/tinymce/js/tinymce/plugins/emoticons/img/smiley-yell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/tinymce/js/tinymce/plugins/emoticons/img/smiley-yell.gif -------------------------------------------------------------------------------- /public/vendor/tinymce/js/tinymce/plugins/help/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/tinymce/js/tinymce/plugins/help/img/logo.png -------------------------------------------------------------------------------- /public/vendor/tinymce/js/tinymce/plugins/hr/plugin.min.js: -------------------------------------------------------------------------------- 1 | !function(){"use strict";var n=tinymce.util.Tools.resolve("tinymce.PluginManager"),t=function(n){n.addCommand("InsertHorizontalRule",function(){n.execCommand("mceInsertContent",!1,"
")})},o=function(n){n.addButton("hr",{icon:"hr",tooltip:"Horizontal line",cmd:"InsertHorizontalRule"}),n.addMenuItem("hr",{icon:"hr",text:"Horizontal line",cmd:"InsertHorizontalRule",context:"insert"})};n.add("hr",function(n){t(n),o(n)})}(); -------------------------------------------------------------------------------- /public/vendor/tinymce/js/tinymce/plugins/print/plugin.min.js: -------------------------------------------------------------------------------- 1 | !function(){"use strict";var t=tinymce.util.Tools.resolve("tinymce.PluginManager"),n=function(t){t.addCommand("mcePrint",function(){t.getWin().print()})},i=function(t){t.addButton("print",{title:"Print",cmd:"mcePrint"}),t.addMenuItem("print",{text:"Print",cmd:"mcePrint",icon:"print"})};t.add("print",function(t){n(t),i(t),t.addShortcut("Meta+P","","mcePrint")})}(); -------------------------------------------------------------------------------- /public/vendor/tinymce/js/tinymce/skins/lightgray/content.mobile.min.css: -------------------------------------------------------------------------------- 1 | .tinymce-mobile-unfocused-selections .tinymce-mobile-unfocused-selection{position:absolute;display:inline-block;background-color:green;opacity:.5}body{-webkit-text-size-adjust:none}body img{max-width:96vw}body table img{max-width:95%} -------------------------------------------------------------------------------- /public/vendor/tinymce/js/tinymce/skins/lightgray/fonts/tinymce-mobile.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/tinymce/js/tinymce/skins/lightgray/fonts/tinymce-mobile.woff -------------------------------------------------------------------------------- /public/vendor/tinymce/js/tinymce/skins/lightgray/fonts/tinymce-small.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/tinymce/js/tinymce/skins/lightgray/fonts/tinymce-small.eot -------------------------------------------------------------------------------- /public/vendor/tinymce/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/tinymce/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf -------------------------------------------------------------------------------- /public/vendor/tinymce/js/tinymce/skins/lightgray/fonts/tinymce-small.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/tinymce/js/tinymce/skins/lightgray/fonts/tinymce-small.woff -------------------------------------------------------------------------------- /public/vendor/tinymce/js/tinymce/skins/lightgray/fonts/tinymce.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/tinymce/js/tinymce/skins/lightgray/fonts/tinymce.eot -------------------------------------------------------------------------------- /public/vendor/tinymce/js/tinymce/skins/lightgray/fonts/tinymce.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/tinymce/js/tinymce/skins/lightgray/fonts/tinymce.ttf -------------------------------------------------------------------------------- /public/vendor/tinymce/js/tinymce/skins/lightgray/fonts/tinymce.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/tinymce/js/tinymce/skins/lightgray/fonts/tinymce.woff -------------------------------------------------------------------------------- /public/vendor/tinymce/js/tinymce/skins/lightgray/img/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/tinymce/js/tinymce/skins/lightgray/img/anchor.gif -------------------------------------------------------------------------------- /public/vendor/tinymce/js/tinymce/skins/lightgray/img/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/tinymce/js/tinymce/skins/lightgray/img/loader.gif -------------------------------------------------------------------------------- /public/vendor/tinymce/js/tinymce/skins/lightgray/img/object.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/tinymce/js/tinymce/skins/lightgray/img/object.gif -------------------------------------------------------------------------------- /public/vendor/tinymce/js/tinymce/skins/lightgray/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/public/vendor/tinymce/js/tinymce/skins/lightgray/img/trans.gif -------------------------------------------------------------------------------- /read_me/assets/css/img/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/css/img/info.png -------------------------------------------------------------------------------- /read_me/assets/css/img/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/css/img/warning.png -------------------------------------------------------------------------------- /read_me/assets/images/accounting_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/accounting_1.png -------------------------------------------------------------------------------- /read_me/assets/images/adjustment1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/adjustment1.png -------------------------------------------------------------------------------- /read_me/assets/images/adjustment2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/adjustment2.png -------------------------------------------------------------------------------- /read_me/assets/images/biller1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/biller1.png -------------------------------------------------------------------------------- /read_me/assets/images/brand1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/brand1.png -------------------------------------------------------------------------------- /read_me/assets/images/category1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/category1.png -------------------------------------------------------------------------------- /read_me/assets/images/category10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/category10.png -------------------------------------------------------------------------------- /read_me/assets/images/category2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/category2.png -------------------------------------------------------------------------------- /read_me/assets/images/category3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/category3.png -------------------------------------------------------------------------------- /read_me/assets/images/category4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/category4.png -------------------------------------------------------------------------------- /read_me/assets/images/category5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/category5.png -------------------------------------------------------------------------------- /read_me/assets/images/category6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/category6.png -------------------------------------------------------------------------------- /read_me/assets/images/category7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/category7.png -------------------------------------------------------------------------------- /read_me/assets/images/category8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/category8.png -------------------------------------------------------------------------------- /read_me/assets/images/category9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/category9.png -------------------------------------------------------------------------------- /read_me/assets/images/customer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/customer1.png -------------------------------------------------------------------------------- /read_me/assets/images/customer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/customer2.png -------------------------------------------------------------------------------- /read_me/assets/images/customer_group1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/customer_group1.png -------------------------------------------------------------------------------- /read_me/assets/images/dashboard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/dashboard1.png -------------------------------------------------------------------------------- /read_me/assets/images/dashboard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/dashboard2.png -------------------------------------------------------------------------------- /read_me/assets/images/dashboard3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/dashboard3.png -------------------------------------------------------------------------------- /read_me/assets/images/dashboard4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/dashboard4.png -------------------------------------------------------------------------------- /read_me/assets/images/dashboard5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/dashboard5.png -------------------------------------------------------------------------------- /read_me/assets/images/delivery1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/delivery1.png -------------------------------------------------------------------------------- /read_me/assets/images/expense1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/expense1.png -------------------------------------------------------------------------------- /read_me/assets/images/expense2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/expense2.png -------------------------------------------------------------------------------- /read_me/assets/images/gift_card1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/gift_card1.png -------------------------------------------------------------------------------- /read_me/assets/images/gift_card2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/gift_card2.png -------------------------------------------------------------------------------- /read_me/assets/images/install1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/install1.png -------------------------------------------------------------------------------- /read_me/assets/images/install2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/install2.png -------------------------------------------------------------------------------- /read_me/assets/images/install3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/install3.png -------------------------------------------------------------------------------- /read_me/assets/images/install4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/install4.png -------------------------------------------------------------------------------- /read_me/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/logo.png -------------------------------------------------------------------------------- /read_me/assets/images/mail1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/mail1.png -------------------------------------------------------------------------------- /read_me/assets/images/pos1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/pos1.png -------------------------------------------------------------------------------- /read_me/assets/images/pos_printer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/pos_printer1.png -------------------------------------------------------------------------------- /read_me/assets/images/pos_printer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/pos_printer2.png -------------------------------------------------------------------------------- /read_me/assets/images/pos_printer3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/pos_printer3.png -------------------------------------------------------------------------------- /read_me/assets/images/pos_printer4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/pos_printer4.png -------------------------------------------------------------------------------- /read_me/assets/images/pos_printer5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/pos_printer5.png -------------------------------------------------------------------------------- /read_me/assets/images/pos_printer6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/pos_printer6.png -------------------------------------------------------------------------------- /read_me/assets/images/pos_printer7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/pos_printer7.png -------------------------------------------------------------------------------- /read_me/assets/images/pos_printer8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/pos_printer8.png -------------------------------------------------------------------------------- /read_me/assets/images/pos_printer9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/pos_printer9.png -------------------------------------------------------------------------------- /read_me/assets/images/product1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/product1.png -------------------------------------------------------------------------------- /read_me/assets/images/product2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/product2.png -------------------------------------------------------------------------------- /read_me/assets/images/product3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/product3.png -------------------------------------------------------------------------------- /read_me/assets/images/purchase1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/purchase1.png -------------------------------------------------------------------------------- /read_me/assets/images/purchase2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/purchase2.png -------------------------------------------------------------------------------- /read_me/assets/images/purchase3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/purchase3.png -------------------------------------------------------------------------------- /read_me/assets/images/purchase4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/purchase4.png -------------------------------------------------------------------------------- /read_me/assets/images/purchase5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/purchase5.png -------------------------------------------------------------------------------- /read_me/assets/images/purchase6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/purchase6.png -------------------------------------------------------------------------------- /read_me/assets/images/purchase7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/purchase7.png -------------------------------------------------------------------------------- /read_me/assets/images/quotation1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/quotation1.png -------------------------------------------------------------------------------- /read_me/assets/images/quotation2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/quotation2.png -------------------------------------------------------------------------------- /read_me/assets/images/quotation3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/quotation3.png -------------------------------------------------------------------------------- /read_me/assets/images/return1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/return1.png -------------------------------------------------------------------------------- /read_me/assets/images/role1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/role1.png -------------------------------------------------------------------------------- /read_me/assets/images/sale1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/sale1.png -------------------------------------------------------------------------------- /read_me/assets/images/sale2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/sale2.png -------------------------------------------------------------------------------- /read_me/assets/images/sale3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/sale3.png -------------------------------------------------------------------------------- /read_me/assets/images/sale4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/sale4.png -------------------------------------------------------------------------------- /read_me/assets/images/sale5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/sale5.png -------------------------------------------------------------------------------- /read_me/assets/images/sale6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/sale6.png -------------------------------------------------------------------------------- /read_me/assets/images/supplier1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/supplier1.png -------------------------------------------------------------------------------- /read_me/assets/images/tax1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/tax1.png -------------------------------------------------------------------------------- /read_me/assets/images/transfer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/transfer1.png -------------------------------------------------------------------------------- /read_me/assets/images/translation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/translation.png -------------------------------------------------------------------------------- /read_me/assets/images/unit1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/unit1.png -------------------------------------------------------------------------------- /read_me/assets/images/update1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/update1.png -------------------------------------------------------------------------------- /read_me/assets/images/update2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/update2.png -------------------------------------------------------------------------------- /read_me/assets/images/update3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/update3.png -------------------------------------------------------------------------------- /read_me/assets/images/update4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/update4.png -------------------------------------------------------------------------------- /read_me/assets/images/update5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/update5.png -------------------------------------------------------------------------------- /read_me/assets/images/update6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/update6.png -------------------------------------------------------------------------------- /read_me/assets/images/update7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/update7.png -------------------------------------------------------------------------------- /read_me/assets/images/update_env.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/update_env.png -------------------------------------------------------------------------------- /read_me/assets/images/user1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/user1.png -------------------------------------------------------------------------------- /read_me/assets/images/warehouse1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/images/warehouse1.png -------------------------------------------------------------------------------- /read_me/assets/malihu-custom-scrollbar-plugin/mCSB_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/read_me/assets/malihu-custom-scrollbar-plugin/mCSB_buttons.png -------------------------------------------------------------------------------- /resources/assets/js/app.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * First we will load all of this project's JavaScript dependencies which 4 | * includes Vue and other libraries. It is a great starting point when 5 | * building robust, powerful web applications using Vue and Laravel. 6 | */ 7 | 8 | require('./bootstrap'); 9 | 10 | window.Vue = require('vue'); 11 | 12 | /** 13 | * Next, we will create a fresh Vue application instance and attach it to 14 | * the page. Then, you may begin adding components to this application 15 | * or customize the JavaScript scaffolding to fit your unique needs. 16 | */ 17 | 18 | Vue.component('example-component', require('./components/ExampleComponent.vue')); 19 | 20 | const app = new Vue({ 21 | el: '#app' 22 | }); 23 | -------------------------------------------------------------------------------- /resources/assets/js/components/ExampleComponent.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 24 | -------------------------------------------------------------------------------- /resources/assets/sass/_variables.scss: -------------------------------------------------------------------------------- 1 | 2 | // Body 3 | $body-bg: #f5f8fa; 4 | 5 | // Typography 6 | $font-family-sans-serif: "Raleway", sans-serif; 7 | $font-size-base: 0.9rem; 8 | $line-height-base: 1.6; 9 | $text-color: #636b6f; 10 | 11 | // Navbar 12 | $navbar-default-bg: #fff; 13 | 14 | // Buttons 15 | $btn-default-color: $text-color; 16 | 17 | // Panels 18 | $panel-default-heading-bg: #fff; 19 | -------------------------------------------------------------------------------- /resources/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | 2 | // Fonts 3 | @import url("https://fonts.googleapis.com/css?family=Raleway:300,400,600"); 4 | 5 | // Variables 6 | @import "variables"; 7 | 8 | // Bootstrap 9 | @import '~bootstrap/scss/bootstrap'; 10 | 11 | .navbar-laravel { 12 | background-color: #fff; 13 | box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04); 14 | } 15 | -------------------------------------------------------------------------------- /resources/js/components/ExampleComponent.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 24 | -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- 1 | 'These credentials do not match our records.', 17 | 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- 1 | '« Previous', 17 | 'next' => 'Next »', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/sass/_variables.scss: -------------------------------------------------------------------------------- 1 | // Body 2 | $body-bg: #f8fafc; 3 | 4 | // Typography 5 | $font-family-sans-serif: 'Nunito', sans-serif; 6 | $font-size-base: 0.9rem; 7 | $line-height-base: 1.6; 8 | 9 | // Colors 10 | $blue: #3490dc; 11 | $indigo: #6574cd; 12 | $purple: #9561e2; 13 | $pink: #f66d9b; 14 | $red: #e3342f; 15 | $orange: #f6993f; 16 | $yellow: #ffed4a; 17 | $green: #38c172; 18 | $teal: #4dc0b5; 19 | $cyan: #6cb2eb; 20 | -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- 1 | // Fonts 2 | @import url('https://fonts.googleapis.com/css?family=Nunito'); 3 | 4 | // Variables 5 | @import 'variables'; 6 | 7 | // Bootstrap 8 | @import '~bootstrap/scss/bootstrap'; 9 | -------------------------------------------------------------------------------- /resources/views/mail/biller_create.blade.php: -------------------------------------------------------------------------------- 1 |

Congratulation {{$name}}!

2 |

Hope that you will be dedicated and honest with your job

3 |

Thank you

-------------------------------------------------------------------------------- /resources/views/mail/customer_create.blade.php: -------------------------------------------------------------------------------- 1 |

Congratulation {{$name}}!

2 |

Hope that our service will satisfy you

3 |

Thank you

-------------------------------------------------------------------------------- /resources/views/mail/customer_deposit.blade.php: -------------------------------------------------------------------------------- 1 |

Hey {{$name}}!

2 |

{{$amount}} {{$general_setting->currency}} has successfully recharged in your account.

3 |

Your current balance is: {{$balance}}

4 |

Thank you

-------------------------------------------------------------------------------- /resources/views/mail/delivery_details.blade.php: -------------------------------------------------------------------------------- 1 |

Delivery Details

2 |

Dear {{$customer}},

3 | @if($status == 2) 4 |

Your Product is Delivering.

5 | @else 6 |

Your Product is Delivered.

7 | @endif 8 |

Sale Reference: {{$sale_reference}}

9 |

Delivery Reference: {{$delivery_reference}}

10 |

Destination: {{$address}}

11 | @if($delivered_by) 12 |

Delivered By: {{$delivered_by}}

13 | @endif 14 |

Thank You

-------------------------------------------------------------------------------- /resources/views/mail/gift_card_create.blade.php: -------------------------------------------------------------------------------- 1 |

Hey {{$name}}!

2 |

A GiftCard has successfully created for You. Card no: {{$card_no}}.

3 |

Your current balance is: {{$amount}}

4 |

GiftCard expired date is: {{$expired_date}}

5 |

Thank you

-------------------------------------------------------------------------------- /resources/views/mail/gift_card_recharge.blade.php: -------------------------------------------------------------------------------- 1 |

Hey {{$name}}!

2 |

{{$amount}} {{$general_setting->currency}} has successfully recharged in your GiftCard. Card no: {{$card_no}}.

3 |

Your current balance is: {{$balance}}

4 |

Thank you

-------------------------------------------------------------------------------- /resources/views/mail/holiday_approve.blade.php: -------------------------------------------------------------------------------- 1 |

Congratulation {{$name}}!

2 |

Your requested holiday has just approved.

3 |

Thank you

-------------------------------------------------------------------------------- /resources/views/mail/payment_details.blade.php: -------------------------------------------------------------------------------- 1 |

Payment Details

2 |

Sale Reference: {{$sale_reference}}

3 |

Payment Reference: {{$payment_reference}}

4 |

Payment Method: {{$payment_method}}

5 |

Grand Total: {{$grand_total}} {{$general_setting->currency}}

6 |

Paid Amount: {{$paid_amount}} {{$general_setting->currency}}

7 |

Due: {{number_format((float)($grand_total - $paid_amount), 2, '.', '')}} {{$general_setting->currency}}

8 |

Thank You

9 | -------------------------------------------------------------------------------- /resources/views/mail/payroll_details.blade.php: -------------------------------------------------------------------------------- 1 |

Hey {{$name}}!

2 |

Reference No: {{$reference_no}}

3 |

Your payroll is: {{$amount}} {{$general_setting->currency}}

4 |

Thank you

-------------------------------------------------------------------------------- /resources/views/mail/supplier_create.blade.php: -------------------------------------------------------------------------------- 1 |

Congratulation {{$name}}!

2 |

Hope that our deal will be prosperous

3 |

Thank you

-------------------------------------------------------------------------------- /resources/views/mail/user_details.blade.php: -------------------------------------------------------------------------------- 1 |

Your Username : {{$name}}

2 |

Your Password : {{$password}}

-------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- 1 | get('/user', function (Request $request) { 17 | return $request->user(); 18 | }); 19 | -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- 1 | id === (int) $id; 16 | }); 17 | -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- 1 | comment(Inspiring::quote()); 18 | })->describe('Display an inspiring quote'); 19 | -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | 10 | $uri = urldecode( 11 | parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) 12 | ); 13 | 14 | // This file allows us to emulate Apache's "mod_rewrite" functionality from the 15 | // built-in PHP web server. This provides a convenient way to test a Laravel 16 | // application without having installed a "real" web server software here. 17 | if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) { 18 | return false; 19 | } 20 | 21 | require_once __DIR__.'/public/index.php'; 22 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | config.php 2 | routes.php 3 | schedule-* 4 | compiled.php 5 | services.json 6 | events.scanned.php 7 | routes.scanned.php 8 | down 9 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/laravel.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlondelSeumo/Inventory-Management-System-with-POS-HRM-Accounting/f0d2f7a829643863348a9ab7801eccccf8d8ec1e/storage/logs/laravel.log -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- 1 | make(Kernel::class)->bootstrap(); 19 | 20 | return $app; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- 1 | get('/'); 18 | 19 | $response->assertStatus(200); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- 1 | const mix = require('laravel-mix'); 2 | 3 | /* 4 | |-------------------------------------------------------------------------- 5 | | Mix Asset Management 6 | |-------------------------------------------------------------------------- 7 | | 8 | | Mix provides a clean, fluent API for defining some Webpack build steps 9 | | for your Laravel application. By default, we are compiling the Sass 10 | | file for the application as well as bundling up all the JS files. 11 | | 12 | */ 13 | 14 | mix.js('resources/js/app.js', 'public/js') 15 | .sass('resources/sass/app.scss', 'public/css'); 16 | --------------------------------------------------------------------------------