addition to delete duplicate entries.
This commit is contained in:
parent
8b827e6067
commit
f056701c04
1 changed files with 5 additions and 0 deletions
|
|
@ -48,6 +48,11 @@ sub handler {
|
||||||
my $purchaseId;
|
my $purchaseId;
|
||||||
if ($purchaseId = $self->session->scratch->get("purchaseId".$counter)) {
|
if ($purchaseId = $self->session->scratch->get("purchaseId".$counter)) {
|
||||||
$self->session->db->setRow('EventManagementSystem_purchases', 'purchaseId', {'purchaseId'=>$purchaseId, 'transactionId'=>$transactionId}, $purchaseId);
|
$self->session->db->setRow('EventManagementSystem_purchases', 'purchaseId', {'purchaseId'=>$purchaseId, 'transactionId'=>$transactionId}, $purchaseId);
|
||||||
|
my $theseRegs = $self->session->db->buildArrayRefOfHashRefs("select * from EventManagementSystem_registrations where purchaseId=?",[$purchaseId]);
|
||||||
|
foreach (@$theseRegs) {
|
||||||
|
# clean up the duplicate registrations, if any.
|
||||||
|
$self->session->db->write("delete from EventManagementSystem_registrations where badgeId=? and productId=? and registrationId!=?,[$_->{badgeId},$_->{productId},$_->{registrationId}]);
|
||||||
|
}
|
||||||
$self->session->scratch->delete("purchaseId".$counter);
|
$self->session->scratch->delete("purchaseId".$counter);
|
||||||
$counter++;
|
$counter++;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue