เช็คจังหวัด

This commit is contained in:
mamoss 2025-04-09 09:09:02 +07:00
parent e2ca88a988
commit f1120fc992

View file

@ -555,17 +555,17 @@ export class OrganizationDotnetController extends Controller {
registrationProvinceId: profile.registrationProvinceId, registrationProvinceId: profile.registrationProvinceId,
registrationDistrictId: profile.registrationDistrictId, registrationDistrictId: profile.registrationDistrictId,
registrationSubDistrictId: profile.registrationSubDistrictId, registrationSubDistrictId: profile.registrationSubDistrictId,
registrationProvince: profile.registrationProvince.name, registrationProvince: profile.registrationProvince?.name ?? null,
registrationDistrict: profile.registrationDistrict.name, registrationDistrict: profile.registrationDistrict?.name ?? null,
registrationSubDistrict: profile.registrationSubDistrict.name, registrationSubDistrict: profile.registrationSubDistrict?.name ?? null,
registrationZipCode: profile.registrationZipCode, registrationZipCode: profile.registrationZipCode,
currentAddress: profile.currentAddress, currentAddress: profile.currentAddress,
currentProvinceId: profile.currentProvinceId, currentProvinceId: profile.currentProvinceId,
currentDistrictId: profile.currentDistrictId, currentDistrictId: profile.currentDistrictId,
currentSubDistrictId: profile.currentSubDistrictId, currentSubDistrictId: profile.currentSubDistrictId,
currentProvince: profile.currentProvince.name, currentProvince: profile.currentProvince?.name ?? null,
currentDistrict: profile.currentDistrict.name, currentDistrict: profile.currentDistrict?.name ?? null,
currentSubDistrict: profile.currentSubDistrict.name, currentSubDistrict: profile.currentSubDistrict?.name ?? null,
currentZipCode: profile.currentZipCode, currentZipCode: profile.currentZipCode,
dutyTimeId: profile.dutyTimeId, dutyTimeId: profile.dutyTimeId,
dutyTimeEffectiveDate: profile.dutyTimeEffectiveDate, dutyTimeEffectiveDate: profile.dutyTimeEffectiveDate,
@ -874,17 +874,17 @@ export class OrganizationDotnetController extends Controller {
registrationProvinceId: profile.registrationProvinceId, registrationProvinceId: profile.registrationProvinceId,
registrationDistrictId: profile.registrationDistrictId, registrationDistrictId: profile.registrationDistrictId,
registrationSubDistrictId: profile.registrationSubDistrictId, registrationSubDistrictId: profile.registrationSubDistrictId,
registrationProvince: profile.registrationProvince.name, registrationProvince: profile.registrationProvince?.name ?? null,
registrationDistrict: profile.registrationDistrict.name, registrationDistrict: profile.registrationDistrict?.name ?? null,
registrationSubDistrict: profile.registrationSubDistrict.name, registrationSubDistrict: profile.registrationSubDistrict?.name ?? null,
registrationZipCode: profile.registrationZipCode, registrationZipCode: profile.registrationZipCode,
currentAddress: profile.currentAddress, currentAddress: profile.currentAddress,
currentProvinceId: profile.currentProvinceId, currentProvinceId: profile.currentProvinceId,
currentDistrictId: profile.currentDistrictId, currentDistrictId: profile.currentDistrictId,
currentSubDistrictId: profile.currentSubDistrictId, currentSubDistrictId: profile.currentSubDistrictId,
currentProvince: profile.currentProvince.name, currentProvince: profile.currentProvince?.name ?? null,
currentDistrict: profile.currentDistrict.name, currentDistrict: profile.currentDistrict?.name ?? null,
currentSubDistrict: profile.currentSubDistrict.name, currentSubDistrict: profile.currentSubDistrict?.name ?? null,
currentZipCode: profile.currentZipCode, currentZipCode: profile.currentZipCode,
dutyTimeId: profile.dutyTimeId, dutyTimeId: profile.dutyTimeId,
dutyTimeEffectiveDate: profile.dutyTimeEffectiveDate, dutyTimeEffectiveDate: profile.dutyTimeEffectiveDate,