Skip to content

Commit ea4dfd8

Browse files
committed
Confirm to Django's coding style
Follow Django's coding style conventions to keep the codebase consistent, both with itself and with other projects. References: https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/coding-style/
1 parent 8ea5499 commit ea4dfd8

File tree

4 files changed

+235
-114
lines changed

4 files changed

+235
-114
lines changed
Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
# Generated by Django 5.2.9 on 2025-12-05 00:42
2+
from __future__ import annotations
3+
4+
from django.db import migrations
5+
from django.db import models
6+
7+
8+
class Migration(migrations.Migration):
9+
dependencies = [
10+
("afip", "0016_clientvatcondition_receipt_client_vat_condition"),
11+
]
12+
13+
operations = [
14+
migrations.AlterField(
15+
model_name="pointofsales",
16+
name="gross_income_condition",
17+
field=models.CharField(
18+
blank=True,
19+
default="",
20+
max_length=48,
21+
verbose_name="gross income condition",
22+
),
23+
),
24+
migrations.AlterField(
25+
model_name="pointofsales",
26+
name="issuing_address",
27+
field=models.TextField(
28+
blank=True,
29+
default="",
30+
help_text="The address of the issuing entity as shown on receipts.",
31+
verbose_name="issuing address",
32+
),
33+
),
34+
migrations.AlterField(
35+
model_name="pointofsales",
36+
name="issuing_email",
37+
field=models.CharField(
38+
blank=True,
39+
default="",
40+
help_text="The email of the issuing entity as shown on receipts.",
41+
max_length=128,
42+
verbose_name="issuing email",
43+
),
44+
),
45+
migrations.AlterField(
46+
model_name="pointofsales",
47+
name="issuing_name",
48+
field=models.CharField(
49+
blank=True,
50+
default="",
51+
help_text="The name of the issuing entity as shown on receipts.",
52+
max_length=128,
53+
verbose_name="issuing name",
54+
),
55+
),
56+
migrations.AlterField(
57+
model_name="pointofsales",
58+
name="sales_terms",
59+
field=models.CharField(
60+
blank=True,
61+
default="",
62+
help_text="The terms of the sale printed onto receipts by default "
63+
"(eg: single payment, checking account, etc).",
64+
max_length=48,
65+
verbose_name="sales terms",
66+
),
67+
),
68+
migrations.AlterField(
69+
model_name="pointofsales",
70+
name="vat_condition",
71+
field=models.CharField(
72+
blank=True,
73+
choices=[
74+
("IVA Responsable Inscripto", "IVA Responsable Inscripto"),
75+
("IVA Responsable No Inscripto", "IVA Responsable No Inscripto"),
76+
("IVA Exento", "IVA Exento"),
77+
("No Responsable IVA", "No Responsable IVA"),
78+
("Responsable Monotributo", "Responsable Monotributo"),
79+
],
80+
default="",
81+
max_length=48,
82+
verbose_name="vat condition",
83+
),
84+
),
85+
migrations.AlterField(
86+
model_name="receiptpdf",
87+
name="issuing_email",
88+
field=models.CharField(
89+
blank=True, default="", max_length=128, verbose_name="issuing email"
90+
),
91+
),
92+
]

0 commit comments

Comments
 (0)