Hi, I am still trying to get help on the following. Which is really the last thing holding me back from starting deployment.
The main concern I have now is the following. I have left relevant bit of Ryan's appreciated feedback already. > > Mifos can indicate different accounts (ie, banks) for the payments to go > > into by PRODUCT. Mifos cannot, however, indicate different accounts for > > payments by BRANCH. Obviously, for most institutions, this latter option is > > the preferred one. While Mifos doesn't currently support this, we have > > noted it and are looking at for a possible accounting enhancements in the > > future. So I can't have different bank accounts and map transactions to those accounts according to branches. Ok. But, can I do the following? Add various fee accounts like shown in this part of my mifosChartOfAccounts.custom.xml and mifosBeanConfig.custom.xml. <GLAccount code="31300" name="Income from micro credit & lending activities"> <GLAccount code="31301" name="Fees" /> <GLAccount code="31302" name="Processing Fees" /> <GLAccount code="31303" name="Training Fees" /> <GLAccount code="31304" name="Other Fees" /> </GLAccount> and <bean id = "financialRules" class="org.mifos.accounts.financial.util.helpers.FinancialRules" abstract="false" factory-method="getInstance"> <property name="actionToDebitAccount"> <map> <entry key="FEEPOSTING" value="11201"/> </map> </property> <property name="actionToCreditAccount"> <map> <entry key="FEEPOSTING" value="31301"/> <entry key="FEEPOSTING" value="31302"/> <entry key="FEEPOSTING" value="31303"/> <entry key="MISCFEEPOSTING" value="31304"/> </map> </property> And then create the Fee types (Fees, Processing fees, training fees...) in the user interface. If not, then I am, I think, at a complete loss at how one can customise the chart of accounts and action mappings, and, would be very grateful if I could see an example much more detailed then the one provided in the source code (more accounts with associated mappings). Thank you, -- GH ------------------------------------------------------------------------------ Start uncovering the many advantages of virtual appliances and start using them to simplify application deployment and accelerate your shift to cloud computing. http://p.sf.net/sfu/novell-sfdev2dev _______________________________________________ Mifos-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mifos-users
