Publier Globinours 1.0.0-rc.3

This commit is contained in:
Alexandre NOEL 2026-09-03 12:39:15 +02:00
commit 9a2b4068da
325 changed files with 38230 additions and 20 deletions

View file

@ -0,0 +1,78 @@
<?php
declare(strict_types=1);
final class PricingService
{
public const CATEGORIES = [
'consultation' => 'Consultation',
'surgery' => 'Chirurgie',
'identification' => 'Identification',
'test' => 'Test / analyse',
'vaccine' => 'Vaccin',
'euthanasia' => 'Euthanasie',
'cremation' => 'Crémation',
'medication' => 'Médicament',
'dewormer' => 'Vermifuge',
'other' => 'Autre',
];
public const GROUPS = [
'act' => 'Acte',
'surgery_discount' => 'Actes chirurgicaux',
'medication' => 'Médicament hors antibiotique',
'antibiotic' => 'Antibiotique',
'ape_api' => 'APE / API',
'analysis' => 'Analyse',
'fixed' => 'Tarif fixe',
'none' => 'Sans remise',
];
public static function categoryLabel(string $key): string
{
return t('pricing.category.' . $key, [], self::CATEGORIES[$key] ?? $key);
}
public static function groupLabel(string $key): string
{
return t('pricing.group.' . $key, [], self::GROUPS[$key] ?? $key);
}
public static function cents(string $v): int
{
return max(0, (int) round((float) str_replace(',', '.', trim($v)) * 100));
}
public static function tariffs(bool $active = false): array
{
$w = $active ? 'WHERE ct.active=1 AND dc.deleted_at IS NULL' : '';
return DB::pdo()
->query(
"SELECT ct.*,dc.name clinic_name,COALESCE(dr.percent,0) discount_percent,ROUND(ct.amount_cents*(1-COALESCE(dr.percent,0)/100.0)) effective_cents FROM clinic_tariffs ct JOIN directory_contacts dc ON dc.id=ct.clinic_contact_id LEFT JOIN clinic_discount_rules dr ON dr.clinic_contact_id=ct.clinic_contact_id AND dr.discount_group=ct.discount_group $w ORDER BY dc.name COLLATE NOCASE,ct.active DESC,ct.label COLLATE NOCASE",
)
->fetchAll(PDO::FETCH_ASSOC);
}
public static function record(PDO $db, int $animal, int $tariff, float $qty, string $date, string $notes = ''): int
{
$s = $db->prepare(
'SELECT ct.*,COALESCE(dr.percent,0) discount FROM clinic_tariffs ct LEFT JOIN clinic_discount_rules dr ON dr.clinic_contact_id=ct.clinic_contact_id AND dr.discount_group=ct.discount_group WHERE ct.id=? AND ct.active=1',
);
$s->execute([$tariff]);
$t = $s->fetch(PDO::FETCH_ASSOC);
if (!$t) {
throw new RuntimeException(t('error.tariff_not_found'));
}
$qty = max(0.01, $qty);
$total = (int) round($t['amount_cents'] * $qty * (1 - (float) $t['discount'] / 100));
$db->prepare(
'INSERT INTO animal_expenses(animal_id,clinic_contact_id,tariff_id,label,occurred_on,quantity,catalog_unit_cents,discount_percent,total_cents,notes,created_by) VALUES(?,?,?,?,?,?,?,?,?,?,?)',
)->execute([
$animal,
$t['clinic_contact_id'],
$tariff,
$t['label'],
$date,
$qty,
$t['amount_cents'],
$t['discount'],
$total,
$notes ?: null,
Auth::id(),
]);
return $total;
}
}