fix: List transactions now has proper placeholder
This commit is contained in:
parent
0ad578ffb9
commit
bca8d214b7
2 changed files with 4 additions and 2 deletions
|
|
@ -65,6 +65,8 @@
|
|||
- WebGUI::Session::Scratch->delete now returns the value deleted for
|
||||
convenience, like Perl's built-in delete() function.
|
||||
- fix: Auth redirectOnLogin wouldn't work if login called from Operation::execute()
|
||||
- fix: WebGUI::Operation::Commerce->listTransactions now adds trailing 0's to
|
||||
prices/totals.
|
||||
- fix: Uncommitted Collaborations and adding threads
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -970,8 +970,8 @@ sub www_listTransactions {
|
|||
$output .= '<td>'.$session->icon->delete('op=deleteTransaction;tid='.$transaction->get('transactionId')).'</td>';
|
||||
$output .= '<td>'.$session->datetime->epochToHuman($transaction->get('initDate')).'</td>';
|
||||
$output .= '<td>'.$session->datetime->epochToHuman($transaction->get('completionDate')).'</td>';
|
||||
$output .= '<td>'.$transaction->get('amount').'</td>';
|
||||
$output .= '<td>'.$transaction->get('shippingCost').'</td>';
|
||||
$output .= '<td>'.sprintf('%.2f',$transaction->get('amount')).'</td>';
|
||||
$output .= '<td>'.sprintf('%.2f',$transaction->get('shippingCost')).'</td>';
|
||||
$output .= '<td>'.$transaction->get('status').'</td>';
|
||||
$output .= '<td>'.$transaction->get('shippingStatus').'</td>';
|
||||
$output .= '</tr>';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue