20 lines
603 B
Python
20 lines
603 B
Python
# Generated by Django 5.2.15 on 2026-07-15 09:28
|
|
|
|
from decimal import Decimal
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('compta', '0010_categorie_compte_pcg'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='bareme',
|
|
name='taux_cfp',
|
|
field=models.DecimalField(decimal_places=2, default=Decimal('0'), help_text='Contribution à la formation professionnelle : vente 0,1 % · artisan 0,3 % · service/libéral 0,2 %.', max_digits=4, verbose_name='Taux CFP (%)'),
|
|
),
|
|
]
|