Hi everybody,
I don't know if i'm posting in the right place so my apologizes if I'm wrong.
I'm trying to convert our old intranet (done in ASP with a SQL Server database) to a brand new one with drupal.
We manage with the intranet a very basic part of our project finances: For each project, we have an annual budget, or various annual budgets if the project lasts for more than 1 year. In every "annuality", we have the yearly amount of money attributed, the money that remains, and various items called "cost", which contains 2 fields: a cost type and an amount. The idea is that: at the beginning of the year, you have a certain amount of money, and every added cost subtracts to the "annuality amount", so at every moment you can consult how much money remains for the project, in the field called "remained money".
I was thinking of doing it with 3 content types in drupal: the project, the annuality, the cost.
Project node should contains a reference to the annuality nodes, and annuality nodes a reference to the cost nodes.
So my questions are:
- Is there any module to be able to create a node (annuality) from another (the project) and automatically create a reference to the first one (annuality) in the second one (project)?
- Any idea about creating an automatic calculation of the money left in the annuality after adding a cost ?