karrio-server-pricing 2025.5rc24__py3-none-any.whl → 2025.5rc26__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,34 @@
1
+ # Generated by Django 5.2.7 on 2025-10-14 01:00
2
+
3
+ import karrio.server.core.fields
4
+ from django.db import migrations
5
+
6
+
7
+ class Migration(migrations.Migration):
8
+
9
+ dependencies = [
10
+ ("pricing", "0069_alter_surcharge_carriers_alter_surcharge_services"),
11
+ ]
12
+
13
+ operations = [
14
+ migrations.AlterField(
15
+ model_name="surcharge",
16
+ name="carriers",
17
+ field=karrio.server.core.fields.MultiChoiceField(
18
+ blank=True,
19
+ choices=[("generic", "generic")],
20
+ help_text="\n The list of carriers you want to apply the surcharge to.\n <br/>\n Note that by default, the surcharge is applied to all carriers\n ",
21
+ null=True,
22
+ ),
23
+ ),
24
+ migrations.AlterField(
25
+ model_name="surcharge",
26
+ name="services",
27
+ field=karrio.server.core.fields.MultiChoiceField(
28
+ blank=True,
29
+ choices=[],
30
+ help_text="\n The list of services you want to apply the surcharge to.\n <br/>\n Note that by default, the surcharge is applied to all services\n ",
31
+ null=True,
32
+ ),
33
+ ),
34
+ ]