@@ -242,6 +242,22 @@ public class ReportService {
242242 * variable doc_num
243243 */
244244 private String doc_num = null ;
245+
246+ private String journal_code = null ;
247+
248+ private String employee = null ;
249+
250+ private String agency_id = null ;
251+
252+ private String custom1 = null ;
253+
254+ private String custom2 = null ;
255+
256+ private String custom3 = null ;
257+
258+ private String shipvia = null ;
259+
260+ private String account_status = null ;
245261
246262
247263
@@ -483,6 +499,38 @@ private IntuitMessage prepareReport(String reportName) throws FMSException {
483499 {
484500 requestParameters .put (RequestElements .REPORT_PARAM_DOC_NUM , getDoc_num ());
485501 }
502+ if (getJournal_code () != null )
503+ {
504+ requestParameters .put (RequestElements .REPORT_PARAM_JOURNAL_CODE , getJournal_code ());
505+ }
506+ if (getEmployee () != null )
507+ {
508+ requestParameters .put (RequestElements .REPORT_PARAM_EMPLOYEE , getEmployee ());
509+ }
510+ if (getAgency_id () != null )
511+ {
512+ requestParameters .put (RequestElements .REPORT_PARAM_AGENCY_ID , getAgency_id ());
513+ }
514+ if (getCustom1 () != null )
515+ {
516+ requestParameters .put (RequestElements .REPORT_PARAM_CUSTOM1 , getCustom1 ());
517+ }
518+ if (getCustom2 () != null )
519+ {
520+ requestParameters .put (RequestElements .REPORT_PARAM_CUSTOM2 , getCustom2 ());
521+ }
522+ if (getCustom3 () != null )
523+ {
524+ requestParameters .put (RequestElements .REPORT_PARAM_CUSTOM3 , getCustom3 ());
525+ }
526+ if (getShipvia () != null )
527+ {
528+ requestParameters .put (RequestElements .REPORT_PARAM_SHIPVIA , getShipvia ());
529+ }
530+ if (getAccount_status () != null )
531+ {
532+ requestParameters .put (RequestElements .REPORT_PARAM_ACCOUNT_STATUS , getAccount_status ());
533+ }
486534
487535
488536 requestElements .setAction (OperationType .REPORTS .toString () + "/" + reportName );
@@ -1059,4 +1107,70 @@ public String getDoc_num() {
10591107 public void setDoc_num (String doc_num ) {
10601108 this .doc_num = doc_num ;
10611109 }
1110+
1111+ public String getJournal_code () {
1112+ return journal_code ;
1113+ }
1114+
1115+ public void setJournal_code (String journal_code ) {
1116+ this .journal_code = journal_code ;
1117+ }
1118+
1119+ public String getEmployee () {
1120+ return employee ;
1121+ }
1122+
1123+ public void setEmployee (String employee ) {
1124+ this .employee = employee ;
1125+ }
1126+
1127+ public String getAgency_id () {
1128+ return agency_id ;
1129+ }
1130+
1131+ public void setAgency_id (String agency_id ) {
1132+ this .agency_id = agency_id ;
1133+ }
1134+
1135+ public String getCustom1 () {
1136+ return custom1 ;
1137+ }
1138+
1139+ public void setCustom1 (String custom1 ) {
1140+ this .custom1 = custom1 ;
1141+ }
1142+
1143+ public String getCustom2 () {
1144+ return custom2 ;
1145+ }
1146+
1147+ public void setCustom2 (String custom2 ) {
1148+ this .custom2 = custom2 ;
1149+ }
1150+
1151+ public String getCustom3 () {
1152+ return custom3 ;
1153+ }
1154+
1155+ public void setCustom3 (String custom3 ) {
1156+ this .custom3 = custom3 ;
1157+ }
1158+
1159+ public String getShipvia () {
1160+ return shipvia ;
1161+ }
1162+
1163+ public void setShipvia (String shipvia ) {
1164+ this .shipvia = shipvia ;
1165+ }
1166+
1167+ public String getAccount_status () {
1168+ return account_status ;
1169+ }
1170+
1171+ public void setAccount_status (String account_status ) {
1172+ this .account_status = account_status ;
1173+ }
1174+
1175+
10621176}
0 commit comments