Package clips.delegate.doctor.followup

Examples of clips.delegate.doctor.followup.FollowupLocal.save1()


            FollowupData data = followupList.get(row);
            FollowupLocal followUp = new FollowupLocal(data.details, new SerRenLocal(data.details.serrenUpID, am), am);
            if (column == COL_CALLED) {               
                FollowupEventData event = followUp.getLastEvent();
                event.setCalled((Boolean) aValue);
                followUp.save1();
                data.lastEventDetails.called = (Boolean) aValue;
            }
            if (column == COL_CANCELLED) {               
                FollowupEventData event = followUp.getLastEvent();
                event.setCancelled((Boolean) aValue);
View Full Code Here


                data.lastEventDetails.called = (Boolean) aValue;
            }
            if (column == COL_CANCELLED) {               
                FollowupEventData event = followUp.getLastEvent();
                event.setCancelled((Boolean) aValue);
                followUp.save1();
                data.lastEventDetails.cancelled = (Boolean) aValue;
            }
            fireTableCellUpdated(row, column);
        } catch (ClipsException ex) {
            MessageBox.showException(ex);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.