Default note still appending to completed notes (bug)
Posted: Tue Mar 15, 2011 6:25 am
I still think there's a bug with the default note getting appended even if there are notes already saved for a procedure.
How to reproduce:
1)Enter a default note for a procedure code
2)Complete the procedure to show the default note
3)Edit the default note and click OK. Set the default note back to treatment planned (Staff often need to do this to have a procedure show on the treatment plan for financial discussion).
4)Set the procedure complete. The blank default note will be appended to the edited default note.
I find if I change line 3302 on FormProcEdit to:
and line 1320 on Procedures to:
The problem goes away completely.
Thanks.
How to reproduce:
1)Enter a default note for a procedure code
2)Complete the procedure to show the default note
3)Edit the default note and click OK. Set the default note back to treatment planned (Staff often need to do this to have a procedure show on the treatment plan for financial discussion).
4)Set the procedure complete. The blank default note will be appended to the edited default note.
I find if I change line 3302 on FormProcEdit to:
Code: Select all
if (textNotes.Text == String.Empty) {
textNotes.Text += ProcCodeNotes.GetNote(provNum, ProcCur.CodeNum);
}Code: Select all
if (ProcList[i].Note == String.Empty) {Thanks.