fix: Commerce and groups
This commit is contained in:
parent
d5d9f05500
commit
3678e470d3
2 changed files with 8 additions and 2 deletions
|
|
@ -60,6 +60,7 @@
|
||||||
- fix: More DataForm bugs
|
- fix: More DataForm bugs
|
||||||
- Added new template vars to DataForm
|
- Added new template vars to DataForm
|
||||||
- fix: op=editSubscription causes fatal
|
- fix: op=editSubscription causes fatal
|
||||||
|
- fix: Commerce and groups
|
||||||
|
|
||||||
6.99.3
|
6.99.3
|
||||||
- Someone removed the status from the submission templates. That has been
|
- Someone removed the status from the submission templates. That has been
|
||||||
|
|
|
||||||
|
|
@ -112,8 +112,13 @@ sub completeTransaction {
|
||||||
|
|
||||||
foreach (@{$self->getItems}) {
|
foreach (@{$self->getItems}) {
|
||||||
$item = WebGUI::Commerce::Item->new($self->session,$_->{itemId}, $_->{itemType});
|
$item = WebGUI::Commerce::Item->new($self->session,$_->{itemId}, $_->{itemType});
|
||||||
$item->handler($_->{transactionId});
|
if (ref($item) eq 'WebGUI::Commerce::Item::Event') {
|
||||||
#$item->handler;
|
$item->handler($_->{transactionId});
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$item->handler;
|
||||||
|
}
|
||||||
|
$self->session->errorHandler->warn(ref($item));
|
||||||
}
|
}
|
||||||
|
|
||||||
$self->status('Completed');
|
$self->status('Completed');
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue