Files
InvoiceShelf/app/Services/Document/DocumentItemService.php
Darko Gjorgjijoski 947d00a9f1 refactor(services): Documents→Document + ExchangeRate→Integrations/ExchangeRate
Two follow-ups to the Services reorg that landed in 6d1816bd.

**Documents → Document** (singular). Documents/ was the only plural subdir in app/Services/ — every other bucket (Company, Mail, Module, Pdf, Storage, Update, ExchangeRate) was singular. Renaming to Document/ normalizes the whole tree.

**ExchangeRate → Integrations/ExchangeRate**. Introduces Integrations/ as an umbrella for external-service adapter subsystems. Exchange rate providers move in first; AI providers, payment gateways, and any other driver-pattern integrations land as sibling subdirs (Integrations/Ai/, Integrations/Payment/) without another reorg. Integrations/ was chosen over Providers/ to avoid conceptual collision with Laravel's app/Providers/ — 'check the providers' shouldn't be ambiguous.

17 files moved, 21 consumer files rewritten to point at the new namespaces via literal-string replacement (same approach as the previous reorg). 350 tests pass, Pint clean.
2026-04-11 11:30:00 +02:00

70 lines
2.4 KiB
PHP

<?php
namespace App\Services\Document;
use Illuminate\Database\Eloquent\Model;
class DocumentItemService
{
public function createItems(Model $document, array $items): void
{
$exchangeRate = $document->exchange_rate;
foreach ($items as $item) {
$item['company_id'] = $document->company_id;
$item['exchange_rate'] = $exchangeRate;
$item['base_price'] = $item['price'] * $exchangeRate;
$item['base_discount_val'] = $item['discount_val'] * $exchangeRate;
$item['base_tax'] = $item['tax'] * $exchangeRate;
$item['base_total'] = $item['total'] * $exchangeRate;
if (array_key_exists('recurring_invoice_id', $item)) {
unset($item['recurring_invoice_id']);
}
$createdItem = $document->items()->create($item);
if (array_key_exists('taxes', $item) && $item['taxes']) {
foreach ($item['taxes'] as $tax) {
$tax['company_id'] = $document->company_id;
$tax['exchange_rate'] = $document->exchange_rate;
$tax['base_amount'] = $tax['amount'] * $exchangeRate;
$tax['currency_id'] = $document->currency_id;
if (gettype($tax['amount']) !== 'NULL') {
if (array_key_exists('recurring_invoice_id', $tax)) {
unset($tax['recurring_invoice_id']);
}
$createdItem->taxes()->create($tax);
}
}
}
if (array_key_exists('custom_fields', $item) && $item['custom_fields']) {
$createdItem->addCustomFields($item['custom_fields']);
}
}
}
public function createTaxes(Model $document, array $taxes): void
{
$exchangeRate = $document->exchange_rate;
foreach ($taxes as $tax) {
$tax['company_id'] = $document->company_id;
$tax['exchange_rate'] = $document->exchange_rate;
$tax['base_amount'] = $tax['amount'] * $exchangeRate;
$tax['currency_id'] = $document->currency_id;
if (gettype($tax['amount']) !== 'NULL') {
if (array_key_exists('recurring_invoice_id', $tax)) {
unset($tax['recurring_invoice_id']);
}
$document->taxes()->create($tax);
}
}
}
}