add troubleshooting controller and field otherNationality
All checks were successful
Spell Check / Spell Check with Typos (push) Successful in 5s

This commit is contained in:
Kanjana 2025-04-25 11:59:46 +07:00
parent 5c75c27470
commit 7fe0512a2f
8 changed files with 55 additions and 15 deletions

View file

@ -55,6 +55,7 @@ type QuotationCreate = {
dateOfBirth: Date;
gender: string;
nationality: string;
otherNationality?: string;
namePrefix?: string;
firstName: string;
firstNameEN: string;
@ -112,6 +113,7 @@ type QuotationUpdate = {
dateOfBirth: Date;
gender: string;
nationality: string;
otherNationality?: string;
namePrefix?: string;
firstName?: string;
@ -1008,6 +1010,7 @@ export class QuotationActionController extends Controller {
dateOfBirth: Date;
gender: string;
nationality: string;
otherNationality?: string;
namePrefix?: string;
firstName: string;
firstNameEN: string;
@ -1030,6 +1033,7 @@ export class QuotationActionController extends Controller {
dateOfBirth: Date;
gender: string;
nationality: string;
otherNationality?: string;
namePrefix?: string;
firstName: string;
firstNameEN: string;