Milma site has two parts frontend and backend
url: https://milmaesell.donams.com
Frontend is a single page app build using Angular 11
Agent
- Make Bill Entry (frontend)[#billing-frontend], (backend)[#billing]
- Purchase Entry
- Stock and Financial Report
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
ngOnInit():
getCessTaxes()
: get cess taxes from the database
this.items.valueChanges
: when FormArray items
changes, then calculate tax
, total_kfc
,
total
, amount_excl_tax
, discount
, itemdiscount
. valueChanges is an Observable so you can pipe pairwise to get the previous and next values in the subscription.
doHotkey($event):
shortcut keys
Ctrl+S or F7 = Save | Ctrl+P or F8 = Print | Ctrl+D = Last Row | Ctrl+C = Clear All | Ctrl+N or F9 = New | Ctrl+R= New Row
onGSTINChange(gstin):
on change of gst customer select box. if gst customer remove cess calculations. calculate cess of each item if not a gst customer.
onChange(i, whatchanged):
on change of any of inputs:
- product
- qty
- sellingprice
- customprice
- discount
- cash_discount
on product change:
+ get uoms of that product - patch value to formarray items[uoms] = [{'name':..,'unit':..,'uom':..} ..]
+ check duplicate product already exists then show error toastr and return
+ if last row changed, append a new row
on qty change:
+ if qty greater than stock alert message and put quantity = stock.
+ set selling price
on sellingprice change:
+ set selling price based on uom_prices
on customprice change:
+ set sellingprice = customprice
if any of the above inputs changes:
+ calculate cess rate
+ if gstin customer we put cess = 0
+ calculate unitprice. unitprice = (sellingprice * 100) / (gst_rate+cess + 100);
on discount or qty change:
+ if discount < 0 or > 100, show error message. set discounts to 0
+ calculate cash_discount = amount * (discount_percentage / 100);
+ set cash_discount
on cash_discount change:
+ calculate discount= 100*cash_discount/amount
+ set discount
again if any of the above inputs changes:
+ calculate amount_excl_tax = (amount * 100) / (gst_rate+cess + 100);
+ items formarray at i set values: freeqty, sellingprice, unitprice, sgst .. etc
onUoMChange(i)
+ getAmounts for the selected UoM
+ put uom amounts in mode variable modes = [{'mode':'SP', 'type':'SP: 100'},{'mode':'MRP', ... ];
+ set sellingprice based on mode, if (mode==='SP') sellingprice = data['SP']
+ calculate unitprice based on mode, unitprice = (sellingprice * 100) / (gst_rate+cess + 100);
discountChange(whatchanged)
+ this is for total billdiscount.
- @angular
- @angular/material
- ng-select
- datatables
- angular-datatables
- bootstrap
- font-awesome
- highcharts
- highcharts-angular
- jquery
- moment
- ngx-bootstrap
- ngx-toastr
βββ 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
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
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
We use python programming language. Here is a quick tutorial. We use Django a python module for webdevelopment.
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)
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
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