fix: refs #7722 delete sms #2732

Merged
robert merged 6 commits from 7722-deleteSms into master 2024-07-16 07:04:58 +00:00
1 changed files with 1 additions and 2 deletions
Showing only changes of commit 0eb8a46da8 - Show all commits

View File

@ -63,8 +63,7 @@ module.exports = Self => {
JOIN client c ON t.clientFk = c.id
JOIN address a ON t.addressFk = a.id
LEFT JOIN addressObservation oa ON oa.addressFk = a.id
LEFT JOIN observationType ot ON ot.id = oa.observationTypeFk
AND ot.code = 'delivery'
AND oa.observationTypeFk IN (SELECT id FROM observationType ot WHERE ot.code = 'delivery')
JOIN province p ON a.provinceFk = p.id
JOIN country co ON co.id = p.countryFk
JOIN mrwConfig mc