mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-24 02:14:21 -04:00
Logging for Preview
This commit is contained in:
parent
83456a6016
commit
f4d7b1a631
@ -206,11 +206,14 @@ class PreviewController extends BaseController
|
|||||||
info("company id = " . auth()->user()->company()->id);
|
info("company id = " . auth()->user()->company()->id);
|
||||||
|
|
||||||
$entity_obj = $class::on(auth()->user()->company()->db)
|
$entity_obj = $class::on(auth()->user()->company()->db)
|
||||||
->withTrashed()
|
|
||||||
->where('id', $this->decodePrimaryKey($request->input('entity_id')))
|
->where('id', $this->decodePrimaryKey($request->input('entity_id')))
|
||||||
->where('company_id', auth()->user()->company()->id)
|
->where('company_id', auth()->user()->company()->id)
|
||||||
|
->withTrashed()
|
||||||
->first();
|
->first();
|
||||||
|
|
||||||
|
if($entity_obj)
|
||||||
|
info("found a valid entity object");
|
||||||
|
|
||||||
$entity_obj = $repo->save($request->all(), $entity_obj);
|
$entity_obj = $repo->save($request->all(), $entity_obj);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user