|
||||||||
|
This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira |
||||||||
------------------------------------------------------------------------------ How ServiceNow helps IT people transform IT departments: 1. A cloud service to automate IT design, transition and operations 2. Dashboards that offer high-level views of enterprise services 3. A single system of record for all IT processes http://p.sf.net/sfu/servicenow-d2d-j
_______________________________________________ Mifos-issues mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mifos-issues

GouthamM , Can you please work on creating CRUD services (though I am not yet sure if we would want the update and Delete functionality)
So we would need a new table to store holidays. At a minimum the required columns would be
m_holiday
1) id (PK)
2) name : varchar(100)
3) description: varchar (500)
4) from_date
5) to_date
Next, we would need a join table to associate holidays to branches (many to many relationship)
m_branch_holiday
1) branch_id
2) holiday_id
We would need checkbox tree to associate branches with holidays (could use http://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtree/jquery-tree-getting-started.htm for now)