├── .angular-cli.json ├── .editorconfig ├── .gitignore ├── README.md ├── e2e ├── app.e2e-spec.ts ├── app.po.ts └── tsconfig.e2e.json ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── screenshots └── Screenshot_2018-04-04_00-19-08.png ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── common │ │ ├── services │ │ │ ├── auth-gaurd.service.spec.ts │ │ │ ├── auth-gaurd.service.ts │ │ │ ├── auth.service.spec.ts │ │ │ ├── auth.service.ts │ │ │ ├── user.service.spec.ts │ │ │ └── user.service.ts │ │ └── shared-common.module.ts │ ├── config │ │ ├── api.config.ts │ │ └── interceptors │ │ │ ├── http.interceptor.ts │ │ │ └── http.service.ts │ ├── login │ │ ├── login.component.html │ │ ├── login.component.scss │ │ ├── login.component.spec.ts │ │ └── login.component.ts │ └── modules │ │ └── main │ │ ├── common │ │ ├── components │ │ │ ├── print-bill │ │ │ │ ├── print-bill.component.html │ │ │ │ ├── print-bill.component.scss │ │ │ │ ├── print-bill.component.spec.ts │ │ │ │ └── print-bill.component.ts │ │ │ └── store-select │ │ │ │ ├── store-select.component.html │ │ │ │ ├── store-select.component.scss │ │ │ │ ├── store-select.component.spec.ts │ │ │ │ └── store-select.component.ts │ │ ├── models │ │ │ ├── brand.ts │ │ │ ├── customer.ts │ │ │ ├── item.ts │ │ │ ├── itemtax.ts │ │ │ ├── order.ts │ │ │ ├── organisation.ts │ │ │ ├── product.ts │ │ │ ├── stock.ts │ │ │ └── store.ts │ │ └── services │ │ │ ├── order.service.spec.ts │ │ │ ├── order.service.ts │ │ │ ├── organisation.service.spec.ts │ │ │ ├── organisation.service.ts │ │ │ ├── product.service.spec.ts │ │ │ ├── product.service.ts │ │ │ ├── stock.service.spec.ts │ │ │ ├── stock.service.ts │ │ │ ├── store.service.spec.ts │ │ │ └── store.service.ts │ │ ├── components │ │ ├── dashboard │ │ │ ├── dashboard.component.html │ │ │ ├── dashboard.component.scss │ │ │ ├── dashboard.component.spec.ts │ │ │ └── dashboard.component.ts │ │ └── main │ │ │ ├── main.component.html │ │ │ ├── main.component.scss │ │ │ ├── main.component.spec.ts │ │ │ └── main.component.ts │ │ ├── main-routing.module.ts │ │ ├── main.module.ts │ │ └── modules │ │ ├── billing │ │ ├── billing-routing.module.ts │ │ ├── billing.component.html │ │ ├── billing.component.scss │ │ ├── billing.component.spec.ts │ │ ├── billing.component.ts │ │ ├── billing.module.ts │ │ └── components │ │ │ ├── cart │ │ │ ├── cart-service.spec.ts │ │ │ ├── cart-service.ts │ │ │ ├── cart.component.html │ │ │ ├── cart.component.scss │ │ │ ├── cart.component.spec.ts │ │ │ └── cart.component.ts │ │ │ ├── customer-info │ │ │ ├── customer-info.component.html │ │ │ ├── customer-info.component.scss │ │ │ ├── customer-info.component.spec.ts │ │ │ └── customer-info.component.ts │ │ │ ├── product-detail │ │ │ ├── product-detail.component.html │ │ │ ├── product-detail.component.scss │ │ │ ├── product-detail.component.spec.ts │ │ │ └── product-detail.component.ts │ │ │ ├── product-list │ │ │ ├── product-list.component.html │ │ │ ├── product-list.component.scss │ │ │ ├── product-list.component.spec.ts │ │ │ └── product-list.component.ts │ │ │ └── product-search │ │ │ ├── product-search.component.html │ │ │ ├── product-search.component.scss │ │ │ ├── product-search.component.spec.ts │ │ │ └── product-search.component.ts │ │ ├── inventory │ │ ├── add-stock │ │ │ ├── add-stock.component.html │ │ │ ├── add-stock.component.scss │ │ │ ├── add-stock.component.spec.ts │ │ │ └── add-stock.component.ts │ │ ├── inventory-routing.module.ts │ │ ├── inventory.component.html │ │ ├── inventory.component.scss │ │ ├── inventory.component.spec.ts │ │ ├── inventory.component.ts │ │ └── inventory.module.ts │ │ └── report │ │ ├── report-routing.module.ts │ │ ├── report.component.html │ │ ├── report.component.scss │ │ ├── report.component.spec.ts │ │ ├── report.component.ts │ │ └── report.module.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── ngsw-config.json ├── polyfills.ts ├── styles.scss ├── test.ts ├── theme.scss ├── tsconfig.app.json ├── tsconfig.spec.json └── typings.d.ts ├── tsconfig.json ├── tslint.json ├── yarn-error.log └── yarn.lock /.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/.angular-cli.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/README.md -------------------------------------------------------------------------------- /e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/e2e/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/package.json -------------------------------------------------------------------------------- /protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/protractor.conf.js -------------------------------------------------------------------------------- /screenshots/Screenshot_2018-04-04_00-19-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/screenshots/Screenshot_2018-04-04_00-19-08.png -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/common/services/auth-gaurd.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/common/services/auth-gaurd.service.spec.ts -------------------------------------------------------------------------------- /src/app/common/services/auth-gaurd.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/common/services/auth-gaurd.service.ts -------------------------------------------------------------------------------- /src/app/common/services/auth.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/common/services/auth.service.spec.ts -------------------------------------------------------------------------------- /src/app/common/services/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/common/services/auth.service.ts -------------------------------------------------------------------------------- /src/app/common/services/user.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/common/services/user.service.spec.ts -------------------------------------------------------------------------------- /src/app/common/services/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/common/services/user.service.ts -------------------------------------------------------------------------------- /src/app/common/shared-common.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/common/shared-common.module.ts -------------------------------------------------------------------------------- /src/app/config/api.config.ts: -------------------------------------------------------------------------------- 1 | export const MOCK_API: string = 'http://127.0.0.1:5000/api/v1/'; 2 | -------------------------------------------------------------------------------- /src/app/config/interceptors/http.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/config/interceptors/http.interceptor.ts -------------------------------------------------------------------------------- /src/app/config/interceptors/http.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/config/interceptors/http.service.ts -------------------------------------------------------------------------------- /src/app/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/login/login.component.html -------------------------------------------------------------------------------- /src/app/login/login.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/login/login.component.scss -------------------------------------------------------------------------------- /src/app/login/login.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/login/login.component.spec.ts -------------------------------------------------------------------------------- /src/app/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/login/login.component.ts -------------------------------------------------------------------------------- /src/app/modules/main/common/components/print-bill/print-bill.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/common/components/print-bill/print-bill.component.html -------------------------------------------------------------------------------- /src/app/modules/main/common/components/print-bill/print-bill.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/modules/main/common/components/print-bill/print-bill.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/common/components/print-bill/print-bill.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/main/common/components/print-bill/print-bill.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/common/components/print-bill/print-bill.component.ts -------------------------------------------------------------------------------- /src/app/modules/main/common/components/store-select/store-select.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/common/components/store-select/store-select.component.html -------------------------------------------------------------------------------- /src/app/modules/main/common/components/store-select/store-select.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/modules/main/common/components/store-select/store-select.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/common/components/store-select/store-select.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/main/common/components/store-select/store-select.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/common/components/store-select/store-select.component.ts -------------------------------------------------------------------------------- /src/app/modules/main/common/models/brand.ts: -------------------------------------------------------------------------------- 1 | export interface Brand { 2 | id: number; 3 | name: string; 4 | } 5 | -------------------------------------------------------------------------------- /src/app/modules/main/common/models/customer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/common/models/customer.ts -------------------------------------------------------------------------------- /src/app/modules/main/common/models/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/common/models/item.ts -------------------------------------------------------------------------------- /src/app/modules/main/common/models/itemtax.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/common/models/itemtax.ts -------------------------------------------------------------------------------- /src/app/modules/main/common/models/order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/common/models/order.ts -------------------------------------------------------------------------------- /src/app/modules/main/common/models/organisation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/common/models/organisation.ts -------------------------------------------------------------------------------- /src/app/modules/main/common/models/product.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/common/models/product.ts -------------------------------------------------------------------------------- /src/app/modules/main/common/models/stock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/common/models/stock.ts -------------------------------------------------------------------------------- /src/app/modules/main/common/models/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/common/models/store.ts -------------------------------------------------------------------------------- /src/app/modules/main/common/services/order.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/common/services/order.service.spec.ts -------------------------------------------------------------------------------- /src/app/modules/main/common/services/order.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/common/services/order.service.ts -------------------------------------------------------------------------------- /src/app/modules/main/common/services/organisation.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/common/services/organisation.service.spec.ts -------------------------------------------------------------------------------- /src/app/modules/main/common/services/organisation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/common/services/organisation.service.ts -------------------------------------------------------------------------------- /src/app/modules/main/common/services/product.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/common/services/product.service.spec.ts -------------------------------------------------------------------------------- /src/app/modules/main/common/services/product.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/common/services/product.service.ts -------------------------------------------------------------------------------- /src/app/modules/main/common/services/stock.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/common/services/stock.service.spec.ts -------------------------------------------------------------------------------- /src/app/modules/main/common/services/stock.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/common/services/stock.service.ts -------------------------------------------------------------------------------- /src/app/modules/main/common/services/store.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/common/services/store.service.spec.ts -------------------------------------------------------------------------------- /src/app/modules/main/common/services/store.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/common/services/store.service.ts -------------------------------------------------------------------------------- /src/app/modules/main/components/dashboard/dashboard.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/components/dashboard/dashboard.component.html -------------------------------------------------------------------------------- /src/app/modules/main/components/dashboard/dashboard.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/modules/main/components/dashboard/dashboard.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/components/dashboard/dashboard.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/main/components/dashboard/dashboard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/components/dashboard/dashboard.component.ts -------------------------------------------------------------------------------- /src/app/modules/main/components/main/main.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/components/main/main.component.html -------------------------------------------------------------------------------- /src/app/modules/main/components/main/main.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/modules/main/components/main/main.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/components/main/main.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/main/components/main/main.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/components/main/main.component.ts -------------------------------------------------------------------------------- /src/app/modules/main/main-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/main-routing.module.ts -------------------------------------------------------------------------------- /src/app/modules/main/main.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/main.module.ts -------------------------------------------------------------------------------- /src/app/modules/main/modules/billing/billing-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/modules/billing/billing-routing.module.ts -------------------------------------------------------------------------------- /src/app/modules/main/modules/billing/billing.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/modules/billing/billing.component.html -------------------------------------------------------------------------------- /src/app/modules/main/modules/billing/billing.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/modules/main/modules/billing/billing.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/modules/billing/billing.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/main/modules/billing/billing.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/modules/billing/billing.component.ts -------------------------------------------------------------------------------- /src/app/modules/main/modules/billing/billing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/modules/billing/billing.module.ts -------------------------------------------------------------------------------- /src/app/modules/main/modules/billing/components/cart/cart-service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/modules/billing/components/cart/cart-service.spec.ts -------------------------------------------------------------------------------- /src/app/modules/main/modules/billing/components/cart/cart-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/modules/billing/components/cart/cart-service.ts -------------------------------------------------------------------------------- /src/app/modules/main/modules/billing/components/cart/cart.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/modules/billing/components/cart/cart.component.html -------------------------------------------------------------------------------- /src/app/modules/main/modules/billing/components/cart/cart.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/modules/main/modules/billing/components/cart/cart.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/modules/billing/components/cart/cart.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/main/modules/billing/components/cart/cart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/modules/billing/components/cart/cart.component.ts -------------------------------------------------------------------------------- /src/app/modules/main/modules/billing/components/customer-info/customer-info.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/modules/billing/components/customer-info/customer-info.component.html -------------------------------------------------------------------------------- /src/app/modules/main/modules/billing/components/customer-info/customer-info.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/modules/main/modules/billing/components/customer-info/customer-info.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/modules/billing/components/customer-info/customer-info.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/main/modules/billing/components/customer-info/customer-info.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/modules/billing/components/customer-info/customer-info.component.ts -------------------------------------------------------------------------------- /src/app/modules/main/modules/billing/components/product-detail/product-detail.component.html: -------------------------------------------------------------------------------- 1 |
2 | product-detail works! 3 |
4 | -------------------------------------------------------------------------------- /src/app/modules/main/modules/billing/components/product-detail/product-detail.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/modules/main/modules/billing/components/product-detail/product-detail.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/modules/billing/components/product-detail/product-detail.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/main/modules/billing/components/product-detail/product-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/modules/billing/components/product-detail/product-detail.component.ts -------------------------------------------------------------------------------- /src/app/modules/main/modules/billing/components/product-list/product-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/modules/billing/components/product-list/product-list.component.html -------------------------------------------------------------------------------- /src/app/modules/main/modules/billing/components/product-list/product-list.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/modules/billing/components/product-list/product-list.component.scss -------------------------------------------------------------------------------- /src/app/modules/main/modules/billing/components/product-list/product-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/modules/billing/components/product-list/product-list.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/main/modules/billing/components/product-list/product-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/modules/billing/components/product-list/product-list.component.ts -------------------------------------------------------------------------------- /src/app/modules/main/modules/billing/components/product-search/product-search.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/modules/billing/components/product-search/product-search.component.html -------------------------------------------------------------------------------- /src/app/modules/main/modules/billing/components/product-search/product-search.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/modules/main/modules/billing/components/product-search/product-search.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/modules/billing/components/product-search/product-search.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/main/modules/billing/components/product-search/product-search.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/modules/billing/components/product-search/product-search.component.ts -------------------------------------------------------------------------------- /src/app/modules/main/modules/inventory/add-stock/add-stock.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/modules/inventory/add-stock/add-stock.component.html -------------------------------------------------------------------------------- /src/app/modules/main/modules/inventory/add-stock/add-stock.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/modules/main/modules/inventory/add-stock/add-stock.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/modules/inventory/add-stock/add-stock.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/main/modules/inventory/add-stock/add-stock.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/modules/inventory/add-stock/add-stock.component.ts -------------------------------------------------------------------------------- /src/app/modules/main/modules/inventory/inventory-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/modules/inventory/inventory-routing.module.ts -------------------------------------------------------------------------------- /src/app/modules/main/modules/inventory/inventory.component.html: -------------------------------------------------------------------------------- 1 |2 | inventory works! 3 |
4 | -------------------------------------------------------------------------------- /src/app/modules/main/modules/inventory/inventory.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/modules/main/modules/inventory/inventory.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/modules/inventory/inventory.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/main/modules/inventory/inventory.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/modules/inventory/inventory.component.ts -------------------------------------------------------------------------------- /src/app/modules/main/modules/inventory/inventory.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/modules/inventory/inventory.module.ts -------------------------------------------------------------------------------- /src/app/modules/main/modules/report/report-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/modules/report/report-routing.module.ts -------------------------------------------------------------------------------- /src/app/modules/main/modules/report/report.component.html: -------------------------------------------------------------------------------- 1 |2 | report works! 3 |
4 | -------------------------------------------------------------------------------- /src/app/modules/main/modules/report/report.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/modules/main/modules/report/report.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/modules/report/report.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/main/modules/report/report.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/modules/report/report.component.ts -------------------------------------------------------------------------------- /src/app/modules/main/modules/report/report.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/app/modules/main/modules/report/report.module.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/ngsw-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/ngsw-config.json -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/theme.scss -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/yarn-error.log -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh1e/pos/HEAD/yarn.lock --------------------------------------------------------------------------------