1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 17:31:35 +02:00
invoiceninja/app/Services/EDocument/Standards/ZugferdEDokument.php

260 lines
14 KiB
PHP
Raw Normal View History

2023-04-21 07:18:17 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://www.elastic.co/licensing/elastic-license
*/
2024-03-20 12:54:18 +01:00
namespace App\Services\EDocument\Standards;
2023-04-21 07:18:17 +02:00
2024-03-10 16:02:15 +01:00
use App\Models\Credit;
2023-04-21 07:18:17 +02:00
use App\Models\Invoice;
use App\Models\Product;
2024-03-10 16:02:15 +01:00
use App\Models\PurchaseOrder;
use App\Models\Quote;
2023-04-21 07:18:17 +02:00
use App\Services\AbstractService;
use horstoeko\zugferd\codelists\ZugferdDutyTaxFeeCategories;
2023-10-26 04:57:44 +02:00
use horstoeko\zugferd\ZugferdDocumentBuilder;
use horstoeko\zugferd\ZugferdProfiles;
2023-04-21 07:18:17 +02:00
class ZugferdEDokument extends AbstractService
2023-04-21 07:18:17 +02:00
{
2024-03-10 16:02:15 +01:00
public ZugferdDocumentBuilder $xdocument;
2023-04-24 07:50:45 +02:00
2024-03-10 16:02:15 +01:00
public function __construct(public object $document, private readonly bool $returnObject = false, private array $tax_map = [])
2023-04-21 07:18:17 +02:00
{
}
2023-08-16 11:55:35 +02:00
public function run(): self
2023-04-21 07:18:17 +02:00
{
2023-04-24 07:50:45 +02:00
2024-03-10 16:02:15 +01:00
$company = $this->document->company;
$client = $this->document->client;
2023-04-21 07:18:17 +02:00
$profile = $client->getSetting('e_invoice_type');
2023-04-24 07:50:45 +02:00
$profile = match ($profile) {
2023-11-27 18:21:19 +01:00
"XInvoice_3_0" => ZugferdProfiles::PROFILE_XRECHNUNG_3,
"XInvoice_2_3" => ZugferdProfiles::PROFILE_XRECHNUNG_2_3,
2023-04-24 07:50:45 +02:00
"XInvoice_2_2" => ZugferdProfiles::PROFILE_XRECHNUNG_2_2,
"XInvoice_2_1" => ZugferdProfiles::PROFILE_XRECHNUNG_2_1,
"XInvoice_2_0" => ZugferdProfiles::PROFILE_XRECHNUNG_2,
"XInvoice_1_0" => ZugferdProfiles::PROFILE_XRECHNUNG,
"XInvoice-Extended" => ZugferdProfiles::PROFILE_EXTENDED,
"XInvoice-BasicWL" => ZugferdProfiles::PROFILE_BASICWL,
"XInvoice-Basic" => ZugferdProfiles::PROFILE_BASIC,
default => ZugferdProfiles::PROFILE_EN16931,
};
2023-04-21 07:18:17 +02:00
2024-03-10 16:02:15 +01:00
$this->xdocument = ZugferdDocumentBuilder::CreateNew($profile);
2023-04-21 07:18:17 +02:00
2024-03-10 16:02:15 +01:00
$this->xdocument
->setDocumentSupplyChainEvent(date_create($this->document->date ?? now()->format('Y-m-d')))
2023-04-21 07:18:17 +02:00
->setDocumentSeller($company->getSetting('name'))
->setDocumentSellerAddress($company->getSetting("address1"), $company->getSetting("address2"), "", $company->getSetting("postal_code"), $company->getSetting("city"), $company->country()->iso_3166_2, $company->getSetting("state"))
2024-03-10 16:02:15 +01:00
->setDocumentSellerContact($this->document->user->present()->getFullName(), "", $this->document->user->present()->phone(), "", $this->document->user->email)
2023-12-07 09:32:08 +01:00
->setDocumentBuyer($client->present()->name(), $client->number)
2023-05-17 19:01:12 +02:00
->setDocumentBuyerAddress($client->address1, "", "", $client->postal_code, $client->city, $client->country->iso_3166_2, $client->state)
2023-12-07 09:32:08 +01:00
->setDocumentBuyerContact($client->present()->primary_contact_name(), "", $client->present()->phone(), "", $client->present()->email())
2024-03-10 16:02:15 +01:00
->addDocumentPaymentTerm(ctrans("texts.xinvoice_payable", ['payeddue' => date_create($this->document->date ?? now()->format('Y-m-d'))->diff(date_create($this->document->due_date ?? now()->format('Y-m-d')))->format("%d"), 'paydate' => $this->document->due_date]));
2023-04-24 07:50:45 +02:00
2024-03-10 16:02:15 +01:00
if (!empty($this->document->public_notes)) {
$this->xdocument->addDocumentNote($this->document->public_notes ?? '');
2023-04-21 07:18:17 +02:00
}
2024-03-10 16:02:15 +01:00
// Document type
$document_class = get_class($this->document);
switch ($document_class){
case Quote::class:
// Probably wrong file code https://github.com/horstoeko/zugferd/blob/master/src/codelists/ZugferdInvoiceType.php
if (empty($this->document->number)) {
$this->xdocument->setDocumentInformation("DRAFT", "84", date_create($this->document->date ?? now()->format('Y-m-d')), $client->getCurrencyCode());
} else {
$this->xdocument->setDocumentInformation($this->document->number, "84", date_create($this->document->date ?? now()->format('Y-m-d')), $client->getCurrencyCode());
};
break;
case Invoice::class:
if (empty($this->document->number)) {
$this->xdocument->setDocumentInformation("DRAFT", "380", date_create($this->document->date ?? now()->format('Y-m-d')), $client->getCurrencyCode());
} else {
$this->xdocument->setDocumentInformation($this->document->number, "380", date_create($this->document->date ?? now()->format('Y-m-d')), $client->getCurrencyCode());
}
break;
case Credit::class:
if (empty($this->document->number)) {
$this->xdocument->setDocumentInformation("DRAFT", "389", date_create($this->document->date ?? now()->format('Y-m-d')), $client->getCurrencyCode());
} else {
$this->xdocument->setDocumentInformation($this->document->number, "389", date_create($this->document->date ?? now()->format('Y-m-d')), $client->getCurrencyCode());
}
2023-05-17 19:01:12 +02:00
}
2024-03-10 16:02:15 +01:00
if (isset($this->document->po_number)) {
$this->xdocument->setDocumentBuyerOrderReferencedDocument($this->document->po_number);
2023-04-21 07:18:17 +02:00
}
2023-04-24 07:50:45 +02:00
2023-04-21 07:18:17 +02:00
if (empty($client->routing_id)) {
2024-03-10 16:02:15 +01:00
$this->xdocument->setDocumentBuyerReference(ctrans("texts.xinvoice_no_buyers_reference"));
2023-04-21 07:18:17 +02:00
} else {
2024-03-10 16:02:15 +01:00
$this->xdocument->setDocumentBuyerReference($client->routing_id);
2023-04-21 07:18:17 +02:00
}
2023-12-07 09:32:08 +01:00
if (isset($client->shipping_address1) && $client->shipping_country) {
2024-03-10 16:02:15 +01:00
$this->xdocument->setDocumentShipToAddress($client->shipping_address1, $client->shipping_address2, "", $client->shipping_postal_code, $client->shipping_city, $client->shipping_country->iso_3166_2, $client->shipping_state);
2023-04-24 07:50:45 +02:00
}
2024-03-10 16:02:15 +01:00
$this->xdocument->addDocumentPaymentMean(68, ctrans("texts.xinvoice_online_payment"));
2023-04-21 07:18:17 +02:00
if (str_contains($company->getSetting('vat_number'), "/")) {
2024-03-10 16:02:15 +01:00
$this->xdocument->addDocumentSellerTaxRegistration("FC", $company->getSetting('vat_number'));
2023-04-21 07:18:17 +02:00
} else {
2024-03-10 16:02:15 +01:00
$this->xdocument->addDocumentSellerTaxRegistration("VA", $company->getSetting('vat_number'));
2023-04-21 07:18:17 +02:00
}
2024-03-10 16:02:15 +01:00
$invoicing_data = $this->document->calc();
2023-04-21 07:18:17 +02:00
//Create line items and calculate taxes
2024-03-10 16:02:15 +01:00
foreach ($this->document->line_items as $index => $item) {
2023-08-06 03:44:52 +02:00
/** @var \App\DataMapper\InvoiceItem $item **/
2024-03-10 16:02:15 +01:00
$this->xdocument->addNewPosition($index)
2023-04-21 07:18:17 +02:00
->setDocumentPositionGrossPrice($item->gross_line_total)
->setDocumentPositionNetPrice($item->line_total);
2023-10-26 04:57:44 +02:00
if (!empty($item->product_key)) {
if (!empty($item->notes)) {
2024-03-10 16:02:15 +01:00
$this->xdocument->setDocumentPositionProductDetails($item->product_key, $item->notes);
2023-10-26 04:57:44 +02:00
} else {
2024-03-10 16:02:15 +01:00
$this->xdocument->setDocumentPositionProductDetails($item->product_key);
2023-07-03 19:31:54 +02:00
}
2023-10-26 04:57:44 +02:00
} else {
if (!empty($item->notes)) {
2024-03-10 16:02:15 +01:00
$this->xdocument->setDocumentPositionProductDetails($item->notes);
2023-10-26 04:57:44 +02:00
} else {
2024-03-10 16:02:15 +01:00
$this->xdocument->setDocumentPositionProductDetails("no product name defined");
2023-04-28 11:27:51 +02:00
}
}
if ($item->type_id == 2) {
2024-03-10 16:02:15 +01:00
$this->xdocument->setDocumentPositionQuantity($item->quantity, "HUR");
2023-04-21 07:18:17 +02:00
} else {
2024-03-10 16:02:15 +01:00
$this->xdocument->setDocumentPositionQuantity($item->quantity, "H87");
2023-04-21 07:18:17 +02:00
}
$linenetamount = $item->line_total;
if ($item->discount > 0) {
2024-03-10 16:02:15 +01:00
if ($this->document->is_amount_discount) {
2023-04-21 07:18:17 +02:00
$linenetamount -= $item->discount;
} else {
$linenetamount -= $linenetamount * ($item->discount / 100);
}
}
2024-03-10 16:02:15 +01:00
$this->xdocument->setDocumentPositionLineSummation($linenetamount);
2023-04-21 07:18:17 +02:00
// According to european law, each line item can only have one tax rate
if (!(empty($item->tax_name1) && empty($item->tax_name2) && empty($item->tax_name3))) {
2023-05-03 16:05:59 +02:00
$taxtype = $this->getTaxType($item->tax_id);
2023-04-21 07:18:17 +02:00
if (!empty($item->tax_name1)) {
2024-03-10 16:02:15 +01:00
$this->xdocument->addDocumentPositionTax($taxtype, 'VAT', $item->tax_rate1);
2023-05-03 16:05:59 +02:00
$this->addtoTaxMap($taxtype, $linenetamount, $item->tax_rate1);
2023-04-21 07:18:17 +02:00
} elseif (!empty($item->tax_name2)) {
2024-03-10 16:02:15 +01:00
$this->xdocument->addDocumentPositionTax($taxtype, 'VAT', $item->tax_rate2);
2023-05-03 16:05:59 +02:00
$this->addtoTaxMap($taxtype, $linenetamount, $item->tax_rate2);
2023-04-21 07:18:17 +02:00
} elseif (!empty($item->tax_name3)) {
2024-03-10 16:02:15 +01:00
$this->xdocument->addDocumentPositionTax($taxtype, 'VAT', $item->tax_rate3);
2023-05-03 16:05:59 +02:00
$this->addtoTaxMap($taxtype, $linenetamount, $item->tax_rate3);
2023-04-21 07:18:17 +02:00
} else {
// nlog("Can't add correct tax position");
2023-04-21 07:18:17 +02:00
}
} else {
2024-03-10 16:02:15 +01:00
if (!empty($this->document->tax_name1)) {
$taxtype = $this->getTaxType($this->document->tax_name1);
$this->xdocument->addDocumentPositionTax($taxtype, 'VAT', $this->document->tax_rate1);
$this->addtoTaxMap($taxtype, $linenetamount, $this->document->tax_rate1);
} elseif (!empty($this->document->tax_name2)) {
$taxtype = $this->getTaxType($this->document->tax_name2);
$this->xdocument->addDocumentPositionTax($taxtype, 'VAT', $this->document->tax_rate2);
$this->addtoTaxMap($taxtype, $linenetamount, $this->document->tax_rate2);
} elseif (!empty($this->document->tax_name3)) {
$taxtype = $this->getTaxType($this->document->tax_name3);
$this->xdocument->addDocumentPositionTax($taxtype, 'VAT', $this->document->tax_rate3);
$this->addtoTaxMap($taxtype, $linenetamount, $this->document->tax_rate3);
2023-04-21 07:18:17 +02:00
} else {
2023-05-03 16:41:38 +02:00
$taxtype = ZugferdDutyTaxFeeCategories::ZERO_RATED_GOODS;
2024-03-10 16:02:15 +01:00
$this->xdocument->addDocumentPositionTax($taxtype, 'VAT', 0);
2023-05-03 16:41:38 +02:00
$this->addtoTaxMap($taxtype, $linenetamount, 0);
// nlog("Can't add correct tax position");
2023-04-21 07:18:17 +02:00
}
}
}
2024-03-10 16:02:15 +01:00
$this->xdocument->setDocumentSummation($this->document->amount, $this->document->balance, $invoicing_data->getSubTotal(), $invoicing_data->getTotalSurcharges(), $invoicing_data->getTotalDiscount(), $invoicing_data->getSubTotal(), $invoicing_data->getItemTotalTaxes(), 0.0, $this->document->amount - $this->document->balance);
2023-04-24 00:22:49 +02:00
2023-10-26 04:57:44 +02:00
foreach ($this->tax_map as $item) {
2024-03-10 16:02:15 +01:00
$this->xdocument->addDocumentTax($item["tax_type"], "VAT", $item["net_amount"], $item["tax_rate"] * $item["net_amount"], $item["tax_rate"] * 100);
2023-04-21 07:18:17 +02:00
}
2023-04-24 07:50:45 +02:00
2023-04-28 11:27:51 +02:00
// The validity can be checked using https://portal3.gefeg.com/invoice/validation or https://e-rechnung.bayern.de/app/#/upload
2023-08-16 11:55:35 +02:00
return $this;
2024-01-14 05:05:00 +01:00
2023-08-16 11:55:35 +02:00
}
2024-01-14 05:05:00 +01:00
2023-08-16 11:55:35 +02:00
/**
* Returns the XML document
* in string format
*
* @return string
*/
public function getXml(): string
{
2024-03-10 16:02:15 +01:00
return $this->xdocument->getContent();
2023-04-21 07:18:17 +02:00
}
private function getTaxType($name): string
{
2023-05-03 16:19:28 +02:00
$tax_type = null;
2023-04-21 07:18:17 +02:00
switch ($name) {
case Product::PRODUCT_TYPE_SERVICE:
case Product::PRODUCT_TYPE_DIGITAL:
case Product::PRODUCT_TYPE_PHYSICAL:
case Product::PRODUCT_TYPE_SHIPPING:
case Product::PRODUCT_TYPE_REDUCED_TAX:
2023-05-03 16:19:28 +02:00
$tax_type = ZugferdDutyTaxFeeCategories::STANDARD_RATE;
2023-04-21 07:18:17 +02:00
break;
case Product::PRODUCT_TYPE_EXEMPT:
2023-05-03 16:19:28 +02:00
$tax_type = ZugferdDutyTaxFeeCategories::EXEMPT_FROM_TAX;
2023-04-21 07:18:17 +02:00
break;
case Product::PRODUCT_TYPE_ZERO_RATED:
2023-05-03 16:19:28 +02:00
$tax_type = ZugferdDutyTaxFeeCategories::ZERO_RATED_GOODS;
2023-04-21 07:18:17 +02:00
break;
case Product::PRODUCT_TYPE_REVERSE_TAX:
2023-05-03 16:19:28 +02:00
$tax_type = ZugferdDutyTaxFeeCategories::VAT_REVERSE_CHARGE;
2023-04-21 07:18:17 +02:00
break;
}
$eu_states = ["AT", "BE", "BG", "HR", "CY", "CZ", "DK", "EE", "FI", "FR", "DE", "EL", "GR", "HU", "IE", "IT", "LV", "LT", "LU", "MT", "NL", "PL", "PT", "RO", "SK", "SI", "ES", "SE", "IS", "LI", "NO", "CH"];
2023-05-03 16:19:28 +02:00
if (empty($tax_type)) {
2024-03-10 16:02:15 +01:00
if ((in_array($this->document->company->country()->iso_3166_2, $eu_states) && in_array($this->document->client->country->iso_3166_2, $eu_states)) && $this->document->company->country()->iso_3166_2 != $this->document->client->country->iso_3166_2) {
2023-05-03 16:19:28 +02:00
$tax_type = ZugferdDutyTaxFeeCategories::VAT_EXEMPT_FOR_EEA_INTRACOMMUNITY_SUPPLY_OF_GOODS_AND_SERVICES;
2024-03-10 16:02:15 +01:00
} elseif (!in_array($this->document->client->country->iso_3166_2, $eu_states)) {
2023-05-03 16:19:28 +02:00
$tax_type = ZugferdDutyTaxFeeCategories::SERVICE_OUTSIDE_SCOPE_OF_TAX;
2024-03-10 16:02:15 +01:00
} elseif ($this->document->client->country->iso_3166_2 == "ES-CN") {
2023-05-03 16:19:28 +02:00
$tax_type = ZugferdDutyTaxFeeCategories::CANARY_ISLANDS_GENERAL_INDIRECT_TAX;
2024-03-10 16:02:15 +01:00
} elseif (in_array($this->document->client->country->iso_3166_2, ["ES-CE", "ES-ML"])) {
2023-05-03 16:19:28 +02:00
$tax_type = ZugferdDutyTaxFeeCategories::TAX_FOR_PRODUCTION_SERVICES_AND_IMPORTATION_IN_CEUTA_AND_MELILLA;
2023-04-21 07:18:17 +02:00
} else {
nlog("Unkown tax case for xinvoice");
2023-05-03 16:19:28 +02:00
$tax_type = ZugferdDutyTaxFeeCategories::STANDARD_RATE;
2023-04-21 07:18:17 +02:00
}
}
2023-05-03 16:19:28 +02:00
return $tax_type;
2023-04-21 07:18:17 +02:00
}
2023-07-03 19:31:54 +02:00
private function addtoTaxMap(string $tax_type, float $net_amount, float $tax_rate): void
{
2023-05-03 16:41:38 +02:00
$hash = hash("md5", $tax_type."-".$tax_rate);
2023-10-26 04:57:44 +02:00
if (array_key_exists($hash, $this->tax_map)) {
2023-05-03 16:41:38 +02:00
$this->tax_map[$hash]["net_amount"] += $net_amount;
2023-10-26 04:57:44 +02:00
} else {
2023-05-03 16:05:59 +02:00
$this->tax_map[$hash] = [
2023-05-03 16:41:38 +02:00
"tax_type" => $tax_type,
"net_amount" => $net_amount,
"tax_rate" => $tax_rate / 100
2023-05-03 16:05:59 +02:00
];
}
}
2023-04-21 07:18:17 +02:00
}