Package clips.delegate.shedule.exception

Examples of clips.delegate.shedule.exception.SheduleExceptionData


                }
                return timeBegin + " - " + timeEnd;
               
            } else if(col == COL_EXCEPTION) {
                Date date = day.getCalendar().getTime();
                SheduleExceptionData exception = sel.getException(date);
                if(exception != null) {
                    return "Исключение: " + exception;
                }
                return "";
            }
View Full Code Here


        }
           
       try {
            Day day = new Day(year, month-1, row+1);

            SheduleExceptionData data = sel.getException(day.getCalendar().getTime());
            if(data == null) {
                data = new SheduleExceptionData(day);
            }
            TableExceptionCellDialog dlg =
                    new TableExceptionCellDialog(MainWindow.mainWindow, data, getAuditManager());

            dlg.setVisible(true);
View Full Code Here

            return res;
        }

        //5. Получаем исключения работы поликлинники за текущую неделю.
        //если исключения есть, и они указывают что день нерабочий, отмечаем день как закрытый
        SheduleExceptionData exception = sel.getException(day.getCalendar().getTime());
        if (exception != null && !exception.isWorking()) {
            res.setWorking(false);
            res.setDescription(exception.getDescription());
            return res;
        }

        //6. Если исключений нет, получаем праздники за указанную неделю
        //если в этот день праздник, отмечаем день как закрытый
View Full Code Here

TOP

Related Classes of clips.delegate.shedule.exception.SheduleExceptionData

Copyright © 2018 www.massapicom. 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.