|
There seem to be a few properties added to JsonCommand.java and CommandWrapper.java, which include
private final Long codeId;
private final String transactionId;
private final String supportedEntityType;
private final Long supportedEntityId;
private Long templateId;
None of these properties are being persisted into the database (m_portfolio_command_source), which means the JsonCommand cannot be recreated (if maker checker is enable) and is bound to throw up errors
1) Find out where these properties are used? (Seems to be accounting, Calendars/Meetings and UserGenerated Documents) 2) Check if they are throwing errors on enabling maker checker and provide a fix for the same
Easy way for figuring out the entry points would be to have a look at the files modified in this pull request https://github.com/openMF/mifosx/pull/814/files
|