Publier Globinours 1.0.0-rc.3
This commit is contained in:
parent
ea8c24d622
commit
9a2b4068da
325 changed files with 38230 additions and 20 deletions
172
app/Views/settings_pricing.php
Normal file
172
app/Views/settings_pricing.php
Normal file
|
|
@ -0,0 +1,172 @@
|
|||
<?php require __DIR__ . '/settings_nav.php'; ?>
|
||||
<div class="mb-3">
|
||||
<h2 class="mb-1"><?= h(t('pricing.heading')) ?></h2>
|
||||
<div class="text-muted"><?= h(t('pricing.intro')) ?></div>
|
||||
</div>
|
||||
<?php if ($saved): ?><div class="alert alert-success">✅ <?= h(t('pricing.saved')) ?></div>
|
||||
<?php endif; ?><?php if ($error !== ''): ?><div class="alert alert-danger"><?= h($error) ?></div><?php endif; ?>
|
||||
<div class="row row-cards mb-4">
|
||||
<div class="col-lg-5">
|
||||
<form class="card h-100" method="post" action="/settings/pricing/adoption">
|
||||
<div class="card-status-top bg-green"></div>
|
||||
<div class="card-header">
|
||||
<h3 class="card-title"><?= h(t('pricing.adoption_fees')) ?></h3>
|
||||
</div>
|
||||
<div class="card-body row g-3">
|
||||
<div class="col-6"><label class="form-label"><?= h(t('pricing.sterilized')) ?></label>
|
||||
<div class="input-group"><input class="form-control" type="number" min="0"
|
||||
name="adoption_fee_sterilized"
|
||||
value="<?= (int)$settings['adoption_fee_sterilized'] ?>"><span
|
||||
class="input-group-text">€</span></div>
|
||||
</div>
|
||||
<div class="col-6"><label class="form-label"><?= h(t('pricing.unsterilized')) ?></label>
|
||||
<div class="input-group"><input class="form-control" type="number" min="0"
|
||||
name="adoption_fee_unsterilized"
|
||||
value="<?= (int)$settings['adoption_fee_unsterilized'] ?>"><span
|
||||
class="input-group-text">€</span></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-footer text-end"><button class="btn btn-primary"><?= h(t('common.save')) ?></button></div>
|
||||
</form>
|
||||
</div>
|
||||
<div class="col-lg-7">
|
||||
<div class="card h-100">
|
||||
<div class="card-status-top bg-orange"></div>
|
||||
<div class="card-header">
|
||||
<div>
|
||||
<h3 class="card-title"><?= h(t('pricing.discounts')) ?></h3>
|
||||
<div class="text-muted small"><?= h(t('pricing.discounts_help')) ?></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="list-group list-group-flush">
|
||||
<?php foreach ($clinics as $c):$clinicRules = $discounts[(int)$c['id']] ?? []; ?><div
|
||||
class="list-group-item py-3">
|
||||
<div class="d-flex align-items-center gap-3">
|
||||
<div class="me-auto text-truncate">
|
||||
<div class="fw-bold text-truncate"><?= h($c['name']) ?></div>
|
||||
<div class="d-flex flex-wrap gap-1 mt-1"><?php foreach ($groups as $code => $label):if ($code === 'none') {
|
||||
continue;
|
||||
}$value = (float)($clinicRules[$code]['percent'] ?? 0);
|
||||
if ($value <= 0) {
|
||||
continue;
|
||||
}?><span class="badge bg-orange-lt"><?= h(PricingService::groupLabel($code)) ?> ·
|
||||
<?= number_format($value, 0, ',', ' ') ?>
|
||||
%</span><?php endforeach; ?><?php if (!array_filter($clinicRules, static fn ($r) => (float)$r['percent'] > 0)): ?><span
|
||||
class="text-muted small"><?= h(t('pricing.no_discount')) ?></span><?php endif; ?>
|
||||
</div>
|
||||
</div><button class="btn btn-outline-secondary btn-sm" type="button" data-bs-toggle="modal"
|
||||
data-bs-target="#discountModal<?= (int)$c['id'] ?>"><?= h(t('pricing.configure')) ?></button>
|
||||
</div>
|
||||
</div><?php endforeach; ?><?php if (!$clinics): ?><div class="card-body text-muted">
|
||||
<?= h(t('pricing.no_structure')) ?></div><?php endif; ?></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php foreach ($clinics as $c):$clinicRules = $discounts[(int)$c['id']] ?? []; ?><div class="modal modal-blur fade"
|
||||
id="discountModal<?= (int)$c['id'] ?>" tabindex="-1" aria-hidden="true">
|
||||
<div class="modal-dialog modal-dialog-centered">
|
||||
<form class="modal-content" method="post" action="/settings/pricing/discount"><input type="hidden"
|
||||
name="clinic_contact_id" value="<?= (int)$c['id'] ?>">
|
||||
<div class="modal-header">
|
||||
<div>
|
||||
<h5 class="modal-title"><?= h(t('pricing.discount_for', ['name' => $c['name']])) ?></h5>
|
||||
<div class="text-muted small"><?= h(t('pricing.future_help')) ?></div>
|
||||
</div><button class="btn-close" type="button" data-bs-dismiss="modal"></button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<div class="vstack gap-3"><?php foreach ($groups as $code => $label):if ($code === 'none') {
|
||||
continue;
|
||||
}$value = $clinicRules[$code]['percent'] ?? 0; ?><div class="row align-items-center"><label
|
||||
class="col form-label mb-0"><?= h(PricingService::groupLabel($code)) ?></label>
|
||||
<div class="col-5">
|
||||
<div class="input-group"><input class="form-control" name="discounts[<?= h($code) ?>]"
|
||||
type="number" min="0" max="100" step="0.01" value="<?= h((string)$value) ?>"><span
|
||||
class="input-group-text">%</span></div>
|
||||
</div>
|
||||
</div><?php endforeach; ?></div>
|
||||
<div class="alert alert-info py-2 mt-3 mb-0 small"><?= h(t('pricing.antibiotic_help')) ?></div>
|
||||
</div>
|
||||
<div class="modal-footer"><button class="btn me-auto" type="button"
|
||||
data-bs-dismiss="modal"><?= h(t('common.cancel')) ?></button><button
|
||||
class="btn btn-primary"><?= h(t('pricing.save_discounts')) ?></button></div>
|
||||
</form>
|
||||
</div>
|
||||
</div><?php endforeach; ?>
|
||||
<div class="card mb-4">
|
||||
<div class="card-status-top bg-blue"></div>
|
||||
<div class="card-header">
|
||||
<div>
|
||||
<h3 class="card-title"><?= h(t('pricing.add_label')) ?></h3>
|
||||
<div class="text-muted small"><?= h(t('pricing.add_label_help')) ?></div>
|
||||
</div>
|
||||
</div>
|
||||
<form method="post" action="/settings/pricing/tariff">
|
||||
<div class="card-body row g-3">
|
||||
<div class="col-md-4"><label class="form-label required"><?= h(t('pricing.structure')) ?></label><select
|
||||
class="form-select" name="clinic_contact_id" required>
|
||||
<option value="">—</option><?php foreach ($clinics as $c): ?><option value="<?= (int)$c['id'] ?>">
|
||||
<?= h($c['name']) ?></option><?php endforeach; ?>
|
||||
</select></div>
|
||||
<div class="col-md-5"><label class="form-label required"><?= h(t('pricing.label')) ?></label><input
|
||||
class="form-control" name="label" required placeholder="<?= h(t('pricing.label_example')) ?>"></div>
|
||||
<div class="col-md-3"><label class="form-label"><?= h(t('pricing.catalog_price')) ?></label>
|
||||
<div class="input-group"><input class="form-control" name="amount" inputmode="decimal" required><span
|
||||
class="input-group-text">€</span></div>
|
||||
</div>
|
||||
<div class="col-md-3"><label class="form-label"><?= h(t('settings.category')) ?></label><select
|
||||
class="form-select" name="category"><?php foreach ($categories as $k => $v): ?><option
|
||||
value="<?= h($k) ?>"><?= h(PricingService::categoryLabel($k)) ?></option>
|
||||
<?php endforeach; ?></select></div>
|
||||
<div class="col-md-3"><label class="form-label"><?= h(t('pricing.discount_group')) ?></label><select
|
||||
class="form-select" name="discount_group"><?php foreach ($groups as $k => $v): ?><option
|
||||
value="<?= h($k) ?>"><?= h(PricingService::groupLabel($k)) ?></option>
|
||||
<?php endforeach; ?></select></div>
|
||||
<div class="col-md-2"><label class="form-label"><?= h(t('pricing.unit')) ?></label><input
|
||||
class="form-control" name="unit_label" value="acte"></div>
|
||||
<div class="col-md-4"><label class="form-label"><?= h(t('pricing.linked_medication')) ?> <span
|
||||
class="text-muted">(<?= h(t('common.optional')) ?>)</span></label><select class="form-select"
|
||||
name="medication_id">
|
||||
<option value="">—</option><?php foreach ($medications as $m): ?><option
|
||||
value="<?= (int)$m['id'] ?>"><?= h($m['name']) ?></option><?php endforeach; ?>
|
||||
</select></div>
|
||||
<div class="col-12"><label class="form-check"><input class="form-check-input" type="checkbox" name="active"
|
||||
checked><span class="form-check-label"><?= h(t('pricing.active_tariff')) ?></span></label></div>
|
||||
</div>
|
||||
<div class="card-footer text-end"><button class="btn btn-primary"><?= h(t('pricing.add_tariff')) ?></button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title"><?= h(t('pricing.grid')) ?></h3>
|
||||
</div>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-vcenter mb-0">
|
||||
<thead>
|
||||
<tr>
|
||||
<th><?= h(t('pricing.structure')) ?></th>
|
||||
<th><?= h(t('pricing.label')) ?></th>
|
||||
<th><?= h(t('settings.category')) ?></th>
|
||||
<th><?= h(t('pricing.discount')) ?></th>
|
||||
<th class="text-end"><?= h(t('pricing.catalog')) ?></th>
|
||||
<th class="text-end"><?= h(t('pricing.estimated_cost')) ?></th>
|
||||
<th><?= h(t('pricing.state')) ?></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody><?php foreach ($tariffs as $t): ?><tr>
|
||||
<td><?= h($t['clinic_name']) ?></td>
|
||||
<td class="fw-semibold"><?= h($t['label']) ?><div class="text-muted small">
|
||||
<?= h(t('pricing.per_unit', ['unit' => $t['unit_label']])) ?></div>
|
||||
</td>
|
||||
<td><?= h(PricingService::categoryLabel($t['category'])) ?></td>
|
||||
<td><?= h(PricingService::groupLabel($t['discount_group'])) ?> ·
|
||||
<?= number_format((float)$t['discount_percent'], 2, ',', ' ') ?> %</td>
|
||||
<td class="text-end"><?= number_format($t['amount_cents'] / 100, 2, ',', ' ') ?> €</td>
|
||||
<td class="text-end fw-bold"><?= number_format($t['effective_cents'] / 100, 2, ',', ' ') ?> €</td>
|
||||
<td><span
|
||||
class="badge <?= $t['active'] ? 'bg-green-lt' : 'bg-secondary-lt' ?>"><?= $t['active'] ? t('pricing.active') : t('pricing.inactive') ?></span>
|
||||
</td>
|
||||
</tr><?php endforeach; ?></tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue