We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88d1243 commit efa70c6Copy full SHA for efa70c6
backend/billing/validation.py
@@ -20,7 +20,7 @@
20
def validate_sdi_code(sdi_code: str) -> bool:
21
sdi_code = sdi_code.upper()
22
23
- if len(sdi_code) != 7:
+ if len(sdi_code) not in [6, 7]:
24
raise SdiCodeIncorrectLengthError()
25
26
if not sdi_code.isalnum():
pretix/Dockerfile
@@ -6,7 +6,7 @@ RUN pip install boto3==1.35.14 \
6
django-storages==1.14.4 \
7
pretix-plugin-extended-api==0.1.14 \
8
pretix-plugin-attendance-certificate==0.1.11 \
9
- pretix-fattura-elettronica==0.2.15 \
+ pretix-fattura-elettronica==0.2.16 \
10
pretix-plugin-advanced-stats==1.0.0
11
12
RUN cd /pretix/src && DATABASE_HOST=demo make staticfiles
0 commit comments