some fixes

This commit is contained in:
gitea 2025-01-14 12:11:32 +00:00
parent 872cab6c04
commit 0591e46755
3 changed files with 19 additions and 8 deletions

View File

@ -1,8 +1,4 @@
<<<<<<< HEAD
# Generated by Django 4.2.17 on 2025-01-13 08:40
=======
# Generated by Django 5.1.4 on 2025-01-12 17:20
>>>>>>> 3889fed781038764cbb5e2e895a933edb4ebb451
from django.db import migrations, models

View File

@ -0,0 +1,18 @@
# Generated by Django 4.2.17 on 2025-01-14 12:10
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('inventory', '0002_alter_carmake_car_type'),
]
operations = [
migrations.AlterField(
model_name='carmake',
name='car_type',
field=models.SmallIntegerField(blank=True, choices=[(1, 'Car'), (2, 'Light Commercial'), (3, 'Heavy-Duty Tractors'), (4, 'Trailers'), (5, 'Medium Trucks'), (6, 'Buses'), (20, 'Motorcycles'), (21, 'Buggy'), (22, 'Moto ATV'), (23, 'Scooters'), (24, 'Karting'), (25, 'ATV'), (26, 'Snowmobiles')], null=True),
),
]

View File

@ -47,10 +47,7 @@ class StaffUserManager(UserManager):
user = self.create_user(username=email, email=email, password=password, **extra_fields)
Staff.objects.create(user=user, name=name, arabic_name=arabic_name, phone_number=phone_number, staff_type=staff_type, **extra_fields)
return user
class CarType(models.TextChoices):
pass
class UnitOfMeasure(models.TextChoices):
EACH = 'EA', 'Each'
PAIR = 'PR', 'Pair'