SAL changes

This commit is contained in:
sriram-at-840620226347 2020-01-04 16:43:55 +05:30
parent 0250c74d7a
commit d48ace4832

View File

@ -639,8 +639,12 @@ inWords(val,flag:number){
this.inWords(Emp.gross_monthly_salary,2);
this.inWords(Emp.net_monthly_salary,3);
this.inWords(Emp.bonus_incentive,4);
if(Emp.mode_of_getting_salary == 'both_bank_transfer_cash' && Emp.amount_paid_in_cash != ''){
this.inWords(Emp.amount_paid_in_cash,6);
}
if(Emp.mode_of_getting_salary == 'both_bank_transfer_cash' && Emp.amount_paid_through_bank != ''){
this.inWords(Emp.amount_paid_through_bank,5);
}
if(Emp.total_business_experience != ''){
this.checkWorkingExperiences();
}