update sale invoices models and some ui fix

This commit is contained in:
2026-05-26 12:06:43 +03:30
parent eb671d5949
commit 9fdd5e451c
20 changed files with 147 additions and 77 deletions
@@ -88,12 +88,12 @@ export class KeyValueComponent {
}
switch (this.type) {
case 'simple':
return this.value || '-';
return this.value || '-----';
}
return value;
}
valueType = computed(() =>
this.variant || ['boolean', 'has', 'active'].includes(this.type) ? 'tag' : 'text',
this.variant || ['boolean', 'has', 'active'].includes(this.type) ? 'tag' : 'text'
);
}