Conditions | 1 |
Paths | 1 |
Total Lines | 18 |
Lines | 0 |
Ratio | 0 % |
Tests | 14 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
26 | 6 | public function getImage($sale) |
|
27 | { |
||
28 | 6 | $client = $sale->getClient(); |
|
29 | $params = [ |
||
30 | 6 | $sale->getCompany()->getRuc(), |
|
31 | 6 | $sale->getTipoDoc(), |
|
32 | 6 | $sale->getSerie(), |
|
33 | 6 | $sale->getCorrelativo(), |
|
34 | 6 | number_format($sale->getMtoIGV(), 2, '.', ''), |
|
35 | 6 | number_format($sale->getMtoImpVenta(), 2, '.', ''), |
|
36 | 6 | $sale->getFechaEmision()->format('Y-m-d'), |
|
37 | 6 | $client->getTipoDoc(), |
|
38 | 6 | $client->getNumDoc(), |
|
39 | 6 | ]; |
|
40 | 6 | $content = implode('|', $params).'|'; |
|
41 | |||
42 | 6 | return $this->getQrImage($content); |
|
43 | } |
||
44 | |||
57 |