Skip to content

Commit

Permalink
Issue #306: fixed to allow the custom accounting while posting intern…
Browse files Browse the repository at this point in the history
…al consumption document

EPL-1238
  • Loading branch information
amarsinghanand authored and Amar-Etendo committed May 21, 2024
1 parent d3cfa84 commit 263bcea
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,8 @@ public Fact createFact(AcctSchema as, ConnectionProvider conn, Connection con,
DocumentType);
if (StringUtils.isEmpty(strClassname)) {
strClassname = AcctServerData.selectTemplate(conn, as.m_C_AcctSchema_ID, AD_Table_ID);
} else {
}
if(!StringUtils.isEmpty(strClassname)) {
try {
DocInternalConsumptionTemplate newTemplate = (DocInternalConsumptionTemplate) Class
.forName(strClassname)
Expand Down

0 comments on commit 263bcea

Please sign in to comment.