minor - improve readability of ExpenseTypesFromAccounts
This commit is contained in:
parent
6542926f11
commit
483716c3ab
|
@ -81,8 +81,9 @@ public class ExpenseTypesFromAccounts extends SvrProcess {
|
||||||
ProcessInfoParameter[] para = getParameter();
|
ProcessInfoParameter[] para = getParameter();
|
||||||
for (int i = 0; i < para.length; i++) {
|
for (int i = 0; i < para.length; i++) {
|
||||||
String name = para[i].getParameterName();
|
String name = para[i].getParameterName();
|
||||||
if (para[i].getParameter() == null);
|
if (para[i].getParameter() == null) {
|
||||||
else if (name.equals("M_Product_Category_ID")) {
|
// nothing
|
||||||
|
} else if (name.equals("M_Product_Category_ID")) {
|
||||||
m_productCategoryId = para[i].getParameterAsInt();
|
m_productCategoryId = para[i].getParameterAsInt();
|
||||||
} else if (name.equals("C_AcctSchema_ID")) {
|
} else if (name.equals("C_AcctSchema_ID")) {
|
||||||
m_acctSchemaId = para[i].getParameterAsInt();
|
m_acctSchemaId = para[i].getParameterAsInt();
|
||||||
|
|
Loading…
Reference in New Issue