fix totals on refund report, #40561
authorMark Wells <mark@freeside.biz>
Mon, 29 Feb 2016 03:32:12 +0000 (19:32 -0800)
committerMark Wells <mark@freeside.biz>
Mon, 29 Feb 2016 03:32:12 +0000 (19:32 -0800)
httemplate/search/elements/cust_pay_or_refund.html

index 697cf84..7d7fb73 100755 (executable)
@@ -58,12 +58,12 @@ Examples:
 
                 'group_column'   => 'payby',
                 'group_label'    => 'payby_name',
 
                 'group_column'   => 'payby',
                 'group_label'    => 'payby_name',
-                'subtotal'       => { $opt{name_verb} => "sum($amount_field)" },
+                'subtotal'       => { $opt{amount_field} => "sum($amount_field)" },
                 'subtotal_row'   => [ 'Subtotal',
                                       sub { sprintf($money, $_[0]->$amount_field) },
                                     ],
                 'total_row'      => [ '<B>Total</B>',
                 'subtotal_row'   => [ 'Subtotal',
                                       sub { sprintf($money, $_[0]->$amount_field) },
                                     ],
                 'total_row'      => [ '<B>Total</B>',
-                                      sub { sprintf("<B>$money</B>", $_[0]->$amount_field) },
+                                      sub { warn Dumper @_; sprintf("<B>$money</B>", $_[0]->$amount_field) },
                                     ],
                 'show_combined'  => 1,
 &>
                                     ],
                 'show_combined'  => 1,
 &>