Minor bug fixes for payment update, internal product link and order billing interval

This commit is contained in:
2023-05-13 22:19:22 +10:00
parent a195e4b55b
commit 12b63a506f
3 changed files with 5 additions and 4 deletions

View File

@@ -114,12 +114,13 @@ class AdminController extends Controller
]);
if (! $o->exists) {
$o->forceFill($request->only(['account_id','paid_at','checkout_id','checkout_id','total_amt','fees_amt','source_id','pending','notes','ip']));
$o->site_id = config('site')->site_id;
$o->active = TRUE;
$o->save();
}
$o->forceFill($request->only(['account_id','paid_at','checkout_id','total_amt','fees_amt','source_id','pending','notes','ip']));
$o->save();
foreach ($validation['invoices'] as $id => $amount) {
// See if we already have a payment item that we need to update
$items = $o->items->filter(function($item) use ($id) { return $item->invoice_id == $id; });

View File

@@ -108,7 +108,7 @@ class OrderController extends Controller
$so->ordered_by = Auth::id();
$so->active = FALSE;
$so->model = $order ? get_class($order) : NULL;
$so->recur_schedule = $po->price_recur_default;
$so->recur_schedule = $po->billing_interval;
if ($order && $order->order_info) {
$so->order_info = $order->order_info;