Taux TVA auto + seed enrichi + import photo collee
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
# Generated by Django 5.2.15 on 2026-06-30 07:05
|
||||
|
||||
from decimal import Decimal
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('compta', '0007_alter_paiement_options_entreprise_groupes_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='depense',
|
||||
name='montant_tva',
|
||||
field=models.DecimalField(decimal_places=2, default=Decimal('0'), help_text='Calculée automatiquement depuis le montant payé et le taux.', max_digits=12, verbose_name='TVA déductible (€)'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='depense',
|
||||
name='taux_tva',
|
||||
field=models.DecimalField(choices=[(Decimal('0'), '0 %'), (Decimal('5.5'), '5,5 %'), (Decimal('10'), '10 %'), (Decimal('20'), '20 %')], decimal_places=2, default=Decimal('20'), help_text='Achat national : la TVA déductible est calculée. UE/import : taux auto-liquidé.', max_digits=4, verbose_name='Taux de TVA (%)'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='lignefacture',
|
||||
name='taux_tva',
|
||||
field=models.DecimalField(choices=[(Decimal('0'), '0 %'), (Decimal('5.5'), '5,5 %'), (Decimal('10'), '10 %'), (Decimal('20'), '20 %')], decimal_places=2, default=Decimal('0'), max_digits=4),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user