Skip to content

Instantly share code, notes, and snippets.

@suhailvs
Last active August 10, 2021 14:46
Show Gist options
  • Save suhailvs/14e05798047ab1487db8b2dd8a311576 to your computer and use it in GitHub Desktop.
Save suhailvs/14e05798047ab1487db8b2dd8a311576 to your computer and use it in GitHub Desktop.
Milma frontend doc

Milma Documentation

Milma site has two parts frontend and backend

  1. Make Bill Entry
  2. Purchase Entry
  3. Stock and Financial Report

Frontend

url: https://milmaesell.donams.com

Frontend is a single page app build using Angular 11

Users

Agent

  1. Make Bill Entry
  2. Purchase Entry
  3. Stock and Financial Report

Billing Frontend

Bill entry to customers. Select a product by typing 3 letter of either product code or product name, select UOM(unit of measurement, eg: each, box etc), select a mode which is SP: Selling Price, MRP: Maximum > Retail Price, WP: Wholesale Price, RP: Retail Price or you can select CP for Custom Price. Then type quantity. then you can provide percentage discount or cash discount. Then click on the save button to save the billentry

Functions

app/modules/billing/billentry/components/billentry-cu.components.ts

Packages Used

  1. @angular
  2. @angular/material
  3. ng-select
  4. datatables
  5. angular-datatables
  6. bootstrap
  7. font-awesome
  8. highcharts
  9. highcharts-angular
  10. jquery
  11. moment
  12. ngx-bootstrap
  13. ngx-toastr

Example of module

β”œβ”€β”€ menumanagement
β”‚   β”œβ”€β”€ components
β”‚   β”‚   └── menumanagement.component.ts
β”‚   β”œβ”€β”€ menumanagement.module.ts
β”‚   β”œβ”€β”€ menumanagement-routing.module.ts
β”‚   β”œβ”€β”€ menumanagement.service.ts
β”‚   └── pages
β”‚       └── menumanagement.component.html

Initiate modules in menumanagement.module.ts

import {NgModule} from '@angular/core';
import {CommonModule} from '@angular/common';
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
import {MenumanagementRoutingModule} from './menumanagement-routing.module';
import {MenumanagementComponent} from './components/menumanagement.component';
import {TranslateModule} from '@ngx-translate/core';


@NgModule({
  imports: [
    CommonModule,
    FormsModule,
    ReactiveFormsModule,
    MenumanagementRoutingModule,
    TranslateModule,
  ],
  declarations: [
    MenumanagementComponent,
  ]
})
export class MenumanagementModule {
}

Now link routing urls in menumanagement-routing.module.ts

import {NgModule} from '@angular/core';
import {CommonModule} from '@angular/common';
import {RouterModule, Routes} from '@angular/router';

import {MenumanagementComponent} from './components/menumanagement.component';

const routes: Routes = [
  {path: '', component: MenumanagementComponent},
];

@NgModule({
  imports: [
    RouterModule.forChild(routes),
    CommonModule
  ],
  exports: [RouterModule],
  declarations: []
})

export class MenumanagementRoutingModule {
}

Define Backend(Django) urls in menumanagement.service.ts

import {Injectable} from '@angular/core';
import {HttpClient} from '@angular/common/http';

@Injectable({
  providedIn: 'root'
})
export class MenumanagementService {

  constructor(private  httpClient: HttpClient) {
  }

  postMenumanagement(menus) {
    return this.httpClient.post('/dashboard/syncmenus/', menus);
  }

  postMenumanagementTwolevel(menus) {
    return this.httpClient.post('/dashboard/syncmenus_twolevel/', menus);
  }
}

this will look at url /dashboard/syncmenus/ url from backend.

Define the component.ts components/menumanagement.component.ts:

import {Component, OnInit} from '@angular/core';
import {MenumanagementService} from '../menumanagement.service';
import {ToastrService} from 'ngx-toastr';
import {TranslateService} from '@ngx-translate/core';

@Component({
  selector: 'app-menumanagement',
  templateUrl: '../pages/menumanagement.component.html'
})

export class MenumanagementComponent implements OnInit {
  menus: any;
  menuType = '3_level';

  constructor(
    private menumanagementService: MenumanagementService,
    public translate: TranslateService,
    private toastr: ToastrService) {
  }

  ngOnInit() {
    this.menuType = localStorage.getItem('menu_type');
  }

  onSubmit(): void {
    const json_data = JSON.stringify(this.menus);

    let myhttpService;
    if (this.menuType == '3_level'){
      myhttpService = this.menumanagementService.postMenumanagement({'menus': this.menus});
    } else if (this.menuType == '2_level'){
      myhttpService = this.menumanagementService.postMenumanagementTwolevel({'menus': this.menus});
    }
    myhttpService.subscribe((response) => {
      this.toastr.success('Success..!', `Menu Items Added Successfully.`);
    }, // success
    error => {
      this.toastr.error('Error!');
    });
  }

}

then you need to add an html page: pages/menumanagement.component.html

Directories

esell
β”œβ”€β”€ dist  <------------- production build files
β”œβ”€β”€ e2e   <------------- i never used this folder
β”œβ”€β”€ node_modules <------ packages automatically created when we run npm install
β”œβ”€β”€ quick_start
β”œβ”€β”€ src	 	<----------- we have look mainly in this folder
β”‚   β”œβ”€β”€ app
β”‚   β”œβ”€β”€ assets <-------- some css files
β”‚   β”œβ”€β”€ environments <-- we set backend url here.
β”‚   └── index.html <---- base html file
β”œβ”€β”€ angular.json <------ here we will reference css and js libraries.
└── package.json <------ packages list here so that npm install will install those packages

Directory: app

app
β”œβ”€β”€ app.component.css <------------------------------------- empty file we can remove this file
β”œβ”€β”€ app.component.html <------------------------------------ <router-outlet></router-outlet>
β”œβ”€β”€ app.component.spec.ts <--------------------------------- never used this. seems it is for testing
β”œβ”€β”€ app.component.ts <-------------------------------------- nothing there
β”œβ”€β”€ app.module.ts <----------------------------------------- main module with root url config
β”œβ”€β”€ app-routing.module.ts <--------------------------------- routing for layout and login pages
β”œβ”€β”€ modules
β”‚   β”œβ”€β”€ accounts <------------------------------------------ we didn't use this
β”‚   β”‚   β”œβ”€β”€ accounts.component.ts
β”‚   β”‚   β”œβ”€β”€ accountsledger
β”‚   β”‚   β”‚   β”œβ”€β”€ accountsledger.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ accountsledger-routing.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ accountsledger.service.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ accountsledger.component.ts
β”‚   β”‚   β”‚   β”‚   └── accountsledger-cu.component.ts
β”‚   β”‚   β”‚   └── pages
β”‚   β”‚   β”‚       └── accountsledger-cu.component.html
β”‚   β”‚   β”œβ”€β”€ accounts.module.ts
β”‚   β”‚   β”œβ”€β”€ accounts-routing.module.ts
β”‚   β”‚   └── dailyaccountclosing
β”‚   β”‚       β”œβ”€β”€ components
β”‚   β”‚       β”‚   β”œβ”€β”€ dailyaccountclosing.component.ts
β”‚   β”‚       β”‚   └── dailyaccountclosing-cu.component.ts
β”‚   β”‚       β”œβ”€β”€ dailyaccountclosing.module.ts
β”‚   β”‚       β”œβ”€β”€ dailyaccountclosing-routing.module.ts
β”‚   β”‚       β”œβ”€β”€ dailyaccountclosing.service.ts
β”‚   β”‚       └── pages
β”‚   β”‚           └── dailyaccountclosing-cu.component.html
β”‚   β”œβ”€β”€ agents
β”‚   β”‚   β”œβ”€β”€ agent
β”‚   β”‚   β”‚   β”œβ”€β”€ agent.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ agent-routing.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ agent.service.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ agent.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ agent-cu.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ agent-filter.component.ts
β”‚   β”‚   β”‚   β”‚   └── agent-view.component.ts
β”‚   β”‚   β”‚   └── pages
β”‚   β”‚   β”‚       β”œβ”€β”€ agent-cu.component.html
β”‚   β”‚   β”‚       β”œβ”€β”€ agent-filter.component.html
β”‚   β”‚   β”‚       └── agent-view.component.html
β”‚   β”‚   β”œβ”€β”€ agentemployee
β”‚   β”‚   β”‚   β”œβ”€β”€ agentemployee.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ agentemployee-routing.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ agentemployee.service.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ agentemployee.component.ts
β”‚   β”‚   β”‚   β”‚   └── agentemployee-cu.component.ts
β”‚   β”‚   β”‚   └── pages
β”‚   β”‚   β”‚       └── agentemployee-cu.component.html
β”‚   β”‚   β”œβ”€β”€ agentitemstock
β”‚   β”‚   β”‚   β”œβ”€β”€ agentitemstock.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ agentitemstock-routing.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ agentitemstock.service.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   └── agentitemstock.component.ts
β”‚   β”‚   β”‚   └── pages
β”‚   β”‚   β”‚       └── agentitemstock.component.html
β”‚   β”‚   β”œβ”€β”€ agentorders
β”‚   β”‚   β”‚   β”œβ”€β”€ agentorders.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ agentorders-routing.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ agentorders.service.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ agentorders.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ agentorders-cu.component.ts
β”‚   β”‚   β”‚   β”‚   └── agentorders-filter.component.ts
β”‚   β”‚   β”‚   └── pages
β”‚   β”‚   β”‚       β”œβ”€β”€ agentorders-cu.component.html
β”‚   β”‚   β”‚       └── agentorders-filter.component.html
β”‚   β”‚   β”œβ”€β”€ agents.component.ts
β”‚   β”‚   β”œβ”€β”€ agents.module.ts
β”‚   β”‚   └── agents-routing.module.ts
β”‚   β”œβ”€β”€ billing
β”‚   β”‚   β”œβ”€β”€ billentry
β”‚   β”‚   β”‚   β”œβ”€β”€ billentry.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ billentry-routing.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ billentry.service.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ billentry.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ billentry-cu.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ billentry-view.component.ts
β”‚   β”‚   β”‚   β”‚   └── product-select.component.ts
β”‚   β”‚   β”‚   └── pages
β”‚   β”‚   β”‚       β”œβ”€β”€ billentry-cu.component.css
β”‚   β”‚   β”‚       β”œβ”€β”€ billentry-cu.component.html
β”‚   β”‚   β”‚       β”œβ”€β”€ billentry-view.component.html
β”‚   β”‚   β”‚       └── product-select.component.html
β”‚   β”‚   β”œβ”€β”€ billing.component.ts
β”‚   β”‚   β”œβ”€β”€ billing.module.ts
β”‚   β”‚   β”œβ”€β”€ billing-routing.module.ts
β”‚   β”‚   β”œβ”€β”€ billreturn
β”‚   β”‚   β”‚   β”œβ”€β”€ billreturn.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ billreturn-routing.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ billreturn.service.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ billreturn.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ billreturn-filter.component.ts
β”‚   β”‚   β”‚   β”‚   └── billreturn-new.component.ts
β”‚   β”‚   β”‚   └── pages
β”‚   β”‚   β”‚       β”œβ”€β”€ billreturn-filter.component.html
β”‚   β”‚   β”‚       └── billreturn-new.component.html
β”‚   β”‚   β”œβ”€β”€ creditbill
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   └── creditbill.component.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ creditbill.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ creditbill-routing.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ creditbill.service.ts
β”‚   β”‚   β”‚   └── pages
β”‚   β”‚   β”‚       └── creditbill.component.html
β”‚   β”‚   β”œβ”€β”€ customer
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ customer.component.ts
β”‚   β”‚   β”‚   β”‚   └── customer_cu.component.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ customer.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ customer-routing.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ customer.service.ts
β”‚   β”‚   β”‚   └── pages
β”‚   β”‚   β”‚       β”œβ”€β”€ customer.component.css
β”‚   β”‚   β”‚       └── customer_cu.component.html
β”‚   β”‚   └── customerimport
β”‚   β”‚       β”œβ”€β”€ components
β”‚   β”‚       β”‚   β”œβ”€β”€ customerimport.component.ts
β”‚   β”‚       β”‚   └── customerimportmessage.component.ts
β”‚   β”‚       β”œβ”€β”€ customerimport.module.ts
β”‚   β”‚       β”œβ”€β”€ customerimport-routing.module.ts
β”‚   β”‚       β”œβ”€β”€ customerimport.service.ts
β”‚   β”‚       └── pages
β”‚   β”‚           └── customerimport.component.html
β”‚   β”œβ”€β”€ dashboard
β”‚   β”‚   β”œβ”€β”€ aclpermission
β”‚   β”‚   β”‚   β”œβ”€β”€ aclpermission.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ aclpermission-routing.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ aclpermission.service.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   └── aclpermission.component.ts
β”‚   β”‚   β”‚   └── pages
β”‚   β”‚   β”‚       └── aclpermission.component.html
β”‚   β”‚   β”œβ”€β”€ aclpermissiontwolevel
β”‚   β”‚   β”‚   β”œβ”€β”€ aclpermission-routingtwolevel.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ aclpermissiontwolevel.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ aclpermissiontwolevel.service.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   └── aclpermissiontwolevel.component.ts
β”‚   β”‚   β”‚   └── pages
β”‚   β”‚   β”‚       └── aclpermissiontwolevel.component.html
β”‚   β”‚   β”œβ”€β”€ celeryhistory
β”‚   β”‚   β”‚   β”œβ”€β”€ celeryhistory.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ celeryhistory-routing.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ celeryhistory.service.ts
β”‚   β”‚   β”‚   └── components
β”‚   β”‚   β”‚       └── celeryhistory.component.ts
β”‚   β”‚   β”œβ”€β”€ dashboard.component.ts
β”‚   β”‚   β”œβ”€β”€ dashboard.module.ts
β”‚   β”‚   β”œβ”€β”€ dashboard-routing.module.ts
β”‚   β”‚   β”œβ”€β”€ menuitems
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ accountsettings.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ billingsettings.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ generalchecklist.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ generalsettings.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ helpdoc.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ mobileappsettings.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ printersetup.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ purchasesettings.component.ts
β”‚   β”‚   β”‚   β”‚   └── switch.component.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ menuitems.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ menuitems-routing.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ menuitems.service.ts
β”‚   β”‚   β”‚   └── pages
β”‚   β”‚   β”‚       β”œβ”€β”€ accountsettings.component.html
β”‚   β”‚   β”‚       β”œβ”€β”€ billingsettings.component.html
β”‚   β”‚   β”‚       β”œβ”€β”€ generalchecklist.component.html
β”‚   β”‚   β”‚       β”œβ”€β”€ generalsettings.component.html
β”‚   β”‚   β”‚       β”œβ”€β”€ helpdoc.component.html
β”‚   β”‚   β”‚       β”œβ”€β”€ mobileappsettings.component.html
β”‚   β”‚   β”‚       β”œβ”€β”€ printersetup.component.html
β”‚   β”‚   β”‚       β”œβ”€β”€ purchasesettings.component.html
β”‚   β”‚   β”‚       └── switch.component.css
β”‚   β”‚   β”œβ”€β”€ menumanagement
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   └── menumanagement.component.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ menumanagement.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ menumanagement-routing.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ menumanagement.service.ts
β”‚   β”‚   β”‚   └── pages
β”‚   β”‚   β”‚       └── menumanagement.component.html
β”‚   β”‚   β”œβ”€β”€ roles
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ roles.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ roles-cu.component.ts
β”‚   β”‚   β”‚   β”‚   └── roles-view.component.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ pages
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ roles-cu.component.html
β”‚   β”‚   β”‚   β”‚   └── roles-view.component.html
β”‚   β”‚   β”‚   β”œβ”€β”€ roles.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ roles-routing.module.ts
β”‚   β”‚   β”‚   └── roles.service.ts
β”‚   β”‚   β”œβ”€β”€ sqlqueries
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   └── sqlqueries.component.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ pages
β”‚   β”‚   β”‚   β”‚   └── sqlqueries.component.html
β”‚   β”‚   β”‚   β”œβ”€β”€ sqlqueries.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ sqlqueries-routing.module.ts
β”‚   β”‚   β”‚   └── sqlqueries.service.ts
β”‚   β”‚   β”œβ”€β”€ testing
β”‚   β”‚   β”‚   β”œβ”€β”€ testingcomponent
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ testing.component.css
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ testing.component.html
β”‚   β”‚   β”‚   β”‚   └── testing.component.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ testing.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ testing-routing.module.ts
β”‚   β”‚   β”‚   └── testing.service.ts
β”‚   β”‚   β”œβ”€β”€ userroles
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ userroles.component.ts
β”‚   β”‚   β”‚   β”‚   └── userroles-cu.component.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ pages
β”‚   β”‚   β”‚   β”‚   └── userroles-cu.component.html
β”‚   β”‚   β”‚   β”œβ”€β”€ userroles.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ userroles-routing.module.ts
β”‚   β”‚   β”‚   └── userroles.service.ts
β”‚   β”‚   β”œβ”€β”€ users
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ equal-validator.directive.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ users.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ users-cu.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ users-filter.component.ts
β”‚   β”‚   β”‚   β”‚   └── users-view.component.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ pages
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ users.component.html
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ users-cu.component.html
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ users-filter.component.html
β”‚   β”‚   β”‚   β”‚   └── users-view.component.html
β”‚   β”‚   β”‚   β”œβ”€β”€ users.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ users-routing.module.ts
β”‚   β”‚   β”‚   └── users.service.ts
β”‚   β”‚   └── widgetpermission
β”‚   β”‚       β”œβ”€β”€ components
β”‚   β”‚       β”‚   └── widgetpermission.component.ts
β”‚   β”‚       β”œβ”€β”€ pages
β”‚   β”‚       β”‚   └── widgetpermission.component.html
β”‚   β”‚       β”œβ”€β”€ widgetpermission.module.ts
β”‚   β”‚       β”œβ”€β”€ widgetpermission-routing.module.ts
β”‚   β”‚       └── widgetpermission.service.ts
β”‚   β”œβ”€β”€ expense
β”‚   β”‚   β”œβ”€β”€ agentexpenses
β”‚   β”‚   β”‚   β”œβ”€β”€ agentexpenses.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ agentexpenses-routing.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ agentexpenses.service.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ agentexpenses.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ agentexpenses-cu.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ agentexpenses-edit.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ agentexpenses-filter.component.ts
β”‚   β”‚   β”‚   β”‚   └── dailyexpenses.component.ts
β”‚   β”‚   β”‚   └── pages
β”‚   β”‚   β”‚       β”œβ”€β”€ agentexpenses-cu.component.html
β”‚   β”‚   β”‚       β”œβ”€β”€ agentexpenses-edit.component.html
β”‚   β”‚   β”‚       β”œβ”€β”€ agentexpenses-filter.component.html
β”‚   β”‚   β”‚       └── dailyexpenses.component.html
β”‚   β”‚   β”œβ”€β”€ expense.component.ts
β”‚   β”‚   β”œβ”€β”€ expense.module.ts
β”‚   β”‚   β”œβ”€β”€ expense-routing.module.ts
β”‚   β”‚   └── expenses
β”‚   β”‚       β”œβ”€β”€ components
β”‚   β”‚       β”‚   β”œβ”€β”€ expenses.component.ts
β”‚   β”‚       β”‚   └── expenses-cu.component.ts
β”‚   β”‚       β”œβ”€β”€ expenses.module.ts
β”‚   β”‚       β”œβ”€β”€ expenses-routing.module.ts
β”‚   β”‚       β”œβ”€β”€ expenses.service.ts
β”‚   β”‚       └── pages
β”‚   β”‚           └── expenses-cu.component.html
β”‚   β”œβ”€β”€ home
β”‚   β”‚   β”œβ”€β”€ home.component.ts
β”‚   β”‚   β”œβ”€β”€ home.module.ts
β”‚   β”‚   β”œβ”€β”€ homepage
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ admin.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ agents.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ commonwidgets
β”‚   β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ preloader.component.ts
β”‚   β”‚   β”‚   β”‚   β”‚   └── profile.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ dashboard.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ dialog.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ superadmin.component.ts
β”‚   β”‚   β”‚   β”‚   └── superadminwidgets
β”‚   β”‚   β”‚   β”‚       └── superadmincpuutil.component.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ homepage.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ homepage-routing.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ homepage.service.ts
β”‚   β”‚   β”‚   └── pages
β”‚   β”‚   β”‚       β”œβ”€β”€ admin.component.html
β”‚   β”‚   β”‚       β”œβ”€β”€ agents.component.html
β”‚   β”‚   β”‚       β”œβ”€β”€ dashboard.component.html
β”‚   β”‚   β”‚       └── superadmin.component.html
β”‚   β”‚   β”œβ”€β”€ home-routing.module.ts
β”‚   β”‚   └── profilepage
β”‚   β”‚       β”œβ”€β”€ components
β”‚   β”‚       β”‚   β”œβ”€β”€ profile.component.ts
β”‚   β”‚       β”‚   β”œβ”€β”€ profile-edit-address.component.ts
β”‚   β”‚       β”‚   β”œβ”€β”€ profile-edit-password.component.ts
β”‚   β”‚       β”‚   β”œβ”€β”€ profile-edit-userprofile.component.ts
β”‚   β”‚       β”‚   β”œβ”€β”€ profile-others.component.ts
β”‚   β”‚       β”‚   β”œβ”€β”€ sidebar.component.ts
β”‚   β”‚       β”‚   β”œβ”€β”€ tabs
β”‚   β”‚       β”‚   β”‚   β”œβ”€β”€ tab-address.component.ts
β”‚   β”‚       β”‚   β”‚   └── tab-personaldetails.component.ts
β”‚   β”‚       β”‚   └── verify
β”‚   β”‚       β”‚       β”œβ”€β”€ verify-email.component.ts
β”‚   β”‚       β”‚       β”œβ”€β”€ verify-mobile.component.ts
β”‚   β”‚       β”‚       └── verify-topbar.component.ts
β”‚   β”‚       β”œβ”€β”€ pages
β”‚   β”‚       β”‚   β”œβ”€β”€ profile-edit-addresss.component.html
β”‚   β”‚       β”‚   β”œβ”€β”€ profile-edit-password.component.html
β”‚   β”‚       β”‚   β”œβ”€β”€ profile-edit-userprofile.component.html
β”‚   β”‚       β”‚   β”œβ”€β”€ profile-others.component.html
β”‚   β”‚       β”‚   β”œβ”€β”€ sidebar.component.html
β”‚   β”‚       β”‚   └── tabs
β”‚   β”‚       β”‚       β”œβ”€β”€ tab-assignmentteacher.component.html
β”‚   β”‚       β”‚       └── tab-dashboarddiary.component.html
β”‚   β”‚       β”œβ”€β”€ profilepage.module.ts
β”‚   β”‚       β”œβ”€β”€ profilepage-routing.module.ts
β”‚   β”‚       └── profilepage.service.ts
β”‚   β”œβ”€β”€ layout.component.html
β”‚   β”œβ”€β”€ layout.component.ts
β”‚   β”œβ”€β”€ layout.module.ts
β”‚   β”œβ”€β”€ layout-routing.module.ts
β”‚   β”œβ”€β”€ myproducts
β”‚   β”‚   β”œβ”€β”€ agentproducts
β”‚   β”‚   β”‚   β”œβ”€β”€ agentproducts.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ agentproducts-routing.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ agentproducts.service.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ agentproducts.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ agentproducts-cu.component.ts
β”‚   β”‚   β”‚   β”‚   └── agentproducts-view.component.ts
β”‚   β”‚   β”‚   └── pages
β”‚   β”‚   β”‚       β”œβ”€β”€ agentproducts-cu.component.html
β”‚   β”‚   β”‚       └── agentproducts-view.component.html
β”‚   β”‚   β”œβ”€β”€ agentproductsettings
β”‚   β”‚   β”‚   β”œβ”€β”€ agentproductsettings.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ agentproductsettings-routing.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ agentproductsettings.service.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ agentproductsettings.component.ts
β”‚   β”‚   β”‚   β”‚   └── agentproductsettings-cu.component.ts
β”‚   β”‚   β”‚   └── pages
β”‚   β”‚   β”‚       └── agentproductsettings-cu.component.html
β”‚   β”‚   β”œβ”€β”€ myproducts.component.ts
β”‚   β”‚   β”œβ”€β”€ myproducts.module.ts
β”‚   β”‚   └── myproducts-routing.module.ts
β”‚   β”œβ”€β”€ outlets
β”‚   β”‚   β”œβ”€β”€ billinghistory
β”‚   β”‚   β”‚   β”œβ”€β”€ billinghistory.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ billinghistory-routing.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ billinghistory.service.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ billinghistory.components.ts
β”‚   β”‚   β”‚   β”‚   └── billinghistory-item.components.ts
β”‚   β”‚   β”‚   └── pages
β”‚   β”‚   β”‚       └── billinghistory-item.component.html
β”‚   β”‚   β”œβ”€β”€ location
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ location.component.ts
β”‚   β”‚   β”‚   β”‚   └── location-cu.component.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ location.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ location-routing.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ location.service.ts
β”‚   β”‚   β”‚   └── pages
β”‚   β”‚   β”‚       └── location-cu.component.html
β”‚   β”‚   β”œβ”€β”€ outlet
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ outlet.component.ts
β”‚   β”‚   β”‚   β”‚   └── outlet-cu.component.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ outlet.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ outlet-routing.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ outlet.service.ts
β”‚   β”‚   β”‚   └── pages
β”‚   β”‚   β”‚       └── outlet-cu.component.html
β”‚   β”‚   β”œβ”€β”€ outlets.component.ts
β”‚   β”‚   β”œβ”€β”€ outlets.module.ts
β”‚   β”‚   └── outlets-routing.module.ts
β”‚   β”œβ”€β”€ products
β”‚   β”‚   β”œβ”€β”€ cess
β”‚   β”‚   β”‚   β”œβ”€β”€ cess.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ cess-routing.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ cess.service.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ cess.component.ts
β”‚   β”‚   β”‚   β”‚   └── cess-cu.component.ts
β”‚   β”‚   β”‚   └── pages
β”‚   β”‚   β”‚       └── cess-cu.component.html
β”‚   β”‚   β”œβ”€β”€ exports
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   └── productstockexport.component.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ exports.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ exports-routing.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ exports.service.ts
β”‚   β”‚   β”‚   └── pages
β”‚   β”‚   β”‚       └── productstockexport.component.html
β”‚   β”‚   β”œβ”€β”€ item
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ item.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ item-cu.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ item-cu-multiple.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ item-filter.component.ts
β”‚   β”‚   β”‚   β”‚   └── item-view.component.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ item.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ item-routing.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ item.service.ts
β”‚   β”‚   β”‚   └── pages
β”‚   β”‚   β”‚       β”œβ”€β”€ item-cu.component.html
β”‚   β”‚   β”‚       β”œβ”€β”€ item-cu-multiple.component.html
β”‚   β”‚   β”‚       β”œβ”€β”€ item-filter.component.html
β”‚   β”‚   β”‚       └── item-view.component.html
β”‚   β”‚   β”œβ”€β”€ itemsimport
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ itemsimport.component.ts
β”‚   β”‚   β”‚   β”‚   └── itemsimportmessage.component.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ itemsimport.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ itemsimport-routing.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ itemsimport.service.ts
β”‚   β”‚   β”‚   └── pages
β”‚   β”‚   β”‚       └── itemsimport.component.html
β”‚   β”‚   β”œβ”€β”€ products.component.ts
β”‚   β”‚   β”œβ”€β”€ products.module.ts
β”‚   β”‚   β”œβ”€β”€ products-routing.module.ts
β”‚   β”‚   └── uom
β”‚   β”‚       β”œβ”€β”€ components
β”‚   β”‚       β”‚   β”œβ”€β”€ uom.component.ts
β”‚   β”‚       β”‚   └── uom-cu.component.ts
β”‚   β”‚       β”œβ”€β”€ pages
β”‚   β”‚       β”‚   └── uom-cu.component.html
β”‚   β”‚       β”œβ”€β”€ unitconversions_component
β”‚   β”‚       β”‚   β”œβ”€β”€ unitconversions.component.ts
β”‚   β”‚       β”‚   β”œβ”€β”€ unitconversions_cu.component.html
β”‚   β”‚       β”‚   └── unitconversions_cu.component.ts
β”‚   β”‚       β”œβ”€β”€ uom.module.ts
β”‚   β”‚       β”œβ”€β”€ uom-routing.module.ts
β”‚   β”‚       └── uom.service.ts
β”‚   β”œβ”€β”€ purchase
β”‚   β”‚   β”œβ”€β”€ purchaseentry
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ changestock.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ itemstocks.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ purchaseentry.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ purchaseentry-filter.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ stock_purchase.component.ts
β”‚   β”‚   β”‚   β”‚   └── stock_purchase-view.component.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ pages
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ changestock.component.html
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ itemstocks.component.html
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ purchaseentry.component.css
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ purchaseentry.component.html
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ purchaseentry-filter.component.html
β”‚   β”‚   β”‚   β”‚   └── stock_purchase-view.component.html
β”‚   β”‚   β”‚   β”œβ”€β”€ purchaseentry.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ purchaseentry-routing.module.ts
β”‚   β”‚   β”‚   └── purchaseentry.service.ts
β”‚   β”‚   β”œβ”€β”€ purchasereturn
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ purchasereturn.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ purchasereturn-cu.component.ts
β”‚   β”‚   β”‚   β”‚   └── purchasereturn-edit.component.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ pages
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ purchasereturn-cu.component.html
β”‚   β”‚   β”‚   β”‚   └── purchasereturn-edit.component.html
β”‚   β”‚   β”‚   β”œβ”€β”€ purchasereturn.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ purchasereturn-routing.module.ts
β”‚   β”‚   β”‚   └── purchasereturn.service.ts
β”‚   β”‚   β”œβ”€β”€ stock_purchase.component.ts
β”‚   β”‚   β”œβ”€β”€ stock_purchase.module.ts
β”‚   β”‚   β”œβ”€β”€ stock_purchase-routing.module.ts
β”‚   β”‚   └── supplier
β”‚   β”‚       β”œβ”€β”€ components
β”‚   β”‚       β”‚   β”œβ”€β”€ supplier.component.ts
β”‚   β”‚       β”‚   β”œβ”€β”€ supplier-cu.component.ts
β”‚   β”‚       β”‚   β”œβ”€β”€ supplierimport.component.ts
β”‚   β”‚       β”‚   └── supplierimportmessage.component.ts
β”‚   β”‚       β”œβ”€β”€ pages
β”‚   β”‚       β”‚   β”œβ”€β”€ supplier-cu.component.html
β”‚   β”‚       β”‚   └── supplierimport.component.html
β”‚   β”‚       β”œβ”€β”€ supplier.module.ts
β”‚   β”‚       β”œβ”€β”€ supplier-routing.module.ts
β”‚   β”‚       └── supplier.service.ts
β”‚   β”œβ”€β”€ reports_all_product
β”‚   β”‚   β”œβ”€β”€ graphs
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ mostselling_products_in_number.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ mostselling_products_in_revenue.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ outletwisesales.component.ts
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ productwisesales.component.ts
β”‚   β”‚   β”‚   β”‚   └── timeseriesgraph.component.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ graphs_all.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ graphs_all-routing.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ graphs_all.service.ts
β”‚   β”‚   β”‚   └── pages
β”‚   β”‚   β”‚       β”œβ”€β”€ mostselling_products_in_number.component.html
β”‚   β”‚   β”‚       β”œβ”€β”€ mostselling_products_in_revenue.component.html
β”‚   β”‚   β”‚       β”œβ”€β”€ outletwisesales.component.html
β”‚   β”‚   β”‚       β”œβ”€β”€ productwisesales.component.html
β”‚   β”‚   β”‚       └── timeseriesgraph.component.html
β”‚   β”‚   β”œβ”€β”€ gstreports
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   └── gstreports.component.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ gstallreports.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ gstallreports-routing.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ gstallreports.service.ts
β”‚   β”‚   β”‚   └── pages
β”‚   β”‚   β”‚       └── gstreports.component.html
β”‚   β”‚   β”œβ”€β”€ pdfreports
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   └── pdfreports.component.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ pages
β”‚   β”‚   β”‚   β”‚   └── pdfreports.component.html
β”‚   β”‚   β”‚   β”œβ”€β”€ pdfreports.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ pdfreports-routing.module.ts
β”‚   β”‚   β”‚   └── pdfreports.service.ts
β”‚   β”‚   β”œβ”€β”€ reports_all_product.component.ts
β”‚   β”‚   β”œβ”€β”€ reports_all_product.module.ts
β”‚   β”‚   β”œβ”€β”€ reports_all_product-routing.module.ts
β”‚   β”‚   └── stocks
β”‚   β”‚       β”œβ”€β”€ components
β”‚   β”‚       β”‚   β”œβ”€β”€ balance_sheet.component.ts
β”‚   β”‚       β”‚   β”œβ”€β”€ expired_product.component.ts
β”‚   β”‚       β”‚   β”œβ”€β”€ financialreports.component.ts
β”‚   β”‚       β”‚   β”œβ”€β”€ physicalstocks.component.ts
β”‚   β”‚       β”‚   β”œβ”€β”€ reorder_level.component.ts
β”‚   β”‚       β”‚   └── stockreport.component.ts
β”‚   β”‚       β”œβ”€β”€ pages
β”‚   β”‚       β”‚   β”œβ”€β”€ balance_sheet.component.html
β”‚   β”‚       β”‚   β”œβ”€β”€ expired_product.component.html
β”‚   β”‚       β”‚   β”œβ”€β”€ financialreports.component.html
β”‚   β”‚       β”‚   β”œβ”€β”€ physicalstocks.component.html
β”‚   β”‚       β”‚   β”œβ”€β”€ reorder_level.component.html
β”‚   β”‚       β”‚   └── stockreport.component.html
β”‚   β”‚       β”œβ”€β”€ stocks_all.module.ts
β”‚   β”‚       β”œβ”€β”€ stocks_all-routing.module.ts
β”‚   β”‚       └── stocks_all.service.ts
β”‚   β”œβ”€β”€ stocktransfer
β”‚   β”‚   β”œβ”€β”€ materialin
β”‚   β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ materialin.component.ts
β”‚   β”‚   β”‚   β”‚   └── materialout.component.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ materialin.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ materialin-routing.module.ts
β”‚   β”‚   β”‚   β”œβ”€β”€ materialin.service.ts
β”‚   β”‚   β”‚   └── pages
β”‚   β”‚   β”‚       β”œβ”€β”€ materialin.component.html
β”‚   β”‚   β”‚       └── materialout.component.html
β”‚   β”‚   β”œβ”€β”€ stocktransfer.component.ts
β”‚   β”‚   β”œβ”€β”€ stocktransfer.module.ts
β”‚   β”‚   └── stocktransfer-routing.module.ts
β”‚   └── systemconfig
β”‚       β”œβ”€β”€ bankaccount
β”‚       β”‚   β”œβ”€β”€ bankaccount.module.ts
β”‚       β”‚   β”œβ”€β”€ bankaccount-routing.module.ts
β”‚       β”‚   β”œβ”€β”€ bankaccount.service.ts
β”‚       β”‚   β”œβ”€β”€ components
β”‚       β”‚   β”‚   β”œβ”€β”€ bankaccount.component.ts
β”‚       β”‚   β”‚   └── bankaccount-cu.component.ts
β”‚       β”‚   └── pages
β”‚       β”‚       └── bankaccount-cu.component.html
β”‚       β”œβ”€β”€ caste
β”‚       β”‚   β”œβ”€β”€ caste.module.ts
β”‚       β”‚   β”œβ”€β”€ caste-routing.module.ts
β”‚       β”‚   β”œβ”€β”€ caste.service.ts
β”‚       β”‚   β”œβ”€β”€ components
β”‚       β”‚   β”‚   β”œβ”€β”€ caste.component.ts
β”‚       β”‚   β”‚   └── caste-cu.component.ts
β”‚       β”‚   └── pages
β”‚       β”‚       └── caste-cu.component.html
β”‚       β”œβ”€β”€ citytown
β”‚       β”‚   β”œβ”€β”€ citytown.module.ts
β”‚       β”‚   β”œβ”€β”€ citytown-routing.module.ts
β”‚       β”‚   β”œβ”€β”€ citytown.service.ts
β”‚       β”‚   β”œβ”€β”€ components
β”‚       β”‚   β”‚   β”œβ”€β”€ citytown.component.ts
β”‚       β”‚   β”‚   β”œβ”€β”€ citytown-cu.component.ts
β”‚       β”‚   β”‚   └── citytown-message.component.ts
β”‚       β”‚   └── pages
β”‚       β”‚       └── citytown-cu.component.html
β”‚       β”œβ”€β”€ country
β”‚       β”‚   β”œβ”€β”€ components
β”‚       β”‚   β”‚   β”œβ”€β”€ country.component.ts
β”‚       β”‚   β”‚   └── country-cu.component.ts
β”‚       β”‚   β”œβ”€β”€ country.module.ts
β”‚       β”‚   β”œβ”€β”€ country-routing.module.ts
β”‚       β”‚   β”œβ”€β”€ country.service.ts
β”‚       β”‚   └── pages
β”‚       β”‚       └── country-cu.component.html
β”‚       β”œβ”€β”€ district
β”‚       β”‚   β”œβ”€β”€ components
β”‚       β”‚   β”‚   β”œβ”€β”€ district.component.ts
β”‚       β”‚   β”‚   β”œβ”€β”€ district-cu.component.ts
β”‚       β”‚   β”‚   └── district-message.component.ts
β”‚       β”‚   β”œβ”€β”€ district.module.ts
β”‚       β”‚   β”œβ”€β”€ district-routing.module.ts
β”‚       β”‚   β”œβ”€β”€ district.service.ts
β”‚       β”‚   └── pages
β”‚       β”‚       └── district-cu.component.html
β”‚       β”œβ”€β”€ emailconfig
β”‚       β”‚   β”œβ”€β”€ components
β”‚       β”‚   β”‚   β”œβ”€β”€ emailconfig.component.ts
β”‚       β”‚   β”‚   β”œβ”€β”€ emailconfig-cu.component.ts
β”‚       β”‚   β”‚   β”œβ”€β”€ emailhistory.component.ts
β”‚       β”‚   β”‚   └── emailhistory-filter.component.ts
β”‚       β”‚   β”œβ”€β”€ emailconfig.module.ts
β”‚       β”‚   β”œβ”€β”€ emailconfig-routing.module.ts
β”‚       β”‚   β”œβ”€β”€ emailconfig.service.ts
β”‚       β”‚   └── pages
β”‚       β”‚       β”œβ”€β”€ emailconfig-cu.component.html
β”‚       β”‚       └── emailhistory-filter.component.html
β”‚       β”œβ”€β”€ emailcredentials
β”‚       β”‚   β”œβ”€β”€ components
β”‚       β”‚   β”‚   β”œβ”€β”€ emailcredentials.component.ts
β”‚       β”‚   β”‚   └── emailcredentials-cu.component.ts
β”‚       β”‚   β”œβ”€β”€ emailcredentials.module.ts
β”‚       β”‚   β”œβ”€β”€ emailcredentials-routing.module.ts
β”‚       β”‚   β”œβ”€β”€ emailcredentials.service.ts
β”‚       β”‚   └── pages
β”‚       β”‚       └── emailcredentials-cu.component.html
β”‚       β”œβ”€β”€ hobbies
β”‚       β”‚   β”œβ”€β”€ components
β”‚       β”‚   β”‚   β”œβ”€β”€ hobbies.component.ts
β”‚       β”‚   β”‚   └── hobbies-cu.component.ts
β”‚       β”‚   β”œβ”€β”€ hobbies.module.ts
β”‚       β”‚   β”œβ”€β”€ hobbies-routing.module.ts
β”‚       β”‚   β”œβ”€β”€ hobbies.service.ts
β”‚       β”‚   └── pages
β”‚       β”‚       └── hobbies-cu.component.html
β”‚       β”œβ”€β”€ languages
β”‚       β”‚   β”œβ”€β”€ components
β”‚       β”‚   β”‚   β”œβ”€β”€ languages.component.ts
β”‚       β”‚   β”‚   └── languages-cu.component.ts
β”‚       β”‚   β”œβ”€β”€ languages.module.ts
β”‚       β”‚   β”œβ”€β”€ languages-routing.module.ts
β”‚       β”‚   β”œβ”€β”€ languages.service.ts
β”‚       β”‚   └── pages
β”‚       β”‚       └── languages-cu.component.html
β”‚       β”œβ”€β”€ languagesettings
β”‚       β”‚   β”œβ”€β”€ components
β”‚       β”‚   β”‚   β”œβ”€β”€ languagesettings.component.ts
β”‚       β”‚   β”‚   └── languagesettings-cu.component.ts
β”‚       β”‚   β”œβ”€β”€ languagesettings.module.ts
β”‚       β”‚   β”œβ”€β”€ languagesettings-routing.module.ts
β”‚       β”‚   β”œβ”€β”€ languagesettings.service.ts
β”‚       β”‚   └── pages
β”‚       β”‚       └── languagesettings-cu.component.html
β”‚       β”œβ”€β”€ nationality
β”‚       β”‚   β”œβ”€β”€ components
β”‚       β”‚   β”‚   β”œβ”€β”€ nationality.component.ts
β”‚       β”‚   β”‚   └── nationality-cu.component.ts
β”‚       β”‚   β”œβ”€β”€ nationality.module.ts
β”‚       β”‚   β”œβ”€β”€ nationality-routing.module.ts
β”‚       β”‚   β”œβ”€β”€ nationality.service.ts
β”‚       β”‚   └── pages
β”‚       β”‚       └── nationality-cu.component.html
β”‚       β”œβ”€β”€ occupation
β”‚       β”‚   β”œβ”€β”€ components
β”‚       β”‚   β”‚   β”œβ”€β”€ occupation.component.ts
β”‚       β”‚   β”‚   └── occupation-cu.component.ts
β”‚       β”‚   β”œβ”€β”€ occupation.module.ts
β”‚       β”‚   β”œβ”€β”€ occupation-routing.module.ts
β”‚       β”‚   β”œβ”€β”€ occupation.service.ts
β”‚       β”‚   └── pages
β”‚       β”‚       └── occupation-cu.component.html
β”‚       β”œβ”€β”€ organization
β”‚       β”‚   β”œβ”€β”€ components
β”‚       β”‚   β”‚   β”œβ”€β”€ organization.component.ts
β”‚       β”‚   β”‚   β”œβ”€β”€ organization-cu.component.ts
β”‚       β”‚   β”‚   └── organization-view.component.ts
β”‚       β”‚   β”œβ”€β”€ organization.module.ts
β”‚       β”‚   β”œβ”€β”€ organization-routing.module.ts
β”‚       β”‚   β”œβ”€β”€ organization.service.ts
β”‚       β”‚   └── pages
β”‚       β”‚       β”œβ”€β”€ organization-cu.component.html
β”‚       β”‚       └── organization-view.component.html
β”‚       β”œβ”€β”€ relationship
β”‚       β”‚   β”œβ”€β”€ components
β”‚       β”‚   β”‚   β”œβ”€β”€ relationship.component.ts
β”‚       β”‚   β”‚   └── relationship-cu.component.ts
β”‚       β”‚   β”œβ”€β”€ pages
β”‚       β”‚   β”‚   └── relationship-cu.component.html
β”‚       β”‚   β”œβ”€β”€ relationship.module.ts
β”‚       β”‚   β”œβ”€β”€ relationship-routing.module.ts
β”‚       β”‚   └── relationship.service.ts
β”‚       β”œβ”€β”€ religion
β”‚       β”‚   β”œβ”€β”€ components
β”‚       β”‚   β”‚   β”œβ”€β”€ religion.component.ts
β”‚       β”‚   β”‚   └── religion-cu.component.ts
β”‚       β”‚   β”œβ”€β”€ pages
β”‚       β”‚   β”‚   └── religion-cu.component.html
β”‚       β”‚   β”œβ”€β”€ religion.module.ts
β”‚       β”‚   β”œβ”€β”€ religion-routing.module.ts
β”‚       β”‚   └── religion.service.ts
β”‚       β”œβ”€β”€ smsconfig
β”‚       β”‚   β”œβ”€β”€ components
β”‚       β”‚   β”‚   β”œβ”€β”€ smsconfig.component.ts
β”‚       β”‚   β”‚   β”œβ”€β”€ smsconfig-cu.component.ts
β”‚       β”‚   β”‚   β”œβ”€β”€ smshistory.component.ts
β”‚       β”‚   β”‚   └── smshistory-filter.component.ts
β”‚       β”‚   β”œβ”€β”€ pages
β”‚       β”‚   β”‚   β”œβ”€β”€ smsconfig-cu.component.html
β”‚       β”‚   β”‚   └── smshistory-filter.component.html
β”‚       β”‚   β”œβ”€β”€ smsconfig.module.ts
β”‚       β”‚   β”œβ”€β”€ smsconfig-routing.module.ts
β”‚       β”‚   └── smsconfig.service.ts
β”‚       β”œβ”€β”€ smscredentials
β”‚       β”‚   β”œβ”€β”€ components
β”‚       β”‚   β”‚   β”œβ”€β”€ smscredentials.component.ts
β”‚       β”‚   β”‚   └── smscredentials-cu.component.ts
β”‚       β”‚   β”œβ”€β”€ pages
β”‚       β”‚   β”‚   └── smscredentials-cu.component.html
β”‚       β”‚   β”œβ”€β”€ smscredentials.module.ts
β”‚       β”‚   β”œβ”€β”€ smscredentials-routing.module.ts
β”‚       β”‚   └── smscredentials.service.ts
β”‚       β”œβ”€β”€ state
β”‚       β”‚   β”œβ”€β”€ components
β”‚       β”‚   β”‚   β”œβ”€β”€ state.component.ts
β”‚       β”‚   β”‚   β”œβ”€β”€ state-cu.component.ts
β”‚       β”‚   β”‚   └── state-message.component.ts
β”‚       β”‚   β”œβ”€β”€ pages
β”‚       β”‚   β”‚   └── state-cu.component.html
β”‚       β”‚   β”œβ”€β”€ state.module.ts
β”‚       β”‚   β”œβ”€β”€ state-routing.module.ts
β”‚       β”‚   └── state.service.ts
β”‚       β”œβ”€β”€ systemconfig.component.ts
β”‚       β”œβ”€β”€ systemconfig.module.ts
β”‚       └── systemconfig-routing.module.ts
└── shared
    β”œβ”€β”€ datatables
    β”‚   β”œβ”€β”€ datatable.component.html
    β”‚   β”œβ”€β”€ datatable.component.ts
    β”‚   └── datatable.service.ts
    β”œβ”€β”€ dateadapter
    β”‚   └── pickdateadapter.component.ts
    β”œβ”€β”€ errorpages
    β”‚   β”œβ”€β”€ errorpages.module.ts
    β”‚   β”œβ”€β”€ errorpages-routing.module.ts
    β”‚   β”œβ”€β”€ maintenance.component.ts
    β”‚   β”œβ”€β”€ not-found.component.css
    β”‚   └── not-found.component.ts
    β”œβ”€β”€ guards
    β”‚   β”œβ”€β”€ auth.guard.spec.ts
    β”‚   └── auth.guard.ts
    β”œβ”€β”€ jwt.interceptor.ts
    β”œβ”€β”€ login
    β”‚   β”œβ”€β”€ auth.service.spec.ts
    β”‚   β”œβ”€β”€ auth.service.ts
    β”‚   β”œβ”€β”€ login.component.css
    β”‚   β”œβ”€β”€ login.component.html
    β”‚   β”œβ”€β”€ login.component.spec.ts
    β”‚   β”œβ”€β”€ login.component.ts
    β”‚   β”œβ”€β”€ login.module.ts
    β”‚   β”œβ”€β”€ login-routing.module.ts
    β”‚   β”œβ”€β”€ logout.component.ts
    β”‚   β”œβ”€β”€ particles.component.ts
    β”‚   └── verify_emailtoken.component.ts
    β”œβ”€β”€ partials
    β”‚   β”œβ”€β”€ footer.component.html
    β”‚   β”œβ”€β”€ footer.component.ts
    β”‚   β”œβ”€β”€ menu.component.css
    β”‚   β”œβ”€β”€ menu.component.html
    β”‚   β”œβ”€β”€ menu.component.ts
    β”‚   β”œβ”€β”€ toolbar.component.html
    β”‚   β”œβ”€β”€ toolbar.component.ts
    β”‚   β”œβ”€β”€ topnavbar.component.html
    β”‚   β”œβ”€β”€ topnavbar.component.ts
    β”‚   β”œβ”€β”€ topnavbarmessage.component.css
    β”‚   └── topnavbar.service.ts
    β”œβ”€β”€ shared.module.ts
    β”œβ”€β”€ shared.service.ts
    β”œβ”€β”€ tinymce.ts
    └── toolbar_datatable.component.ts

Backend

We use python programming language. Here is a quick tutorial. We use Django a python module for webdevelopment.

Billing

Flood Cess Calculations

The flood cess in Kerala is calculated on the value of the supply(CGST and SGST are not included in the value of supply).

eg:

  • The value of the goods supplied is Rs. 1000.
  • The GST rate is 12%. CGST is Rs. 60 and SGST is Rs. 60.
  • The flood CESS is 1% and will have a value of Rs. 10.
  • The total of your invoice will be Rs. 1130 only.
MRP = 1130
value = 1130*100/(12+1+100)

Here is the live example: billings/views/billentry.py line 165: amount_excl_tax = (amount * 100) / (item.gst_rate+cess_rate + 100)

Thermal print

https://forum.ionicframework.com/t/printing-on-bluetooth-printers/17886/23

TXT_BOLD_OFF: '\x1b\x45\x00', // Bold font OFF
TXT_BOLD_ON: '\x1b\x45\x01', // Bold font ON

TXT_FONT_A: '\x1b\x4d\x00', // Font type A //normal font
TXT_FONT_B: '\x1b\x4d\x01', // Font type B //small font
TXT_FONT_C: '\x1b\x4d\x02', // Font type C //normal font

TXT_NORMAL: '\x1b\x21\x00', // Normal text
TXT_2HEIGHT: '\x1b\x21\x10', // Double height text
TXT_2WIDTH: '\x1b\x21\x20', // Double width text
TXT_4SQUARE: '\x1b\x21\x30', // Double width & height text

TXT_UNDERL_OFF: '\x1b\x2d\x00', // Underline font OFF
TXT_UNDERL_ON: '\x1b\x2d\x01', // Underline font 1-dot ON
TXT_UNDERL2_ON: '\x1b\x2d\x02', // Underline font 2-dot ON
TXT_ITALIC_OFF: '\x1b\x35', // Italic font ON
TXT_ITALIC_ON: '\x1b\x34', // Italic font ON

TXT_FONT_A: '\x1b\x4d\x00', // Font type A //normal font
TXT_FONT_B: '\x1b\x4d\x01', // Font type B //small font
TXT_FONT_C: '\x1b\x4d\x02', // Font type C //normal font

Reports

Stock and Financial Report Calculations

Closing Balance(Stock)= opening balance + purchase - sales - stock adjustment
Closing Balance(Financial)= closing balance(stock) * purchase rate
Difference(Financial)= opening balance + purchase - sales - closing balance
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment