diff --git a/application/helpers/table_helper.php b/application/helpers/table_helper.php index 29bc985b1..d2da41deb 100644 --- a/application/helpers/table_helper.php +++ b/application/helpers/table_helper.php @@ -12,7 +12,7 @@ function get_sales_manage_table($sales, $controller) $CI->lang->line('sales_amount_tendered'), $CI->lang->line('sales_amount_due'), $CI->lang->line('sales_change_due'), - //$CI->lang->line('sales_payment'), + $CI->lang->line('sales_payment'), $CI->lang->line('sales_invoice_number'), ' '); @@ -74,7 +74,7 @@ function get_sales_manage_sale_data_row($sale, $controller) $table_data_row.=''.to_currency( $sale['amount_tendered'] ).''; $table_data_row.=''.to_currency( $sale['amount_due'] ).''; $table_data_row.=''.to_currency( $sale['change_due'] ).''; - //$table_data_row.=''.$sale['payment_type'].''; + $table_data_row.=''.$sale['payment_type'].''; $table_data_row.=''.$sale['invoice_number'].''; $table_data_row.=''; $table_data_row.=anchor($controller_name."/edit/" . $sale['sale_id'] . "/width:$width", $CI->lang->line('common_edit'),array('class'=>'thickbox','title'=>$CI->lang->line($controller_name.'_update')));