|
|
|
Forum Member
      
Group: Forum Members
Last Login: 3/6/2007 1:34:52 PM
Posts: 43,
Visits: 136
|
|
| joyce, thanks for the work but one issue , the totals dont show up.. the work order hours do but not in the total qty and N/C in the footer . trying to figure out why Randy
|
|
|
|
|
AyaNova Sales & Support
      
Group: Administrators
Last Login: Yesterday @ 4:59:45 PM
Posts: 1,868,
Visits: 4,328
|
|
| Hi Randy Oops - there should have been a script for the field xrTableCell53 (where the Net Service Hours Quantity is display) in the OnSummaryCalculated property to keep a running total for TotalQty which is what would display in the xrTotalQty field. I've edited the template, and have uploaded it. Delete the one you have, download again, export and import. Or add the following OnSummaryCalculated script property for xrTableCell53 private void OnSummaryCalculated(object sender, DevExpress.XtraReports.UI.TextFormatEventArgs e) { if(e.Value != null) TotalQty += Convert.ToDecimal(e.Value); }
- Joyce
- AyaNova Sales & Technical Support
- http://www.ayanova.com
|
|
|
|
|
Forum Member
      
Group: Forum Members
Last Login: 3/6/2007 1:34:52 PM
Posts: 43,
Visits: 136
|
|
| joyce thanks that fixed the issue.. randy
|
|
|
|