dev_mashfiq #34

Merged
chapal merged 9 commits from dev_mashfiq into devqc 2025-02-27 11:42:04 +06:00
2 changed files with 4 additions and 1 deletions
Showing only changes of commit a3c8a22703 - Show all commits

View File

@ -92,6 +92,9 @@ export class NomineeListComponent implements OnInit {
notApli = this.occupations.find(o => o.description.toUpperCase() == 'N/A');
if (notApli != null)
this.nominee.occupationID = notApli.id;
let np = this.nominationPurposes.find(n => n.id == 8);
if(this.nominationPurposes != null && np != null)
this.nominee.nominationPurposeID = np.id;
this.isDisplay = true;
}
public editHandler(rowIndex: any) {

View File

@ -419,7 +419,7 @@ export class EmployeePayrollProfileComponent implements OnInit {
this.selectedEmployee.categoryID = this.employee.categoryID;
this.selectedEmployee.name = this.employee.name;
this.selectedEmployee.employeeNo = this.employee.employeeNo;
this.showBankAccount = true;
// this.showBankAccount = true;
} else {
this.employee = new Employee();