2020-02-17 19:05:11 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Designs;
|
|
|
|
|
2020-02-26 04:20:12 +01:00
|
|
|
/**
|
|
|
|
* @wip: Table margins act weird.
|
|
|
|
*/
|
2020-02-17 19:05:11 +01:00
|
|
|
class Creative extends AbstractDesign
|
|
|
|
{
|
2020-03-21 06:37:30 +01:00
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
}
|
2020-02-17 19:05:11 +01:00
|
|
|
|
|
|
|
|
2020-03-07 07:31:26 +01:00
|
|
|
public function includes()
|
2020-03-04 12:09:43 +01:00
|
|
|
{
|
2020-03-18 10:40:15 +01:00
|
|
|
return '<title>$number</title>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
|
|
<link href="$app_url/css/tailwind-1.2.0.css" rel="stylesheet">
|
|
|
|
<style>
|
|
|
|
body {font-size:90%}
|
|
|
|
@page
|
|
|
|
{
|
|
|
|
size: auto;
|
|
|
|
margin-top: 6mm;
|
|
|
|
}
|
|
|
|
.table_header_thead_class { text-align: left; border-radius: .5rem; }
|
|
|
|
.table_header_td_class { text-transform: uppercase; font-size: 1.25rem; color: #b83280; padding: 1.25rem 1rem; font-weight: 500 }
|
|
|
|
.table_body_td_class { padding: 1rem;}
|
|
|
|
</style>';
|
2020-03-04 12:09:43 +01:00
|
|
|
}
|
2020-03-11 21:30:49 +01:00
|
|
|
|
2020-03-04 12:09:43 +01:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
public function header()
|
|
|
|
{
|
|
|
|
return '<div class="py-16 mx-16">
|
2020-03-18 10:40:15 +01:00
|
|
|
<div class="flex justify-between">
|
|
|
|
<div class="w-2/3 flex">
|
|
|
|
<div class="flex flex-col">
|
|
|
|
$client_details
|
|
|
|
</div>
|
|
|
|
<div class="ml-6 flex flex-col">
|
|
|
|
$company_details
|
|
|
|
</div>
|
|
|
|
<div class="ml-6 flex flex-col mr-4">
|
|
|
|
$company_address
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
$company_logo
|
|
|
|
</div>';
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
2020-02-17 19:05:11 +01:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
public function body()
|
|
|
|
{
|
2020-03-18 10:40:15 +01:00
|
|
|
return '<div class="flex justify-between mt-8">
|
|
|
|
<div class="w-2/3 flex flex-col">
|
|
|
|
<h1 class="text-5xl uppercase font-semibold">$entity_label</h1>
|
|
|
|
<i class="ml-4 text-5xl text-pink-700">$entity_number</i>
|
|
|
|
</div>
|
|
|
|
<div class="flex">
|
|
|
|
<div class="flex justify-between flex-col">
|
|
|
|
$entity_labels
|
|
|
|
</div>
|
|
|
|
<div class="flex flex-col text-right">
|
|
|
|
$entity_details
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<table class="w-full table-auto mt-12 border-t-4 border-pink-700 bg-white">
|
|
|
|
<thead class="text-left rounded-lg">
|
|
|
|
$product_table_header
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
$product_table_body
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<table class="w-full table-auto mt-12 border-t-4 border-pink-700 bg-white">
|
|
|
|
<thead class="text-left rounded-lg">
|
|
|
|
$task_table_header
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
$task_table_body
|
|
|
|
</tbody>
|
|
|
|
</table>';
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
2020-03-16 11:12:10 +01:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
public function task()
|
|
|
|
{
|
2020-03-16 11:12:10 +01:00
|
|
|
return '';
|
2020-03-11 21:30:49 +01:00
|
|
|
}
|
|
|
|
|
2020-03-16 11:12:10 +01:00
|
|
|
|
2020-03-11 21:30:49 +01:00
|
|
|
public function product()
|
|
|
|
{
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
public function footer()
|
|
|
|
{
|
2020-03-18 10:40:15 +01:00
|
|
|
return '<div class="border-b-4 border-pink-700">
|
|
|
|
<div class="flex items-center justify-between mt-2 px-4 pb-4">
|
|
|
|
<div class="w-1/2">
|
|
|
|
<div class="flex flex-col">
|
|
|
|
<p>$entity.public_notes</p>
|
2020-03-11 21:30:49 +01:00
|
|
|
</div>
|
2020-03-18 10:40:15 +01:00
|
|
|
</div>
|
|
|
|
<div class="w-1/3 flex flex-col">
|
|
|
|
<div class="flex px-3 mt-2">
|
|
|
|
<section class="w-1/2 text-right flex flex-col">
|
|
|
|
<span>$subtotal_label</span>
|
|
|
|
<span>$discount_label</span>
|
|
|
|
<span>$paid_to_date_label</span>
|
|
|
|
</section>
|
|
|
|
<section class="w-1/2 text-right flex flex-col">
|
|
|
|
<span>$subtotal</span>
|
|
|
|
<span>$discount</span>
|
|
|
|
<span>$paid_to_date</span>
|
|
|
|
</section>
|
2020-02-17 19:05:11 +01:00
|
|
|
</div>
|
2020-03-18 10:40:15 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="flex items-center justify-between mt-4 pb-4 px-4">
|
|
|
|
<div class="w-1/2">
|
|
|
|
<div class="flex flex-col">
|
|
|
|
<p class="font-semibold">$terms_label</p>
|
|
|
|
<p>N21</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="w-full flex justify-end mt-4">
|
|
|
|
<p>$balance_due_label</p>
|
|
|
|
<p class="ml-8 text-pink-700 font-semibold">$balance</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>';
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
2020-03-11 21:30:49 +01:00
|
|
|
}
|