forked from mollie/laravel-cashier-mollie
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInvoice.php
More file actions
524 lines (454 loc) · 12 KB
/
Copy pathInvoice.php
File metadata and controls
524 lines (454 loc) · 12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
<?php
namespace Laravel\Cashier\Order;
use Carbon\Carbon;
use Dompdf\Dompdf;
use Dompdf\Options;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\View;
use Illuminate\Support\Str;
use Laravel\Cashier\Order\Contracts\InvoicableItem;
use Laravel\Cashier\Traits\FormatsAmount;
use Money\Currency;
use Money\Money;
use Symfony\Component\HttpFoundation\Response;
class Invoice
{
use FormatsAmount;
const DEFAULT_VIEW = 'cashier::receipt';
const DEFAULT_DATE_FORMAT = 'MMM D, Y';
/**
* The invoice id. Also know as "reference".
*
* @var null|string
*/
protected $id;
/**
* The currency used in this invoice.
*
* @example EUR
*
* @var string
*/
protected $currency;
/**
* The invoice date.
*
* @var Carbon
*/
protected $date;
/**
* Items that should be listed on the invoice.
*
* @var Collection A collection of InvoicableItems
*/
protected $items;
/**
* A collection of strings representing lines of the receiver address.
*
* @var Collection
*/
protected $receiverAddress;
/**
* The customer starting balance.
*
* @var \Money\Money
*/
protected $startingBalance;
/**
* The amount of customer's starting balance applied to the total.
*
* @var \Money\Money
*/
protected $usedBalance;
/**
* The amount of customer balance left when this invoice is incurred.
*
* @var \Money\Money
*/
protected $completedBalance;
/**
* A collection of strings representing lines of additional information to be added to the invoice.
* Typically this information is added as a note.
*
* @var Collection
*/
protected $extraInformation;
/**
* Invoice constructor.
*
* @param string $currency
* @param string|null $id
* @param Carbon|null $date
*/
public function __construct($currency, $id = null, $date = null)
{
$this->currency = $currency;
$this->id = $id;
$this->date = $date ?: Carbon::now();
$this->items = new Collection;
$this->receiverAddress = new Collection;
$this->extraInformation = new Collection;
}
/**
* @return null|string
*/
public function id()
{
return $this->id;
}
/**
* @param string $id
* @return $this
*/
public function setId($id)
{
$this->id = $id;
return $this;
}
/**
* @return \Carbon\Carbon
*/
public function date()
{
return $this->date;
}
/**
* @param \Carbon\Carbon $date
* @return $this
*/
public function setDate(Carbon $date)
{
$this->date = $date;
return $this;
}
public function isoFormattedDate(): string
{
return $this->date->isoFormat(static::DEFAULT_DATE_FORMAT);
}
/**
* @param \Laravel\Cashier\Order\Contracts\InvoicableItem $item
* @return $this
*/
public function addItem(InvoicableItem $item)
{
$this->items->push($item);
return $this;
}
/**
* Add multiple InvoicableItems
*
* @param \Illuminate\Support\Collection $items
* @return $this
*/
public function addItems(Collection $items)
{
$this->items = $this->items->concat($items);
return $this;
}
/**
* Returns a collection of invoice items
*
* @return \Illuminate\Support\Collection
*/
public function items()
{
return $this->items;
}
/**
* @return string
*
* @example EUR
*/
public function currency()
{
return $this->currency;
}
/**
* The formatted sum of all items' subtotals
*
* @return string
*/
public function subtotal()
{
return $this->formatAmount($this->rawSubtotal());
}
/**
* The raw sum of all items' subtotals
*
* @return \Money\Money
*/
public function rawSubtotal()
{
$subtotal = new Money(0, new Currency($this->currency));
$this->items->each(function (InvoicableItem $item) use (&$subtotal) {
$subtotal = $subtotal->add($item->getSubtotal());
});
return $subtotal;
}
/**
* The formatted sum of all items' totals.
*
* @return string
*/
public function total()
{
return $this->formatAmount($this->rawTotal());
}
/**
* The raw sum of all items' totals.
*
* @return \Money\Money
*/
public function rawTotal()
{
$subtotal = new Money(0, new Currency($this->currency));
$this->items->each(function (InvoicableItem $item) use (&$subtotal) {
$subtotal = $subtotal->add($item->getTotal());
});
return $subtotal;
}
/**
* The formatted sum of all items' totals minus the balance used.
*
* @return string
*/
public function totalDue()
{
return $this->formatAmount($this->rawTotalDue());
}
/**
* The raw sum of all items' totals minus the balance used.
*
* @return \Money\Money
*/
public function rawTotalDue()
{
return $this->rawTotal()->subtract($this->rawUsedBalance());
}
/**
* Get the tax totals summed up per tax percentage.
*
* @return \Illuminate\Support\Collection
*/
public function taxDetails()
{
$percentages = $this->items->pluck('tax_percentage')->unique()->sort();
$total_per_percentage = function ($percentage) {
$items = $this->items->where('tax_percentage', $percentage);
$raw_over_subtotal = $items->sum(function (InvoicableItem $item) {
return $item->getSubtotal()->getAmount();
});
$raw_total = $items->sum(function (InvoicableItem $item) {
return $item->getTax()->getAmount();
});
return [
'tax_percentage' => (float) $percentage,
'raw_over_subtotal' => $raw_over_subtotal,
'over_subtotal' => $this->formatAmount(new Money($raw_over_subtotal, new Currency($this->currency))),
'raw_total' => $raw_total,
'total' => $this->formatAmount(new Money($raw_total, new Currency($this->currency))),
];
};
return $percentages->map($total_per_percentage)->values();
}
/**
* Get the receiver address. By default a collection of lines (strings) is returned.
* If you provide separator, an imploded string is returned.
*
* @param null $separator
* @return \Illuminate\Support\Collection|string
*/
public function receiverAddress($separator = null)
{
return $this->optionallyImplode($this->receiverAddress, $separator);
}
/**
* Set the receiver address using an array of strings.
*
* @param array $lines
* @return $this
*/
public function setReceiverAddress(array $lines)
{
$this->receiverAddress = new Collection($lines);
return $this;
}
/**
* The formatted starting balance.
*
* @return string
*/
public function startingBalance()
{
return $this->formatAmount($this->rawStartingBalance());
}
/**
* The raw starting balance.
*
* @return \Money\Money|null
*/
public function rawStartingBalance()
{
return $this->startingBalance ?: new Money(0, new Currency($this->currency));
}
/**
* @param \Money\Money $amount
* @return $this
*/
public function setStartingBalance(Money $amount)
{
$this->startingBalance = $amount;
return $this;
}
/**
* The formatted used balance.
*
* @return string
*/
public function usedBalance()
{
return $this->formatAmount($this->rawUsedBalance());
}
/**
* The raw used balance.
*
* @return \Money\Money|null
*/
public function rawUsedBalance()
{
return $this->usedBalance ?: new Money(0, new Currency($this->currency));
}
/**
* @param \Money\Money $amount
* @return $this
*/
public function setUsedBalance(Money $amount)
{
$this->usedBalance = $amount;
return $this;
}
/**
* The formatted balance after processing this invoice.
*
* @return string
*/
public function completedBalance()
{
return $this->formatAmount($this->rawCompletedBalance());
}
/**
* The formatted balance after processing this invoice.
*
* @return \Money\Money|null
*/
public function rawCompletedBalance()
{
return $this->completedBalance ?: new Money(0, new Currency($this->currency));
}
/**
* @param \Money\Money $amount
* @return $this
*/
public function setCompletedBalance(Money $amount)
{
$this->completedBalance = $amount;
return $this;
}
/**
* Get the invoice's extra information.
* By default a collection of lines (strings) is returned.
* If you provide separator, an imploded string is returned.
*
* @param null $separator
* @return \Illuminate\Support\Collection|string
*/
public function extraInformation($separator = null)
{
return $this->optionallyImplode($this->extraInformation, $separator);
}
/**
* Set the extra information. Useful for adding a note.
*
* @param array $lines
* @return $this
*/
public function setExtraInformation(array $lines)
{
$this->extraInformation = new Collection($lines);
return $this;
}
/**
* Get the View instance for the invoice.
*
* @param array $data
* @param string $view
* @return \Illuminate\Contracts\View\View
*/
public function view(array $data = [], string $view = self::DEFAULT_VIEW)
{
return View::make($view, array_merge($data, [
'invoice' => $this,
]));
}
/**
* Capture the invoice as a PDF and return the raw bytes.
*
* @param array $data
* @param string $view
* @param \Dompdf\Options $options
* @return string
*/
public function pdf(array $data = [], string $view = self::DEFAULT_VIEW, ?Options $options = null)
{
if (!defined('DOMPDF_ENABLE_AUTOLOAD')) {
define('DOMPDF_ENABLE_AUTOLOAD', false);
}
$dompdf = new Dompdf($options);
$dompdf->loadHtml($this->view($data, $view)->render());
$dompdf->render();
return $dompdf->output();
}
/**
* Create an invoice download response.
*
* @param null|array $data
* @param string $view
* @param \Dompdf\Options $options
* @return \Symfony\Component\HttpFoundation\Response
*/
public function download(array $data = [], string $view = self::DEFAULT_VIEW, ?Options $options = null)
{
$filename = implode('_', [
$this->id,
Str::snake(config('app.name', '')),
]) . '.pdf';
return new Response($this->pdf($data, $view, $options), 200, [
'Content-Description' => 'File Transfer',
'Content-Disposition' => 'attachment; filename="' . $filename . '"',
'Content-Transfer-Encoding' => 'binary',
'Content-Type' => 'application/pdf',
]);
}
/**
* @return bool
*/
public function hasStartingBalance()
{
return !$this->rawStartingBalance()->isZero();
}
/**
* Helper method. By default a collection of lines (strings) is returned.
* If a separator is provided an imploded string is returned.
*
* @param \Illuminate\Support\Collection $collection
* @param $separator
* @return \Illuminate\Support\Collection|string
*/
private function optionallyImplode(Collection $collection, $separator)
{
if ($separator === null) {
return $collection;
}
return $collection->implode($separator);
}
}