mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-15 19:45:46 +00:00
26 lines
783 B
Python
26 lines
783 B
Python
# Generated by Django 3.2.19 on 2023-05-19 03:41
|
|
|
|
from django.db import migrations, models
|
|
|
|
import InvenTree.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('company', '0058_auto_20230515_0004'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='supplierpart',
|
|
name='pack_quantity',
|
|
field=models.CharField(blank=True, help_text='Total quantity supplied in a single pack. Leave empty for single items.', max_length=25, verbose_name='Pack Quantity'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='supplierpart',
|
|
name='pack_quantity_native',
|
|
field=InvenTree.fields.RoundingDecimalField(decimal_places=10, default=1, max_digits=20, null=True),
|
|
),
|
|
]
|