This repository has been archived by the owner on Jul 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBudgetToActual.ascx.cs
1094 lines (972 loc) · 33.4 KB
/
BudgetToActual.ascx.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using System;
using System.Data;
using System.Linq;
using System.Web.UI.WebControls;
using System.Xml.Serialization;
using Jenzabar.Common.ApplicationBlocks.ExceptionManagement;
using Jenzabar.CRM.Utility;
using Jenzabar.Portal.Framework;
using Jenzabar.Portal.Framework.Configuration;
//using Jenzabar.Portal.Framework.Web.Configuration;
using Jenzabar.Portal.Framework.Web.UI;
namespace Jenzabar.CRM.Staff.Web.Portlets.GLAccountLookupPortlet
{
public class BudgetToActual : PortletViewBase
{
protected System.Web.UI.WebControls.Label lblPeriod;
protected System.Web.UI.WebControls.Button btnNewSearch;
protected System.Web.UI.WebControls.Button btnCancel;
//protected Jenzabar.Common.Web.UI.Controls.GroupedGrid dgBudgetToActual;
protected System.Web.UI.WebControls.DataGrid dgBudgetToActual;
protected System.Web.UI.WebControls.Label lblError;
protected System.Web.UI.WebControls.PlaceHolder phEndPeriod;
protected System.Web.UI.WebControls.LinkButton lbPrev;
protected System.Web.UI.WebControls.LinkButton lbNext;
protected System.Web.UI.WebControls.LinkButton lbPos1;
protected System.Web.UI.WebControls.LinkButton lbPos2;
protected System.Web.UI.WebControls.LinkButton lbPos4;
protected System.Web.UI.WebControls.LinkButton lbPos5;
protected System.Web.UI.WebControls.LinkButton lbPos6;
protected System.Web.UI.WebControls.LinkButton lbPos7;
protected System.Web.UI.WebControls.LinkButton lbPos8;
protected System.Web.UI.WebControls.LinkButton lbPos3;
protected BudgetLookupInfo bl;
const int INT_MAX_PAGE_POS = 8;
const int INT_MIN_PAGE_POS = 1;
private string strResultsPerPage;
private int intResultsPerPage;
private int intTotalPages;
private string strCurERPType;
//private int intStartNum;
public override string ViewName
{
get
{
return GLALPConstants.BUDGET_TO_ACTUAL_SCREEN;
}
}
#region Web Form Designer generated code
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: This call is required by the ASP.NET Web Form Designer.
//
InitializeComponent();
base.OnInit(e);
}
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.dgBudgetToActual.ItemCommand += new System.Web.UI.WebControls.DataGridCommandEventHandler(this.dgBudgetToActual_ItemCommand);
this.dgBudgetToActual.ItemDataBound += new System.Web.UI.WebControls.DataGridItemEventHandler(this.dgBudgetToActual_ItemDataBound);
this.btnNewSearch.Click += new System.EventHandler(this.btnNewSearch_Click);
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
this.Load += new System.EventHandler(this.Page_Load);
this.lbPos1.Click +=new EventHandler(lbPos1_Click);
this.lbPos2.Click +=new EventHandler(lbPos2_Click);
this.lbPos3.Click +=new EventHandler(lbPos3_Click);
this.lbPos4.Click +=new EventHandler(lbPos4_Click);
this.lbPos5.Click +=new EventHandler(lbPos5_Click);
this.lbPos6.Click +=new EventHandler(lbPos6_Click);
this.lbPos7.Click +=new EventHandler(lbPos7_Click);
this.lbPos8.Click +=new EventHandler(lbPos8_Click);
this.lbPrev.Click +=new EventHandler(lbPrev_Click);
this.lbNext.Click +=new EventHandler(lbNext_Click);
}
#endregion
private void Page_Load(object sender, System.EventArgs e)
{
string strBudgetLookupXML = null;
//TTP 7803 - Retrieve the previously stored search XML
strBudgetLookupXML = ((this.ParentPortlet.PortletViewState["GLBudgetStatusXML"]!=null)?this.ParentPortlet.PortletViewState["GLBudgetStatusXML"].ToString():"");
//If we have previously stored search data then use it.
if(strBudgetLookupXML !=null && strBudgetLookupXML != string.Empty)
{
bl = (BudgetLookupInfo)PlugIn.MapXMLToObject(strBudgetLookupXML, new XmlSerializer(typeof(BudgetLookupInfo)));
}
//bl = (BudgetLookupInfo)this.Session["GLBudgetStatusXML"];
//bl = (BudgetLookupInfo)this.Page.Cache["GLBudgetStatusXML"];
strResultsPerPage = ((this.ParentPortlet.PortletViewState["GLResultsPerPage"] != null)? this.ParentPortlet.PortletViewState["GLResultsPerPage"].ToString():"");
if(bl !=null && bl.Accounts !=null)
{
//Convert the results per page setting value to an actual number
if(strResultsPerPage !=null && strResultsPerPage !=string.Empty )
{
if(strResultsPerPage =="ALL")
{
intResultsPerPage = bl.Accounts.Length;
}
else
{
intResultsPerPage = System.Convert.ToInt32(strResultsPerPage);
}
}
//Calculate the total pages
if(bl.Accounts!=null && bl.Accounts.Length >= intResultsPerPage
&& strResultsPerPage.ToUpper() !="ALL")
{
intTotalPages = bl.Accounts.Length/intResultsPerPage;
if((bl.Accounts.Length % intResultsPerPage) > 0)
{
intTotalPages +=1;
}
}
else
{
intTotalPages = 1;
}
}
if(this.IsFirstLoad)
{
Initialize_Globalization();
//string strXML = ((this.ParentPortlet.PortletViewState["GLBudgetStatusXML"] != null)? this.ParentPortlet.PortletViewState["GLBudgetStatusXML"].ToString():"");
//Clear out the cache since we don't need this anymore.
//this.Page.Cache.Remove("GLBudgetStatusXML");
//bl = (BudgetLookupInfo)PlugIn.MapXMLToObject(strXML, new XmlSerializer(typeof(BudgetLookupInfo)));
Initialize_Objects();
}
}
#region Events
//These are the click events for the pagination link buttons
private void lbPos1_Click(object sender, System.EventArgs e)
{
try
{
this.lbPrev.Visible = false;
LinkButton lb = (LinkButton)sender;
if(lb !=null)
{
string strPosVal =lb.Text.Trim();
if(strPosVal == intTotalPages.ToString())
{
lbNext.Visible = false;
}
else
{
lbNext.Visible = true;
}
SaveCurrentPageNum(strPosVal);
//Enable the previous link buttons.
EnablePrevPositionNumbers(System.Convert.ToInt32(strPosVal));
this.lbPos2.Enabled = false;
if(System.Convert.ToInt32(strPosVal) > 0)
{
int intStartPos = (System.Convert.ToInt32(strPosVal)- 1 ) * this.intResultsPerPage;
PopulateAccountData(intStartPos);
SetSelectedPage(System.Convert.ToInt32(strPosVal));
}
}
}
catch(System.Exception ex)
{
ExceptionManager.Publish(ex);
this.lblError.Visible = true;
this.lblError.Text = ex.Message.ToString();
}
}
private void lbPos2_Click(object sender, System.EventArgs e)
{
try
{
this.lbPrev.Visible = true;
LinkButton lb = (LinkButton)sender;
if(lb !=null)
{
string strPosVal =lb.Text.Trim();
if(strPosVal == intTotalPages.ToString())
{
lbNext.Visible = false;
}
else
{
lbNext.Visible = true;
}
SaveCurrentPageNum(strPosVal);
//Enable the previous link buttons.
EnablePrevPositionNumbers(System.Convert.ToInt32(strPosVal));
this.lbPos2.Enabled = false;
if(System.Convert.ToInt32(strPosVal) > 0)
{
int intStartPos = (System.Convert.ToInt32(strPosVal)- 1 ) * this.intResultsPerPage;
PopulateAccountData(intStartPos);
SetSelectedPage(System.Convert.ToInt32(strPosVal));
}
}
}
catch(System.Exception ex)
{
ExceptionManager.Publish(ex);
this.lblError.Visible = true;
this.lblError.Text = ex.Message.ToString();
}
}
private void lbPos3_Click(object sender, System.EventArgs e)
{
try
{
this.lbPrev.Visible = true;
LinkButton lb = (LinkButton)sender;
if(lb !=null)
{
string strPosVal =lb.Text.Trim();
if(strPosVal == intTotalPages.ToString())
{
lbNext.Visible = false;
}
else
{
lbNext.Visible = true;
}
SaveCurrentPageNum(strPosVal);
//Enable the previous link buttons.
EnablePrevPositionNumbers(System.Convert.ToInt32(strPosVal));
this.lbPos3.Enabled = false;
if(System.Convert.ToInt32(strPosVal) > 0)
{
int intStartPos = (System.Convert.ToInt32(strPosVal)- 1 ) * this.intResultsPerPage;
PopulateAccountData(intStartPos);
SetSelectedPage(System.Convert.ToInt32(strPosVal));
}
}
}
catch(System.Exception ex)
{
ExceptionManager.Publish(ex);
this.lblError.Visible = true;
this.lblError.Text = ex.Message.ToString();
}
}
private void lbPos4_Click(object sender, System.EventArgs e)
{
try
{
this.lbPrev.Visible = true;
LinkButton lb = (LinkButton)sender;
if(lb !=null)
{
string strPosVal =lb.Text.Trim();
if(strPosVal == intTotalPages.ToString())
{
lbNext.Visible = false;
}
else
{
lbNext.Visible = true;
}
SaveCurrentPageNum(strPosVal);
//Enable the previous link buttons.
EnablePrevPositionNumbers(System.Convert.ToInt32(strPosVal));
this.lbPos4.Enabled = false;
if(System.Convert.ToInt32(strPosVal) > 0)
{
int intStartPos = (System.Convert.ToInt32(strPosVal)- 1 ) * this.intResultsPerPage;
PopulateAccountData(intStartPos);
SetSelectedPage(System.Convert.ToInt32(strPosVal));
}
}
}
catch(System.Exception ex)
{
ExceptionManager.Publish(ex);
this.lblError.Visible = true;
this.lblError.Text = ex.Message.ToString();
}
}
private void lbPos5_Click(object sender, System.EventArgs e)
{
try
{
this.lbPrev.Visible = true;
LinkButton lb = (LinkButton)sender;
if(lb !=null)
{
string strPosVal =lb.Text.Trim();
if(strPosVal == intTotalPages.ToString())
{
lbNext.Visible = false;
}
else
{
lbNext.Visible = true;
}
SaveCurrentPageNum(strPosVal);
//Enable the previous link buttons.
EnablePrevPositionNumbers(System.Convert.ToInt32(strPosVal));
this.lbPos5.Enabled = false;
if(System.Convert.ToInt32(strPosVal) > 0)
{
int intStartPos = (System.Convert.ToInt32(strPosVal)- 1 ) * this.intResultsPerPage;
PopulateAccountData(intStartPos);
SetSelectedPage(System.Convert.ToInt32(strPosVal));
}
}
}
catch(System.Exception ex)
{
ExceptionManager.Publish(ex);
this.lblError.Visible = true;
this.lblError.Text = ex.Message.ToString();
}
}
private void lbPos6_Click(object sender, System.EventArgs e)
{
try
{
this.lbPrev.Visible = true;
LinkButton lb = (LinkButton)sender;
if(lb !=null)
{
string strPosVal =lb.Text.Trim();
if(strPosVal == intTotalPages.ToString())
{
lbNext.Visible = false;
}
else
{
lbNext.Visible = true;
}
SaveCurrentPageNum(strPosVal);
//Enable the previous link buttons.
EnablePrevPositionNumbers(System.Convert.ToInt32(strPosVal));
this.lbPos6.Enabled = false;
if(System.Convert.ToInt32(strPosVal) > 0)
{
int intStartPos = (System.Convert.ToInt32(strPosVal)- 1 ) * this.intResultsPerPage;
PopulateAccountData(intStartPos);
SetSelectedPage(System.Convert.ToInt32(strPosVal));
}
}
}
catch(System.Exception ex)
{
ExceptionManager.Publish(ex);
this.lblError.Visible = true;
this.lblError.Text = ex.Message.ToString();
}
}
private void lbPos7_Click(object sender, System.EventArgs e)
{
try
{
this.lbPrev.Visible = true;
LinkButton lb = (LinkButton)sender;
if(lb !=null)
{
string strPosVal =lb.Text.Trim();
if(strPosVal == intTotalPages.ToString())
{
lbNext.Visible = false;
}
else
{
lbNext.Visible = true;
}
SaveCurrentPageNum(strPosVal);
//Enable the previous link buttons.
EnablePrevPositionNumbers(System.Convert.ToInt32(strPosVal));
this.lbPos7.Enabled = false;
if(System.Convert.ToInt32(strPosVal) > 0)
{
int intStartPos = (System.Convert.ToInt32(strPosVal)- 1 ) * this.intResultsPerPage;
PopulateAccountData(intStartPos);
SetSelectedPage(System.Convert.ToInt32(strPosVal));
}
}
}
catch(System.Exception ex)
{
ExceptionManager.Publish(ex);
this.lblError.Visible = true;
this.lblError.Text = ex.Message.ToString();
}
}
private void lbPos8_Click(object sender, System.EventArgs e)
{
try
{
this.lbPrev.Visible = true;
LinkButton lb = (LinkButton)sender;
if(lb !=null)
{
string strPosVal =lb.Text.Trim();
if(strPosVal == intTotalPages.ToString())
{
lbNext.Visible = false;
}
else
{
lbNext.Visible = true;
}
SaveCurrentPageNum(strPosVal);
//Enable the previous link buttons.
EnablePrevPositionNumbers(System.Convert.ToInt32(strPosVal));
this.lbPos8.Enabled = false;
if(System.Convert.ToInt32(strPosVal) > 0)
{
int intStartPos = (System.Convert.ToInt32(strPosVal)- 1 ) * this.intResultsPerPage;
PopulateAccountData(intStartPos);
SetSelectedPage(System.Convert.ToInt32(strPosVal));
}
}
}
catch(System.Exception ex)
{
ExceptionManager.Publish(ex);
this.lblError.Visible = true;
this.lblError.Text = ex.Message.ToString();
}
}
private void lbNext_Click(object sender, System.EventArgs e)
{
int intLastPos ;
string strLastPos = null;
LinkButton lb;
string strCurPage = ((this.ParentPortlet.PortletViewState["GL_BUD_TO_ACTUAL_PAGE"]!=null)?this.ParentPortlet.PortletViewState["GL_BUD_TO_ACTUAL_PAGE"].ToString():"0");
try
{
//Get the last visible page number link button on the screen
for(int i= INT_MIN_PAGE_POS; i<=INT_MAX_PAGE_POS; i++)
{
LinkButton lbPage = (LinkButton)this.FindControl("lbPos" + i.ToString());
if(lbPage !=null)
{
if(lbPage.Visible == false)
{
strLastPos = "lbPos" + i.ToString();
i =INT_MAX_PAGE_POS;
}
}
}
int intCurPage = System.Convert.ToInt32(strCurPage);
int intNextPageNum = intCurPage + 1;
if(strLastPos !=null && strLastPos !=string.Empty)
{
lb = (LinkButton)this.FindControl(strLastPos);
}
else
{
lb = (LinkButton)this.FindControl("lbPos8");
}
if(lb !=null)
{
if(lb.Text != string.Empty)
{
intLastPos = System.Convert.ToInt32(lb.Text);
}
else
{
intLastPos = INT_MAX_PAGE_POS ;
}
if (System.Convert.ToInt32(strCurPage)==intLastPos)
{
EnablePagination((intLastPos + 1),this.bl.Accounts.Length);
PopulateAccountData((intLastPos * intResultsPerPage) );
SaveCurrentPageNum(intNextPageNum.ToString());
SetSelectedPage(intNextPageNum);
}
else
{
//string strPage = ((this.ParentPortlet.PortletViewState["GL_BUD_TO_ACTUAL_PAGE"]!=null)?this.ParentPortlet.PortletViewState["GL_BUD_TO_ACTUAL_PAGE"].ToString():"");
if (strCurPage !="")
{
//EnablePagination((intCurPage),this.bl.Accounts.Length);
PopulateAccountData((intCurPage * intResultsPerPage) );
SaveCurrentPageNum(System.Convert.ToString(intNextPageNum));
SetSelectedPage(intNextPageNum);
}
}
}
}
catch(System.Exception ex)
{
ExceptionManager.Publish(ex);
this.lblError.Visible = true;
this.lblError.Text = ex.Message.ToString();
}
}
private void lbPrev_Click(object sender, System.EventArgs e)
{
int intFirstPos;
try
{
string strCurPage = ((this.ParentPortlet.PortletViewState["GL_BUD_TO_ACTUAL_PAGE"]!=null)?this.ParentPortlet.PortletViewState["GL_BUD_TO_ACTUAL_PAGE"].ToString():"0");
int intCurPage = System.Convert.ToInt32(strCurPage);
int intPrevPageNum = intCurPage - 1;
LinkButton lb = (LinkButton)this.FindControl("lbPos1");
if(lb !=null)
{
intFirstPos = System.Convert.ToInt32(lb.Text);
if (System.Convert.ToInt32(intPrevPageNum)< intFirstPos)
{
EnablePagination(1, this.bl.Accounts.Length);
}
if (strCurPage !="")
{
PopulateAccountData((intPrevPageNum - 1)* intResultsPerPage );
SaveCurrentPageNum(System.Convert.ToString(intPrevPageNum));
SetSelectedPage(intPrevPageNum);
}
}
}
catch(System.Exception ex)
{
ExceptionManager.Publish(ex);
this.lblError.Visible = true;
this.lblError.Text = ex.Message.ToString();
}
}
#endregion
private void Initialize_Globalization()
{
this.btnCancel.Text = GLALPMessages.TXT_CANCEL;
this.btnNewSearch.Text = GLALPMessages.TXT_NEW_SEARCH;
}
private void Initialize_Objects()
{
object[] PluginParam = new object[7];
string strXML = "";
string strError = "";
strCurERPType = Settings.Current.ERPType.ToUpper();
//TTP 8923
string strHostID = ((PortalUser.Current.HostID !=null)?PortalUser.Current.HostID.ToString():"");
this.lbPos1.Enabled = false;
//Set the Pagination controls
if(intTotalPages > 1)
{
EnablePagination(1,this.bl.Accounts.Length);
SaveCurrentPageNum("1");
}
try
{
//Make sure we have the budget info object
if(bl ==null )
{
PluginParam[0] = strHostID;
PluginParam[1] = this.ParentPortlet.PortletViewState["BeginAcctNum"].ToString();
PluginParam[2] = this.ParentPortlet.PortletViewState["EndAcctNum"].ToString();
PluginParam[3] = this.ParentPortlet.PortletViewState["Year"].ToString();
PluginParam[4] = this.ParentPortlet.PortletViewState["BeginPeriod"].ToString();
PluginParam[5] = this.ParentPortlet.PortletViewState["EndPeriod"].ToString();
PluginParam[6] = this.ParentPortlet.PortletViewState["BudRange"].ToString();
// Serialize XML form plugin
this.GetInstance<IStaff>().GetBudgetStatus(strHostID, this.ParentPortlet.PortletViewState["BeginAcctNum"].ToString(), this.ParentPortlet.PortletViewState["EndAcctNum"].ToString(), this.ParentPortlet.PortletViewState["Year"].ToString(), this.ParentPortlet.PortletViewState["BeginPeriod"].ToString(), this.ParentPortlet.PortletViewState["EndPeriod"].ToString(), this.ParentPortlet.PortletViewState["BudRange"].ToString(), ref strXML, ref strError);
bl = (BudgetLookupInfo)PlugIn.MapXMLToObject(strXML, new XmlSerializer(typeof(BudgetLookupInfo)));
}
PopulateAccountData(0);
}
catch(System.Exception ex)
{
ExceptionManager.Publish(ex);
this.lblError.Visible = true;
this.lblError.Text = ex.GetBaseException().Message;
}
}
/// <summary>
/// This method will populate the account data based on a starting number. This method
/// is used for pagination so we only display a certain amount of accounts per page.
/// </summary>
/// <param name="intStartNum"></param>
private void PopulateAccountData(int intStartNum)
{
int intMaxPerPage = intResultsPerPage;
try
{
//bl = (BudgetLookupInfo)PlugIn.MapXMLToObject(strXML, new XmlSerializer(typeof(BudgetLookupInfo)));
if (bl.Accounts != null)
{
//this.lblPeriod.Text = bl.Period.ToString();
this.lblPeriod.Text = String.Format("Fiscal Year {0} {1}", this.ParentPortlet.PortletViewState["Year"].ToString(), bl.Period.ToString());
this.lblPeriod.Font.Bold = true;
this.ParentPortlet.PortletViewState["BeginPeriodDate"] = bl.BeginPeriod.ToString();
this.ParentPortlet.PortletViewState["EndPeriodDate"] = bl.EndPeriod.ToString();
//Create the table from the accounts collection of the BudgetLookupInfo object
DataTable dt = this.CreateDataTable(intStartNum, intResultsPerPage);
this.dgBudgetToActual.Columns[9].HeaderText = "<span class=\"GLAccountLookupPortlet_AccountOverBudget\">Over</span>/<span class=\"GLAccountLookupPortlet_AccountUnderBudget\">Under</span> Budget";
//Change the headers depending on whether there are any "Other" budgets.
this.dgBudgetToActual.Columns[6].Visible =
(!String.IsNullOrEmpty(bl.OtherAgainstBudgetTotal)) ||
(bl.Accounts.Any(a => !String.IsNullOrEmpty(a.OtherAgainstBudget)));
if (this.dgBudgetToActual.Columns[6].Visible)
{
this.dgBudgetToActual.Columns[5].HeaderText = "This Account Against Budget";
this.dgBudgetToActual.Columns[7].HeaderText = "Total Period Pooled Budget";
this.dgBudgetToActual.Columns[8].HeaderText = "Total Annual Pooled Budget";
}
bool bOverUnder = false;
//We do this check to make sure the intResultsPerPage variable never exceeds the number
//of accounts we have in the data table
if(dt.Rows.Count < intResultsPerPage)
{
intMaxPerPage = dt.Rows.Count;
}
//Get each row in the data table and set the appropriate variable values and column
//visibility.
for(int i=0;i<intMaxPerPage;i++)
{
if(dt.Rows[i]["OverBudget"] !=null && dt.Rows[i]["OverBudget"].ToString() != string.Empty)
{
bOverUnder = true;
}
else
{
if(dt.Rows[i]["RemainingBudget"] != null && dt.Rows[i]["RemainingBudget"].ToString() != string.Empty)
bOverUnder = true;
}
if(!bOverUnder) this.dgBudgetToActual.Columns[9].Visible = false;
//this.dgBudgetToActual.DataSource = bl.Accounts;
this.dgBudgetToActual.DataSource = dt;
this.dgBudgetToActual.DataBind();
//Disable Unposted Balance if its not there in the plugin
//if (bl.Accounts[0].UnpostedBal == null) this.dgBudgetToActual.Columns[2].Visible = false;
if (dt.Rows[i]["UnpostedBal"]== null ||strCurERPType=="CX") this.dgBudgetToActual.Columns[2].Visible = false;
//Disable Budget Range columns
switch (bl.BudRange.ToUpper())
{
case "PERIOD":
this.dgBudgetToActual.Columns[7].Visible = true;
this.dgBudgetToActual.Columns[8].Visible = false;
break;
case "ANNUAL":
this.dgBudgetToActual.Columns[7].Visible = false;
this.dgBudgetToActual.Columns[8].Visible = true;
break;
default:
this.dgBudgetToActual.Columns[7].Visible = false;
this.dgBudgetToActual.Columns[8].Visible = false;
break;
}
}
}
else
{
this.lblError.Visible = true;
this.lblError.Text = "No results were found for your search criteria";
}
}
catch (System.Exception ex)
{
ExceptionManager.Publish(ex);
this.lblError.Visible = true;
this.lblError.Text = ex.GetBaseException().Message;
}
}
/// <summary>
/// This method will create a data table and populate it with values from teh BudgetLookupInfo
/// object. It will only populate the table with the number of items specified by the StartingNum
/// and ItemLimit number values.
/// </summary>
/// <param name="intStartingNum"></param>
/// <param name="intItemLimit"></param>
/// <returns></returns>
private DataTable CreateDataTable(int intStartingNum, int intItemLimit)
{
DataTable dtAccts = new DataTable();
dtAccts.Columns.Add("AccountNumber", typeof(String));
dtAccts.Columns.Add("AccountDesc", typeof(String));
dtAccts.Columns.Add("UnpostedBal", typeof(String));
dtAccts.Columns.Add("PostedBal", typeof(String));
dtAccts.Columns.Add("Encumbrance", typeof(String));
dtAccts.Columns.Add("TotalAgainstBudget", typeof(String));
dtAccts.Columns.Add("OtherAgainstBudget", typeof(String));
dtAccts.Columns.Add("BeginPostBal", typeof(String));
dtAccts.Columns.Add("EndBal", typeof(String));
dtAccts.Columns.Add("AnnualBudget", typeof(String));
dtAccts.Columns.Add("PeriodBudget", typeof(String));
dtAccts.Columns.Add("RemainingBudget", typeof(String));
dtAccts.Columns.Add("OverBudget", typeof(String));
int intEndingNum = intItemLimit + intStartingNum;
if(intEndingNum > bl.Accounts.Length)
{
intEndingNum = bl.Accounts.Length;
}
if(bl.Accounts !=null && bl.Accounts.Length > 0)
{
for(int i = intStartingNum; i< intEndingNum; i++)
{
DataRow dr = dtAccts.NewRow();
dr["AccountNumber"]= bl.Accounts[i].AccountNumber;
dr["AccountDesc"]= bl.Accounts[i].AccountDesc;
dr["UnpostedBal"]= bl.Accounts[i].UnpostedBal;
dr["PostedBal"]= bl.Accounts[i].PostedBal;
dr["Encumbrance"]= bl.Accounts[i].Encumbrance;
dr["TotalAgainstBudget"] = bl.Accounts[i].TotalAgainstBudget;
dr["OtherAgainstBudget"] = bl.Accounts[i].OtherAgainstBudget;
dr["BeginPostBal"] = bl.Accounts[i].BeginPostBal;
dr["EndBal"]= bl.Accounts[i].EndBal;
dr["AnnualBudget"]= bl.Accounts[i].AnnualBudget;
dr["PeriodBudget"]= bl.Accounts[i].PeriodBudget;
dr["RemainingBudget"]= bl.Accounts[i].RemainingBudget;
dr["OverBudget"]= bl.Accounts[i].OverBudget;
dtAccts.Rows.Add(dr);
}
}
return dtAccts;
}
/// <summary>
/// This method will set the visibility for the pagination link buttons
/// </summary>
/// <param name="intStartPos">The starting link button position number</param>
/// <param name="intCount">The number of link buttons to display</param>
private void EnablePagination(int intStartPos, int intCount)
{
//const int INT_PAGE_POS_MAX = 8;
//const int INT_PAGE_POS_MIN = 1;
this.lbPrev.Text = "< Prev";
if (intCount > 0 && this.strResultsPerPage !="ALL")
{
//Make sure we have a value for the total number of pages we will
//need to access all of the account data.
if (intTotalPages > 0)
{
//Make sure we always start the loop at the minimum position
//link button count we can have on the screen(always 1) and never
//exceed the maximum number of link buttons we can display on the screen.
for(int i=INT_MIN_PAGE_POS; i<=INT_MAX_PAGE_POS; i++)
{
LinkButton lb = (LinkButton)this.FindControl("lbPos" + i.ToString());
if(lb !=null)
{
if(intStartPos > INT_MAX_PAGE_POS)
{
int intRelativePageNumber = i + INT_MAX_PAGE_POS;
if(intRelativePageNumber > intTotalPages)
{
lb.Visible = false;
}
else
{
lb.Text = System.Convert.ToString(i + INT_MAX_PAGE_POS);
lb.Visible = true;
lbPos1.Enabled = false;
}
}
else
{
if(intStartPos > intTotalPages
|| i > intTotalPages)
{
lb.Visible = false;
}
else
{
lb.Text = i.ToString();
lb.Visible = true;
}
}
}
}
if(intTotalPages > 1)
{
LinkButton lb = (LinkButton)this.FindControl("lbNext");
if(lb!=null)
{
lb.Text = "Next > ";
lb.Visible = true;
}
}
}
}
}
/// <summary>
/// This method will enable the previous pagination link buttons
/// based on the current position number value the user enters.
/// </summary>
/// <param name="?"></param>
private void EnablePrevPositionNumbers(int intPos)
{
intPos -= 1;
if(intPos >1)
{
for (int i = intPos; i >= 1; i--)
{
LinkButton lb = (LinkButton)this.FindControl("lbPos" + i.ToString());
if(lb !=null)
{
lb.Enabled = true;
}
}
}
}
/// <summary>
/// This method will set the selected page number link button
/// by disabling the button so that it appears that the user
/// clicked on that page link.
/// </summary>
/// <param name="intPageNum"></param>
private void SetSelectedPage(int intPageNum)
{
//const int INT_MAX_PAGE_POS = 8;
try
{
//If this is the last page then make the
//next button invisible.
if(intPageNum == intTotalPages)
{
this.lbNext.Visible = false;
}
else
{
this.lbNext.Visible = true;
}
//If this is the first page then make the
//previous button invisible.
if(intPageNum > 1)
{
this.lbPrev.Visible = true;
}
else
{
this.lbPrev.Visible = false;
}
if(intPageNum > INT_MAX_PAGE_POS)
{
intPageNum = intPageNum - INT_MAX_PAGE_POS;
}
for (int i=1; i<=INT_MAX_PAGE_POS; i++)
{
LinkButton lb = (LinkButton)this.FindControl("lbPos" + i.ToString());
if(i == intPageNum)
{
lb.Enabled = false;
}
else
{
lb.Enabled = true;
}
}
}
catch(System.Exception ex)
{
ExceptionManager.Publish(ex);
this.lblError.Visible = true;
this.lblError.Text = ex.Message.ToString();
}
}
private void SaveCurrentPageNum(string strPageNum)
{
this.ParentPortlet.PortletViewState["GL_BUD_TO_ACTUAL_PAGE"] = strPageNum;
}
//This search button functionality has actually been changed to "Refine Search"
private void btnNewSearch_Click(object sender, System.EventArgs e)
{
this.Page.Cache.Remove("GLBudgetStatusXML");
this.ParentPortlet.PortletViewState[GLALPConstants.VS_GL_REFINE_SEARCH]="Y";
this.ParentPortlet.ChangeScreen(GLALPConstants.ACCOUNT_SELECTION_SCREEN);
}
private void dgBudgetToActual_ItemDataBound(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e)
{
//First, make sure we are dealing with an Item or AlternatingItem
//First, make sure we are dealing with an Item or AlternatingItem
if(e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
{
if (e.Item.Cells[9].Text == " ") e.Item.Cells[9].Text ="";
if (e.Item.Cells[9].Text == null || e.Item.Cells[9].Text=="")
{
e.Item.Cells[9].Text = e.Item.Cells[10].Text;
e.Item.Cells[9].CssClass = "GLAccountLookupPortlet_AccountUnderBudget";
}
else
{
double total;
if (Double.TryParse(e.Item.Cells[9].Text, out total))
{
e.Item.Cells[9].CssClass =
(total < 0.0)
? "GLAccountLookupPortlet_AccountOverBudget"
: "GLAccountLookupPortlet_AccountUnderBudget";
}
}
}
if (e.Item.ItemType == ListItemType.Footer)
{
e.Item.Cells[1].Text = "Totals"; //Todo
e.Item.Cells[1].Font.Bold = true;
if(bl.UnpostBalTotal != null) e.Item.Cells[2].Text = bl.UnpostBalTotal;
e.Item.Cells[2].HorizontalAlign = HorizontalAlign.Right;
e.Item.Cells[2].Font.Bold = true;
e.Item.Cells[2].Wrap = false;