├── .clauderc ├── .editorconfig ├── .eslintrc ├── .github └── workflows │ ├── ci.yml │ └── linter.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── FEATURES.md ├── POS ├── .claude.md ├── .gitignore ├── CHECKLIST.md ├── OFFLINE_IMPLEMENTATION_COMPLETE.md ├── OFFLINE_IMPLEMENTATION_STATUS.md ├── README.md ├── auto-imports.d.ts ├── biome.json ├── components.d.ts ├── favicon.svg ├── index.html ├── manifest.webmanifest ├── package.json ├── postcss.config.js ├── public │ ├── favicon.png │ ├── icon-maskable.svg │ ├── icon.svg │ └── offline.html ├── src │ ├── App.vue │ ├── assets │ │ └── Inter │ │ │ ├── Inter-Black.woff │ │ │ ├── Inter-Black.woff2 │ │ │ ├── Inter-BlackItalic.woff │ │ │ ├── Inter-BlackItalic.woff2 │ │ │ ├── Inter-Bold.woff │ │ │ ├── Inter-Bold.woff2 │ │ │ ├── Inter-BoldItalic.woff │ │ │ ├── Inter-BoldItalic.woff2 │ │ │ ├── Inter-ExtraBold.woff │ │ │ ├── Inter-ExtraBold.woff2 │ │ │ ├── Inter-ExtraBoldItalic.woff │ │ │ ├── Inter-ExtraBoldItalic.woff2 │ │ │ ├── Inter-ExtraLight.woff │ │ │ ├── Inter-ExtraLight.woff2 │ │ │ ├── Inter-ExtraLightItalic.woff │ │ │ ├── Inter-ExtraLightItalic.woff2 │ │ │ ├── Inter-Italic.woff │ │ │ ├── Inter-Italic.woff2 │ │ │ ├── Inter-Light.woff │ │ │ ├── Inter-Light.woff2 │ │ │ ├── Inter-LightItalic.woff │ │ │ ├── Inter-LightItalic.woff2 │ │ │ ├── Inter-Medium.woff │ │ │ ├── Inter-Medium.woff2 │ │ │ ├── Inter-MediumItalic.woff │ │ │ ├── Inter-MediumItalic.woff2 │ │ │ ├── Inter-Regular.woff │ │ │ ├── Inter-Regular.woff2 │ │ │ ├── Inter-SemiBold.woff │ │ │ ├── Inter-SemiBold.woff2 │ │ │ ├── Inter-SemiBoldItalic.woff │ │ │ ├── Inter-SemiBoldItalic.woff2 │ │ │ ├── Inter-Thin.woff │ │ │ ├── Inter-Thin.woff2 │ │ │ ├── Inter-ThinItalic.woff │ │ │ ├── Inter-ThinItalic.woff2 │ │ │ ├── Inter-italic.var.woff2 │ │ │ ├── Inter-roman.var.woff2 │ │ │ ├── Inter.var.woff2 │ │ │ └── inter.css │ ├── components │ │ ├── ShiftClosingDialog.vue │ │ ├── ShiftOpeningDialog.vue │ │ ├── common │ │ │ ├── ActionButton.vue │ │ │ ├── AutocompleteSelect.vue │ │ │ ├── ClearCacheOverlay.vue │ │ │ ├── CountryCodeSelector.vue │ │ │ ├── InstallAppBadge.vue │ │ │ ├── LanguageSwitcher.vue │ │ │ ├── LazyImage.vue │ │ │ ├── LoadingSpinner.vue │ │ │ ├── POSFooter.vue │ │ │ ├── PhoneInput.vue │ │ │ ├── StatusBadge.vue │ │ │ ├── Toast.vue │ │ │ ├── TranslatedHTML.vue │ │ │ └── UserMenu.vue │ │ ├── invoices │ │ │ ├── InvoiceDetailDialog.vue │ │ │ ├── InvoiceFilters.vue │ │ │ └── InvoiceManagement.vue │ │ ├── partials │ │ │ └── PartialPayments.vue │ │ ├── pos │ │ │ ├── ManagementSlider.vue │ │ │ └── POSHeader.vue │ │ ├── sale │ │ │ ├── BatchSerialDialog.vue │ │ │ ├── CouponDialog.vue │ │ │ ├── CouponManagement.vue │ │ │ ├── CreateCustomerDialog.vue │ │ │ ├── CustomerDialog.vue │ │ │ ├── DraftInvoicesDialog.vue │ │ │ ├── EditItemDialog.vue │ │ │ ├── InvoiceCart.vue │ │ │ ├── InvoiceHistoryDialog.vue │ │ │ ├── ItemSelectionDialog.vue │ │ │ ├── ItemsSelector.vue │ │ │ ├── OffersDialog.vue │ │ │ ├── OfflineInvoicesDialog.vue │ │ │ ├── PaymentDialog.vue │ │ │ ├── PromotionManagement.vue │ │ │ ├── ReturnInvoiceDialog.vue │ │ │ └── WarehouseAvailabilityDialog.vue │ │ └── settings │ │ │ ├── CheckboxField.vue │ │ │ ├── NumberField.vue │ │ │ ├── POSSettings.vue │ │ │ ├── SelectField.vue │ │ │ ├── SettingsSection.vue │ │ │ └── settingsConfig.js │ ├── composables │ │ ├── useCountryCodes.js │ │ ├── useDialogState.js │ │ ├── useFormatters.js │ │ ├── useInvoice.js │ │ ├── useInvoiceFilters.js │ │ ├── useItems.js │ │ ├── useLazyLoad.js │ │ ├── useLocale.js │ │ ├── useOffline.js │ │ ├── usePOSEvents.js │ │ ├── usePWAInstall.js │ │ ├── usePermissions.js │ │ ├── usePosProfile.js │ │ ├── useRealtimePosProfile.js │ │ ├── useRealtimeStock.js │ │ ├── useShift.js │ │ ├── useStock.js │ │ └── useToast.js │ ├── data │ │ ├── session.js │ │ └── user.js │ ├── index.css │ ├── main.js │ ├── pages │ │ ├── Home.vue │ │ ├── Login.vue │ │ └── POSSale.vue │ ├── router.js │ ├── socket.js │ ├── stores │ │ ├── bootstrap.js │ │ ├── countries.js │ │ ├── customerSearch.js │ │ ├── invoiceFilters.js │ │ ├── itemSearch.js │ │ ├── posCart.js │ │ ├── posDrafts.js │ │ ├── posEvents.js │ │ ├── posOffers.js │ │ ├── posSettings.js │ │ ├── posShift.js │ │ ├── posSync.js │ │ ├── posUI.js │ │ ├── serialNumber.js │ │ └── stock.js │ ├── utils │ │ ├── apiWrapper.js │ │ ├── csrf.js │ │ ├── currency.js │ │ ├── draftManager.js │ │ ├── errorHandler.js │ │ ├── invoice.js │ │ ├── logger.js │ │ ├── lowEndOptimizations.js │ │ ├── offline │ │ │ ├── cache.js │ │ │ ├── db.js │ │ │ ├── index.js │ │ │ ├── items.js │ │ │ ├── offlineState.js │ │ │ ├── sync.js │ │ │ ├── translationCache.js │ │ │ └── workerClient.js │ │ ├── payment.js │ │ ├── performanceConfig.js │ │ ├── printInvoice.js │ │ ├── stockValidator.js │ │ └── translation.ts │ └── workers │ │ └── offline.worker.js ├── tailwind.config.js └── vite.config.js ├── POS_MIGRATION_PLAN.md ├── POS_SALE_INTEGRATION_PLAN.md ├── README.md ├── docs ├── QUICKSTART_VERSION.md ├── README.md ├── STARTUP_SEQUENCE.md ├── VERSION_CONTROL.md └── screenshots │ ├── 01-main-dashboard.png │ ├── 02-cart-with-items.png │ ├── 03-offers-dialog.png │ ├── 04-payment-dialog.png │ ├── 06-settings.png │ └── sales-cycle.gif ├── license.txt ├── package.json ├── pos_next ├── __init__.py ├── api │ ├── __init__.py │ ├── bootstrap.py │ ├── branding.py │ ├── credit_sales.py │ ├── customers.py │ ├── invoices.py │ ├── items.py │ ├── localization.py │ ├── offers.py │ ├── partial_payments.py │ ├── pos_profile.py │ ├── promotions.py │ ├── sales_invoice_hooks.py │ ├── shifts.py │ └── utilities.py ├── config │ └── __init__.py ├── fixtures │ ├── custom_field.json │ └── print_format.json ├── hooks.py ├── install.py ├── modules.txt ├── patches.txt ├── patches │ └── v1_7_0 │ │ └── reinstall_workspace.py ├── pos_next │ ├── __init__.py │ ├── doctype │ │ ├── __init__.py │ │ ├── brainwise_branding │ │ │ ├── __init__.py │ │ │ ├── brainwise_branding.js │ │ │ ├── brainwise_branding.json │ │ │ └── brainwise_branding.py │ │ ├── pos_closing_shift │ │ │ ├── __init__.py │ │ │ ├── closing_shift_details.html │ │ │ ├── pos_closing_shift.js │ │ │ ├── pos_closing_shift.json │ │ │ ├── pos_closing_shift.py │ │ │ └── test_pos_closing_shift.py │ │ ├── pos_closing_shift_detail │ │ │ ├── __init__.py │ │ │ ├── pos_closing_shift_detail.json │ │ │ └── pos_closing_shift_detail.py │ │ ├── pos_closing_shift_taxes │ │ │ ├── __init__.py │ │ │ ├── pos_closing_shift_taxes.json │ │ │ └── pos_closing_shift_taxes.py │ │ ├── pos_coupon │ │ │ ├── __init__.py │ │ │ ├── pos_coupon.js │ │ │ ├── pos_coupon.json │ │ │ ├── pos_coupon.py │ │ │ └── test_pos_coupon.py │ │ ├── pos_coupon_detail │ │ │ ├── __init__.py │ │ │ ├── pos_coupon_detail.json │ │ │ └── pos_coupon_detail.py │ │ ├── pos_offer │ │ │ ├── __init__.py │ │ │ ├── pos_offer.js │ │ │ ├── pos_offer.json │ │ │ ├── pos_offer.py │ │ │ └── test_pos_offer.py │ │ ├── pos_offer_detail │ │ │ ├── __init__.py │ │ │ ├── pos_offer_detail.json │ │ │ └── pos_offer_detail.py │ │ ├── pos_opening_shift │ │ │ ├── __init__.py │ │ │ ├── pos_opening_shift.js │ │ │ ├── pos_opening_shift.json │ │ │ ├── pos_opening_shift.py │ │ │ ├── pos_opening_shift_list.js │ │ │ └── test_pos_opening_shift.py │ │ ├── pos_opening_shift_detail │ │ │ ├── __init__.py │ │ │ ├── pos_opening_shift_detail.json │ │ │ └── pos_opening_shift_detail.py │ │ ├── pos_payment_entry_reference │ │ │ ├── __init__.py │ │ │ ├── pos_payment_entry_reference.json │ │ │ └── pos_payment_entry_reference.py │ │ ├── pos_settings │ │ │ ├── __init__.py │ │ │ ├── pos_settings.json │ │ │ ├── pos_settings.py │ │ │ └── test_pos_settings.py │ │ ├── referral_code │ │ │ ├── __init__.py │ │ │ ├── referral_code.js │ │ │ ├── referral_code.json │ │ │ ├── referral_code.py │ │ │ └── test_referral_code.py │ │ └── sales_invoice_reference │ │ │ ├── __init__.py │ │ │ ├── sales_invoice_reference.json │ │ │ └── sales_invoice_reference.py │ └── workspace │ │ └── posnext │ │ └── posnext.json ├── public │ └── .gitkeep ├── realtime_events.py ├── tasks │ ├── __init__.py │ ├── branding_monitor.py │ └── cleanup_expired_promotions.py ├── templates │ ├── __init__.py │ └── pages │ │ └── __init__.py ├── translations │ └── ar.csv ├── uninstall.py ├── utils.py └── validations.py ├── pyproject.toml └── scripts └── version-bump.sh /.clauderc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/.clauderc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/.github/workflows/linter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /FEATURES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/FEATURES.md -------------------------------------------------------------------------------- /POS/.claude.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/.claude.md -------------------------------------------------------------------------------- /POS/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/.gitignore -------------------------------------------------------------------------------- /POS/CHECKLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/CHECKLIST.md -------------------------------------------------------------------------------- /POS/OFFLINE_IMPLEMENTATION_COMPLETE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/OFFLINE_IMPLEMENTATION_COMPLETE.md -------------------------------------------------------------------------------- /POS/OFFLINE_IMPLEMENTATION_STATUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/OFFLINE_IMPLEMENTATION_STATUS.md -------------------------------------------------------------------------------- /POS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/README.md -------------------------------------------------------------------------------- /POS/auto-imports.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/auto-imports.d.ts -------------------------------------------------------------------------------- /POS/biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/biome.json -------------------------------------------------------------------------------- /POS/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/components.d.ts -------------------------------------------------------------------------------- /POS/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/favicon.svg -------------------------------------------------------------------------------- /POS/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/index.html -------------------------------------------------------------------------------- /POS/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/manifest.webmanifest -------------------------------------------------------------------------------- /POS/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/package.json -------------------------------------------------------------------------------- /POS/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/postcss.config.js -------------------------------------------------------------------------------- /POS/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/public/favicon.png -------------------------------------------------------------------------------- /POS/public/icon-maskable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/public/icon-maskable.svg -------------------------------------------------------------------------------- /POS/public/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/public/icon.svg -------------------------------------------------------------------------------- /POS/public/offline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/public/offline.html -------------------------------------------------------------------------------- /POS/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/App.vue -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-Black.woff -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-Black.woff2 -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-BlackItalic.woff -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-BlackItalic.woff2 -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-Bold.woff -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-Bold.woff2 -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-BoldItalic.woff -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-BoldItalic.woff2 -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-ExtraBold.woff -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-ExtraBold.woff2 -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-ExtraBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-ExtraBoldItalic.woff -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-ExtraBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-ExtraBoldItalic.woff2 -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-ExtraLight.woff -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-ExtraLight.woff2 -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-ExtraLightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-ExtraLightItalic.woff -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-ExtraLightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-ExtraLightItalic.woff2 -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-Italic.woff -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-Italic.woff2 -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-Light.woff -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-Light.woff2 -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-LightItalic.woff -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-LightItalic.woff2 -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-Medium.woff -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-Medium.woff2 -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-MediumItalic.woff -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-MediumItalic.woff2 -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-Regular.woff -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-Regular.woff2 -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-SemiBold.woff -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-SemiBold.woff2 -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-SemiBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-SemiBoldItalic.woff -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-Thin.woff -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-Thin.woff2 -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-ThinItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-ThinItalic.woff -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-ThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-ThinItalic.woff2 -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-italic.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-italic.var.woff2 -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter-roman.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter-roman.var.woff2 -------------------------------------------------------------------------------- /POS/src/assets/Inter/Inter.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/Inter.var.woff2 -------------------------------------------------------------------------------- /POS/src/assets/Inter/inter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/assets/Inter/inter.css -------------------------------------------------------------------------------- /POS/src/components/ShiftClosingDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/ShiftClosingDialog.vue -------------------------------------------------------------------------------- /POS/src/components/ShiftOpeningDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/ShiftOpeningDialog.vue -------------------------------------------------------------------------------- /POS/src/components/common/ActionButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/common/ActionButton.vue -------------------------------------------------------------------------------- /POS/src/components/common/AutocompleteSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/common/AutocompleteSelect.vue -------------------------------------------------------------------------------- /POS/src/components/common/ClearCacheOverlay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/common/ClearCacheOverlay.vue -------------------------------------------------------------------------------- /POS/src/components/common/CountryCodeSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/common/CountryCodeSelector.vue -------------------------------------------------------------------------------- /POS/src/components/common/InstallAppBadge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/common/InstallAppBadge.vue -------------------------------------------------------------------------------- /POS/src/components/common/LanguageSwitcher.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/common/LanguageSwitcher.vue -------------------------------------------------------------------------------- /POS/src/components/common/LazyImage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/common/LazyImage.vue -------------------------------------------------------------------------------- /POS/src/components/common/LoadingSpinner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/common/LoadingSpinner.vue -------------------------------------------------------------------------------- /POS/src/components/common/POSFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/common/POSFooter.vue -------------------------------------------------------------------------------- /POS/src/components/common/PhoneInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/common/PhoneInput.vue -------------------------------------------------------------------------------- /POS/src/components/common/StatusBadge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/common/StatusBadge.vue -------------------------------------------------------------------------------- /POS/src/components/common/Toast.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/common/Toast.vue -------------------------------------------------------------------------------- /POS/src/components/common/TranslatedHTML.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/common/TranslatedHTML.vue -------------------------------------------------------------------------------- /POS/src/components/common/UserMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/common/UserMenu.vue -------------------------------------------------------------------------------- /POS/src/components/invoices/InvoiceDetailDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/invoices/InvoiceDetailDialog.vue -------------------------------------------------------------------------------- /POS/src/components/invoices/InvoiceFilters.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/invoices/InvoiceFilters.vue -------------------------------------------------------------------------------- /POS/src/components/invoices/InvoiceManagement.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/invoices/InvoiceManagement.vue -------------------------------------------------------------------------------- /POS/src/components/partials/PartialPayments.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/partials/PartialPayments.vue -------------------------------------------------------------------------------- /POS/src/components/pos/ManagementSlider.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/pos/ManagementSlider.vue -------------------------------------------------------------------------------- /POS/src/components/pos/POSHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/pos/POSHeader.vue -------------------------------------------------------------------------------- /POS/src/components/sale/BatchSerialDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/sale/BatchSerialDialog.vue -------------------------------------------------------------------------------- /POS/src/components/sale/CouponDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/sale/CouponDialog.vue -------------------------------------------------------------------------------- /POS/src/components/sale/CouponManagement.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/sale/CouponManagement.vue -------------------------------------------------------------------------------- /POS/src/components/sale/CreateCustomerDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/sale/CreateCustomerDialog.vue -------------------------------------------------------------------------------- /POS/src/components/sale/CustomerDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/sale/CustomerDialog.vue -------------------------------------------------------------------------------- /POS/src/components/sale/DraftInvoicesDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/sale/DraftInvoicesDialog.vue -------------------------------------------------------------------------------- /POS/src/components/sale/EditItemDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/sale/EditItemDialog.vue -------------------------------------------------------------------------------- /POS/src/components/sale/InvoiceCart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/sale/InvoiceCart.vue -------------------------------------------------------------------------------- /POS/src/components/sale/InvoiceHistoryDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/sale/InvoiceHistoryDialog.vue -------------------------------------------------------------------------------- /POS/src/components/sale/ItemSelectionDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/sale/ItemSelectionDialog.vue -------------------------------------------------------------------------------- /POS/src/components/sale/ItemsSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/sale/ItemsSelector.vue -------------------------------------------------------------------------------- /POS/src/components/sale/OffersDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/sale/OffersDialog.vue -------------------------------------------------------------------------------- /POS/src/components/sale/OfflineInvoicesDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/sale/OfflineInvoicesDialog.vue -------------------------------------------------------------------------------- /POS/src/components/sale/PaymentDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/sale/PaymentDialog.vue -------------------------------------------------------------------------------- /POS/src/components/sale/PromotionManagement.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/sale/PromotionManagement.vue -------------------------------------------------------------------------------- /POS/src/components/sale/ReturnInvoiceDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/sale/ReturnInvoiceDialog.vue -------------------------------------------------------------------------------- /POS/src/components/sale/WarehouseAvailabilityDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/sale/WarehouseAvailabilityDialog.vue -------------------------------------------------------------------------------- /POS/src/components/settings/CheckboxField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/settings/CheckboxField.vue -------------------------------------------------------------------------------- /POS/src/components/settings/NumberField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/settings/NumberField.vue -------------------------------------------------------------------------------- /POS/src/components/settings/POSSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/settings/POSSettings.vue -------------------------------------------------------------------------------- /POS/src/components/settings/SelectField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/settings/SelectField.vue -------------------------------------------------------------------------------- /POS/src/components/settings/SettingsSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/settings/SettingsSection.vue -------------------------------------------------------------------------------- /POS/src/components/settings/settingsConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/components/settings/settingsConfig.js -------------------------------------------------------------------------------- /POS/src/composables/useCountryCodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/composables/useCountryCodes.js -------------------------------------------------------------------------------- /POS/src/composables/useDialogState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/composables/useDialogState.js -------------------------------------------------------------------------------- /POS/src/composables/useFormatters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/composables/useFormatters.js -------------------------------------------------------------------------------- /POS/src/composables/useInvoice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/composables/useInvoice.js -------------------------------------------------------------------------------- /POS/src/composables/useInvoiceFilters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/composables/useInvoiceFilters.js -------------------------------------------------------------------------------- /POS/src/composables/useItems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/composables/useItems.js -------------------------------------------------------------------------------- /POS/src/composables/useLazyLoad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/composables/useLazyLoad.js -------------------------------------------------------------------------------- /POS/src/composables/useLocale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/composables/useLocale.js -------------------------------------------------------------------------------- /POS/src/composables/useOffline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/composables/useOffline.js -------------------------------------------------------------------------------- /POS/src/composables/usePOSEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/composables/usePOSEvents.js -------------------------------------------------------------------------------- /POS/src/composables/usePWAInstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/composables/usePWAInstall.js -------------------------------------------------------------------------------- /POS/src/composables/usePermissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/composables/usePermissions.js -------------------------------------------------------------------------------- /POS/src/composables/usePosProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/composables/usePosProfile.js -------------------------------------------------------------------------------- /POS/src/composables/useRealtimePosProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/composables/useRealtimePosProfile.js -------------------------------------------------------------------------------- /POS/src/composables/useRealtimeStock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/composables/useRealtimeStock.js -------------------------------------------------------------------------------- /POS/src/composables/useShift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/composables/useShift.js -------------------------------------------------------------------------------- /POS/src/composables/useStock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/composables/useStock.js -------------------------------------------------------------------------------- /POS/src/composables/useToast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/composables/useToast.js -------------------------------------------------------------------------------- /POS/src/data/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/data/session.js -------------------------------------------------------------------------------- /POS/src/data/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/data/user.js -------------------------------------------------------------------------------- /POS/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/index.css -------------------------------------------------------------------------------- /POS/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/main.js -------------------------------------------------------------------------------- /POS/src/pages/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/pages/Home.vue -------------------------------------------------------------------------------- /POS/src/pages/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/pages/Login.vue -------------------------------------------------------------------------------- /POS/src/pages/POSSale.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/pages/POSSale.vue -------------------------------------------------------------------------------- /POS/src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/router.js -------------------------------------------------------------------------------- /POS/src/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/socket.js -------------------------------------------------------------------------------- /POS/src/stores/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/stores/bootstrap.js -------------------------------------------------------------------------------- /POS/src/stores/countries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/stores/countries.js -------------------------------------------------------------------------------- /POS/src/stores/customerSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/stores/customerSearch.js -------------------------------------------------------------------------------- /POS/src/stores/invoiceFilters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/stores/invoiceFilters.js -------------------------------------------------------------------------------- /POS/src/stores/itemSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/stores/itemSearch.js -------------------------------------------------------------------------------- /POS/src/stores/posCart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/stores/posCart.js -------------------------------------------------------------------------------- /POS/src/stores/posDrafts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/stores/posDrafts.js -------------------------------------------------------------------------------- /POS/src/stores/posEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/stores/posEvents.js -------------------------------------------------------------------------------- /POS/src/stores/posOffers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/stores/posOffers.js -------------------------------------------------------------------------------- /POS/src/stores/posSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/stores/posSettings.js -------------------------------------------------------------------------------- /POS/src/stores/posShift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/stores/posShift.js -------------------------------------------------------------------------------- /POS/src/stores/posSync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/stores/posSync.js -------------------------------------------------------------------------------- /POS/src/stores/posUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/stores/posUI.js -------------------------------------------------------------------------------- /POS/src/stores/serialNumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/stores/serialNumber.js -------------------------------------------------------------------------------- /POS/src/stores/stock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/stores/stock.js -------------------------------------------------------------------------------- /POS/src/utils/apiWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/utils/apiWrapper.js -------------------------------------------------------------------------------- /POS/src/utils/csrf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/utils/csrf.js -------------------------------------------------------------------------------- /POS/src/utils/currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/utils/currency.js -------------------------------------------------------------------------------- /POS/src/utils/draftManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/utils/draftManager.js -------------------------------------------------------------------------------- /POS/src/utils/errorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/utils/errorHandler.js -------------------------------------------------------------------------------- /POS/src/utils/invoice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/utils/invoice.js -------------------------------------------------------------------------------- /POS/src/utils/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/utils/logger.js -------------------------------------------------------------------------------- /POS/src/utils/lowEndOptimizations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/utils/lowEndOptimizations.js -------------------------------------------------------------------------------- /POS/src/utils/offline/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/utils/offline/cache.js -------------------------------------------------------------------------------- /POS/src/utils/offline/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/utils/offline/db.js -------------------------------------------------------------------------------- /POS/src/utils/offline/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/utils/offline/index.js -------------------------------------------------------------------------------- /POS/src/utils/offline/items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/utils/offline/items.js -------------------------------------------------------------------------------- /POS/src/utils/offline/offlineState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/utils/offline/offlineState.js -------------------------------------------------------------------------------- /POS/src/utils/offline/sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/utils/offline/sync.js -------------------------------------------------------------------------------- /POS/src/utils/offline/translationCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/utils/offline/translationCache.js -------------------------------------------------------------------------------- /POS/src/utils/offline/workerClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/utils/offline/workerClient.js -------------------------------------------------------------------------------- /POS/src/utils/payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/utils/payment.js -------------------------------------------------------------------------------- /POS/src/utils/performanceConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/utils/performanceConfig.js -------------------------------------------------------------------------------- /POS/src/utils/printInvoice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/utils/printInvoice.js -------------------------------------------------------------------------------- /POS/src/utils/stockValidator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/utils/stockValidator.js -------------------------------------------------------------------------------- /POS/src/utils/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/utils/translation.ts -------------------------------------------------------------------------------- /POS/src/workers/offline.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/src/workers/offline.worker.js -------------------------------------------------------------------------------- /POS/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/tailwind.config.js -------------------------------------------------------------------------------- /POS/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS/vite.config.js -------------------------------------------------------------------------------- /POS_MIGRATION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS_MIGRATION_PLAN.md -------------------------------------------------------------------------------- /POS_SALE_INTEGRATION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/POS_SALE_INTEGRATION_PLAN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/README.md -------------------------------------------------------------------------------- /docs/QUICKSTART_VERSION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/docs/QUICKSTART_VERSION.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/STARTUP_SEQUENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/docs/STARTUP_SEQUENCE.md -------------------------------------------------------------------------------- /docs/VERSION_CONTROL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/docs/VERSION_CONTROL.md -------------------------------------------------------------------------------- /docs/screenshots/01-main-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/docs/screenshots/01-main-dashboard.png -------------------------------------------------------------------------------- /docs/screenshots/02-cart-with-items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/docs/screenshots/02-cart-with-items.png -------------------------------------------------------------------------------- /docs/screenshots/03-offers-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/docs/screenshots/03-offers-dialog.png -------------------------------------------------------------------------------- /docs/screenshots/04-payment-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/docs/screenshots/04-payment-dialog.png -------------------------------------------------------------------------------- /docs/screenshots/06-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/docs/screenshots/06-settings.png -------------------------------------------------------------------------------- /docs/screenshots/sales-cycle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/docs/screenshots/sales-cycle.gif -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/license.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/package.json -------------------------------------------------------------------------------- /pos_next/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/__init__.py -------------------------------------------------------------------------------- /pos_next/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/api/__init__.py -------------------------------------------------------------------------------- /pos_next/api/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/api/bootstrap.py -------------------------------------------------------------------------------- /pos_next/api/branding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/api/branding.py -------------------------------------------------------------------------------- /pos_next/api/credit_sales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/api/credit_sales.py -------------------------------------------------------------------------------- /pos_next/api/customers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/api/customers.py -------------------------------------------------------------------------------- /pos_next/api/invoices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/api/invoices.py -------------------------------------------------------------------------------- /pos_next/api/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/api/items.py -------------------------------------------------------------------------------- /pos_next/api/localization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/api/localization.py -------------------------------------------------------------------------------- /pos_next/api/offers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/api/offers.py -------------------------------------------------------------------------------- /pos_next/api/partial_payments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/api/partial_payments.py -------------------------------------------------------------------------------- /pos_next/api/pos_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/api/pos_profile.py -------------------------------------------------------------------------------- /pos_next/api/promotions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/api/promotions.py -------------------------------------------------------------------------------- /pos_next/api/sales_invoice_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/api/sales_invoice_hooks.py -------------------------------------------------------------------------------- /pos_next/api/shifts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/api/shifts.py -------------------------------------------------------------------------------- /pos_next/api/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/api/utilities.py -------------------------------------------------------------------------------- /pos_next/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pos_next/fixtures/custom_field.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/fixtures/custom_field.json -------------------------------------------------------------------------------- /pos_next/fixtures/print_format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/fixtures/print_format.json -------------------------------------------------------------------------------- /pos_next/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/hooks.py -------------------------------------------------------------------------------- /pos_next/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/install.py -------------------------------------------------------------------------------- /pos_next/modules.txt: -------------------------------------------------------------------------------- 1 | POS Next -------------------------------------------------------------------------------- /pos_next/patches.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/patches.txt -------------------------------------------------------------------------------- /pos_next/patches/v1_7_0/reinstall_workspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/patches/v1_7_0/reinstall_workspace.py -------------------------------------------------------------------------------- /pos_next/pos_next/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/brainwise_branding/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/brainwise_branding/__init__.py -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/brainwise_branding/brainwise_branding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/brainwise_branding/brainwise_branding.js -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/brainwise_branding/brainwise_branding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/brainwise_branding/brainwise_branding.json -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/brainwise_branding/brainwise_branding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/brainwise_branding/brainwise_branding.py -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_closing_shift/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_closing_shift/closing_shift_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/pos_closing_shift/closing_shift_details.html -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_closing_shift/pos_closing_shift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/pos_closing_shift/pos_closing_shift.js -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_closing_shift/pos_closing_shift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/pos_closing_shift/pos_closing_shift.json -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_closing_shift/pos_closing_shift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/pos_closing_shift/pos_closing_shift.py -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_closing_shift/test_pos_closing_shift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/pos_closing_shift/test_pos_closing_shift.py -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_closing_shift_detail/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_closing_shift_detail/pos_closing_shift_detail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/pos_closing_shift_detail/pos_closing_shift_detail.json -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_closing_shift_detail/pos_closing_shift_detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/pos_closing_shift_detail/pos_closing_shift_detail.py -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_closing_shift_taxes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_closing_shift_taxes/pos_closing_shift_taxes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/pos_closing_shift_taxes/pos_closing_shift_taxes.json -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_closing_shift_taxes/pos_closing_shift_taxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/pos_closing_shift_taxes/pos_closing_shift_taxes.py -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_coupon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_coupon/pos_coupon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/pos_coupon/pos_coupon.js -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_coupon/pos_coupon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/pos_coupon/pos_coupon.json -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_coupon/pos_coupon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/pos_coupon/pos_coupon.py -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_coupon/test_pos_coupon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/pos_coupon/test_pos_coupon.py -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_coupon_detail/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_coupon_detail/pos_coupon_detail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/pos_coupon_detail/pos_coupon_detail.json -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_coupon_detail/pos_coupon_detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/pos_coupon_detail/pos_coupon_detail.py -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_offer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_offer/pos_offer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/pos_offer/pos_offer.js -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_offer/pos_offer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/pos_offer/pos_offer.json -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_offer/pos_offer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/pos_offer/pos_offer.py -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_offer/test_pos_offer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/pos_offer/test_pos_offer.py -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_offer_detail/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_offer_detail/pos_offer_detail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/pos_offer_detail/pos_offer_detail.json -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_offer_detail/pos_offer_detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/pos_offer_detail/pos_offer_detail.py -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_opening_shift/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_opening_shift/pos_opening_shift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/pos_opening_shift/pos_opening_shift.js -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_opening_shift/pos_opening_shift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/pos_opening_shift/pos_opening_shift.json -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_opening_shift/pos_opening_shift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/pos_opening_shift/pos_opening_shift.py -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_opening_shift/pos_opening_shift_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/pos_opening_shift/pos_opening_shift_list.js -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_opening_shift/test_pos_opening_shift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/pos_opening_shift/test_pos_opening_shift.py -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_opening_shift_detail/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_opening_shift_detail/pos_opening_shift_detail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/pos_opening_shift_detail/pos_opening_shift_detail.json -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_opening_shift_detail/pos_opening_shift_detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/pos_opening_shift_detail/pos_opening_shift_detail.py -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_payment_entry_reference/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_payment_entry_reference/pos_payment_entry_reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/pos_payment_entry_reference/pos_payment_entry_reference.json -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_payment_entry_reference/pos_payment_entry_reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/pos_payment_entry_reference/pos_payment_entry_reference.py -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_settings/pos_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/pos_settings/pos_settings.json -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_settings/pos_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/pos_settings/pos_settings.py -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/pos_settings/test_pos_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/pos_settings/test_pos_settings.py -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/referral_code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/referral_code/referral_code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/referral_code/referral_code.js -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/referral_code/referral_code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/referral_code/referral_code.json -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/referral_code/referral_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/referral_code/referral_code.py -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/referral_code/test_referral_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/referral_code/test_referral_code.py -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/sales_invoice_reference/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/sales_invoice_reference/sales_invoice_reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/sales_invoice_reference/sales_invoice_reference.json -------------------------------------------------------------------------------- /pos_next/pos_next/doctype/sales_invoice_reference/sales_invoice_reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/doctype/sales_invoice_reference/sales_invoice_reference.py -------------------------------------------------------------------------------- /pos_next/pos_next/workspace/posnext/posnext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/pos_next/workspace/posnext/posnext.json -------------------------------------------------------------------------------- /pos_next/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pos_next/realtime_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/realtime_events.py -------------------------------------------------------------------------------- /pos_next/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pos_next/tasks/branding_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/tasks/branding_monitor.py -------------------------------------------------------------------------------- /pos_next/tasks/cleanup_expired_promotions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/tasks/cleanup_expired_promotions.py -------------------------------------------------------------------------------- /pos_next/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pos_next/templates/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pos_next/translations/ar.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/translations/ar.csv -------------------------------------------------------------------------------- /pos_next/uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/uninstall.py -------------------------------------------------------------------------------- /pos_next/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/utils.py -------------------------------------------------------------------------------- /pos_next/validations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pos_next/validations.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/version-bump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainWise-DEV/POSNext/HEAD/scripts/version-bump.sh --------------------------------------------------------------------------------