mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-07 18:44:28 -04:00
Minor fixes for designs / Namespace fixes (#3669)
* Fixes for namespaces * Fixes for designs
This commit is contained in:
parent
057d525206
commit
1da69b1f17
@ -136,8 +136,6 @@ class Bold extends AbstractDesign
|
|||||||
<footer>
|
<footer>
|
||||||
<div class="div_footer flex justify-between py-8 px-12" style="page-break-inside: avoid;">
|
<div class="div_footer flex justify-between py-8 px-12" style="page-break-inside: avoid;">
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>';
|
||||||
</body>
|
|
||||||
</html>';
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -144,8 +144,6 @@ $custom_css
|
|||||||
<footer>
|
<footer>
|
||||||
<div class="div_footer flex justify-between py-8 px-12" style="page-break-inside: avoid;">
|
<div class="div_footer flex justify-between py-8 px-12" style="page-break-inside: avoid;">
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>';
|
||||||
</body>
|
|
||||||
</html>';
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -147,8 +147,6 @@ class Clean extends AbstractDesign
|
|||||||
<footer>
|
<footer>
|
||||||
<div class="div_footer flex justify-between py-8 px-12" style="page-break-inside: avoid;">
|
<div class="div_footer flex justify-between py-8 px-12" style="page-break-inside: avoid;">
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>';
|
||||||
</body>
|
|
||||||
</html>';
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -126,8 +126,6 @@ $custom_css
|
|||||||
<footer>
|
<footer>
|
||||||
<div class="div_footer flex justify-between py-8 px-12" style="page-break-inside: avoid;">
|
<div class="div_footer flex justify-between py-8 px-12" style="page-break-inside: avoid;">
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>';
|
||||||
</body>
|
|
||||||
</html>';
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -141,8 +141,6 @@ class Elegant extends AbstractDesign
|
|||||||
<footer>
|
<footer>
|
||||||
<div class="div_footer flex justify-between py-8 px-12" style="page-break-inside: avoid;">
|
<div class="div_footer flex justify-between py-8 px-12" style="page-break-inside: avoid;">
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>';
|
||||||
</body>
|
|
||||||
</html>';
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -150,8 +150,6 @@ $custom_css
|
|||||||
<footer>
|
<footer>
|
||||||
<div class="div_footer flex justify-between py-8 px-12" style="page-break-inside: avoid;">
|
<div class="div_footer flex justify-between py-8 px-12" style="page-break-inside: avoid;">
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>';
|
||||||
</body>
|
|
||||||
</html>';
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -148,8 +148,6 @@ $custom_css
|
|||||||
$company_address
|
$company_address
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>';
|
||||||
</html>
|
|
||||||
';
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -152,8 +152,6 @@ $custom_css
|
|||||||
<footer>
|
<footer>
|
||||||
<div class="div_footer flex justify-between py-8 px-12" style="page-break-inside: avoid;">
|
<div class="div_footer flex justify-between py-8 px-12" style="page-break-inside: avoid;">
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>';
|
||||||
</body>
|
|
||||||
</html>';
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -127,8 +127,6 @@ $custom_css
|
|||||||
<footer>
|
<footer>
|
||||||
<div class="div_footer flex justify-between py-8 px-12" style="page-break-inside: avoid;">
|
<div class="div_footer flex justify-between py-8 px-12" style="page-break-inside: avoid;">
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>';
|
||||||
</body>
|
|
||||||
</html>';
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -140,8 +140,6 @@ $custom_css
|
|||||||
<footer>
|
<footer>
|
||||||
<div class="div_footer flex justify-between py-8 px-12" style="page-break-inside: avoid;">
|
<div class="div_footer flex justify-between py-8 px-12" style="page-break-inside: avoid;">
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>';
|
||||||
</body>
|
|
||||||
</html>';
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
* @license https://opensource.org/licenses/AAL
|
* @license https://opensource.org/licenses/AAL
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace App\Jobs\Util;
|
namespace App\Jobs\Ninja;
|
||||||
|
|
||||||
use App\Helpers\Email\InvoiceEmail;
|
use App\Helpers\Email\InvoiceEmail;
|
||||||
use App\Jobs\Invoice\EmailInvoice;
|
use App\Jobs\Invoice\EmailInvoice;
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
* @license https://opensource.org/licenses/AAL
|
* @license https://opensource.org/licenses/AAL
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace App\Traits;
|
namespace App\Utils\Traits;
|
||||||
|
|
||||||
trait WithSorting
|
trait WithSorting
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user