Merge branch 'main' into development

This commit is contained in:
2026-03-17 22:48:18 -05:00
52 changed files with 3959 additions and 100 deletions

View File

@@ -127,7 +127,7 @@ export interface FaLineItem {
subitem_number?: number;
// Special flags
download?: boolean;
discharge?: boolean;
own_equipment?: boolean;
omit_annex31?: boolean;

View File

@@ -263,10 +263,10 @@
<div class="space-y-1.5">
<Label class="text-xs font-medium text-muted-foreground">Genera Descarga?</Label>
<RadioGroup
value={editingItem.fa_data?.download === true ? 'si' : 'no'}
value={editingItem.fa_data?.discharge === true ? 'si' : 'no'}
onValueChange={(v) => {
editingItem.fa_data = editingItem.fa_data || {};
editingItem.fa_data.download = v === 'si';
editingItem.fa_data.discharge = v === 'si';
}}
class="flex gap-4"
>
@@ -355,10 +355,10 @@
<div class="space-y-1.5">
<Label class="text-xs font-medium text-muted-foreground">Genera Descarga?</Label>
<RadioGroup
value={editingItem.fa_data?.download === true ? 'si' : 'no'}
value={editingItem.fa_data?.discharge === true ? 'si' : 'no'}
onValueChange={(v) => {
editingItem.fa_data = editingItem.fa_data || {};
editingItem.fa_data.download = v === 'si';
editingItem.fa_data.discharge = v === 'si';
}}
class="flex gap-4"
>