mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-31 12:04:35 -04:00
Fixes for model factories -> invoice designs
This commit is contained in:
parent
f6ac4a8201
commit
fccc98caa7
@ -52,7 +52,7 @@ TRUSTED_PROXIES=
|
|||||||
|
|
||||||
NINJA_ENVIRONMENT=selfhost
|
NINJA_ENVIRONMENT=selfhost
|
||||||
|
|
||||||
PHANTOMJS_CLOUD_KEY='a-demo-key-with-low-quota-per-ip-address'
|
PHANTOMJS_KEY='a-demo-key-with-low-quota-per-ip-address'
|
||||||
PHANTOMJS_SECRET=
|
PHANTOMJS_SECRET=
|
||||||
|
|
||||||
SELF_UPDATER_REPO_VENDOR = invoiceninja
|
SELF_UPDATER_REPO_VENDOR = invoiceninja
|
||||||
|
@ -16,6 +16,10 @@ use App\Designs\Designer;
|
|||||||
use App\Factory\InvoiceFactory;
|
use App\Factory\InvoiceFactory;
|
||||||
use App\Jobs\Invoice\CreateInvoicePdf;
|
use App\Jobs\Invoice\CreateInvoicePdf;
|
||||||
use App\Jobs\Util\PreviewPdf;
|
use App\Jobs\Util\PreviewPdf;
|
||||||
|
use App\Models\Client;
|
||||||
|
use App\Models\ClientContact;
|
||||||
|
use App\Models\Invoice;
|
||||||
|
use App\Models\InvoiceInvitation;
|
||||||
use App\Services\PdfMaker\Design;
|
use App\Services\PdfMaker\Design;
|
||||||
use App\Services\PdfMaker\PdfMaker;
|
use App\Services\PdfMaker\PdfMaker;
|
||||||
use App\Utils\HtmlEngine;
|
use App\Utils\HtmlEngine;
|
||||||
|
@ -42,14 +42,6 @@ class StoreVendorRequest extends Request
|
|||||||
//$rules['settings'] = new ValidVendorGroupSettingsRule();
|
//$rules['settings'] = new ValidVendorGroupSettingsRule();
|
||||||
$rules['contacts.*.email'] = 'nullable|distinct';
|
$rules['contacts.*.email'] = 'nullable|distinct';
|
||||||
|
|
||||||
// $contacts = request('contacts');
|
|
||||||
|
|
||||||
// if (is_array($contacts)) {
|
|
||||||
// for ($i = 0; $i < count($contacts); $i++) {
|
|
||||||
|
|
||||||
// //$rules['contacts.' . $i . '.email'] = 'nullable|email|distinct';
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
return $rules;
|
return $rules;
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,8 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html data-report-errors="{{ $report_errors }}">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>Invoice Ninja</title>
|
<title>Invoice Ninja</title>
|
||||||
<meta name="report_errors" content="{{ $report_errors }}">
|
|
||||||
<meta name="google-signin-client_id" content="{{ config('services.google.client_id') }}">
|
<meta name="google-signin-client_id" content="{{ config('services.google.client_id') }}">
|
||||||
<link rel="manifest" href="manifest.json?v={{ $hash }}">
|
<link rel="manifest" href="manifest.json?v={{ $hash }}">
|
||||||
</head>
|
</head>
|
||||||
@ -11,11 +10,12 @@
|
|||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
|
||||||
/* fix for blurry fonts */
|
/* fix for blurry fonts
|
||||||
flt-glass-pane {
|
flt-glass-pane {
|
||||||
image-rendering: pixelated;
|
image-rendering: pixelated;
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
/* https://projects.lukehaas.me/css-loaders/ */
|
/* https://projects.lukehaas.me/css-loaders/ */
|
||||||
.loader,
|
.loader,
|
||||||
.loader:before,
|
.loader:before,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user