...
Code Block |
---|
if (person.age < 18)&(doctor.speciality = PEDIATRICIAN) {
end_date = min(birth_date + 18y - 1d, start_date + declaration_term);
} else {
end_date = start_date + declaration_term;
} |
...
...
Code Block |
---|
if (person.age < 18)&(doctor.speciality = PEDIATRICIAN) {
end_date = min(birth_date + 18y - 1d, start_date + declaration_term);
} else {
end_date = start_date + declaration_term;
} |
...