|
@Ed Cable - The ability to export/import the COA throught some user friendly interface is probably something that would make specialists lives a bit easier when setting up new instances but theres a much simple workaround; the specialists can just do this at the database:
mysqldump -uroot -p[password] mifostenant-default acc_accounting_rule mysqldump -uroot -pmysql mifostenant-default acc_accounting_rule acc_gl_account acc_rule_tags > acctabledump.sql
mysql -uroot -p[password] mifostenant-new < acctabledump.sql
Saves doing development on export/import support.
|