[FORECAST LIST] Fixed to show only A note

This commit is contained in:
Hyojin Ahn 2026-02-13 11:05:27 -05:00
parent cb938e2928
commit e022d5f55c
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ $noteQuery = "
FROM tbl_customer tc
LEFT OUTER JOIN tbl_note tn ON tc.c_uid = tn.n_customeruid
LEFT OUTER JOIN tbl_member tm ON tn.n_memberuid = tm.m_uid
WHERE tc.c_uid = '$c_uid'
WHERE tc.c_uid = '$c_uid' and tn.n_status = 'A'
ORDER BY tn.n_createddate DESC
LIMIT $note_start, $notesPerPage
";