mirror of
https://github.com/hotspotbilling/phpnuxbill.git
synced 2025-08-31 15:19:36 +02:00
getting ready for voucher selling only
This commit is contained in:
parent
bbed893759
commit
ce7d8859b0
1 changed files with 42 additions and 39 deletions
|
@ -28,7 +28,6 @@ class Package
|
|||
$inv = "";
|
||||
$isVoucher = false;
|
||||
$c = [];
|
||||
|
||||
if ($trx && $trx['status'] == 2) {
|
||||
// if its already paid, return it
|
||||
return;
|
||||
|
@ -277,7 +276,9 @@ class Package
|
|||
}
|
||||
}
|
||||
//}
|
||||
|
||||
// if started with voucher, don't insert into tbl_user_recharges
|
||||
// this is not necessary, but in case a bug come
|
||||
if(strlen($p['device'])>7 && substr($p['device'], 0 , 7) != 'Voucher'){
|
||||
$b->customer_id = $id_customer;
|
||||
$b->username = $c['username'];
|
||||
$b->plan_id = $plan_id;
|
||||
|
@ -296,6 +297,7 @@ class Package
|
|||
$b->admin_id = '0';
|
||||
}
|
||||
$b->save();
|
||||
}
|
||||
|
||||
// insert table transactions
|
||||
$t = ORM::for_table('tbl_transactions')->create();
|
||||
|
@ -383,7 +385,8 @@ class Package
|
|||
);
|
||||
}
|
||||
}
|
||||
|
||||
// if started with voucher, don't insert into tbl_user_recharges
|
||||
if(strlen($p['device'])>7 && substr($p['device'], 0 , 7) != 'Voucher'){
|
||||
$d = ORM::for_table('tbl_user_recharges')->create();
|
||||
$d->customer_id = $id_customer;
|
||||
$d->username = $c['username'];
|
||||
|
@ -403,7 +406,7 @@ class Package
|
|||
$d->admin_id = '0';
|
||||
}
|
||||
$d->save();
|
||||
|
||||
}
|
||||
// insert table transactions
|
||||
$t = ORM::for_table('tbl_transactions')->create();
|
||||
$t->invoice = $inv = "INV-" . Package::_raid();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue