44 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
	
| # Generated by Django 3.2.12 on 2024-07-31 10:29
 | |
| 
 | |
| from django.db import migrations, models
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     dependencies = [
 | |
|         ('pum', '0007_supplier_number'),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.AddField(
 | |
|             model_name='puorder',
 | |
|             name='total_price',
 | |
|             field=models.DecimalField(blank=True, decimal_places=2, max_digits=14, null=True, verbose_name='总价'),
 | |
|         ),
 | |
|         migrations.AddField(
 | |
|             model_name='puorderitem',
 | |
|             name='total_price',
 | |
|             field=models.DecimalField(blank=True, decimal_places=2, max_digits=14, null=True, verbose_name='总价'),
 | |
|         ),
 | |
|         migrations.AddField(
 | |
|             model_name='puorderitem',
 | |
|             name='unit_price',
 | |
|             field=models.DecimalField(blank=True, decimal_places=2, max_digits=14, null=True, verbose_name='单价'),
 | |
|         ),
 | |
|         migrations.AddField(
 | |
|             model_name='puplan',
 | |
|             name='total_price',
 | |
|             field=models.DecimalField(blank=True, decimal_places=2, max_digits=14, null=True, verbose_name='总价'),
 | |
|         ),
 | |
|         migrations.AddField(
 | |
|             model_name='puplanitem',
 | |
|             name='total_price',
 | |
|             field=models.DecimalField(blank=True, decimal_places=2, max_digits=14, null=True, verbose_name='总价'),
 | |
|         ),
 | |
|         migrations.AddField(
 | |
|             model_name='puplanitem',
 | |
|             name='unit_price',
 | |
|             field=models.DecimalField(blank=True, decimal_places=2, max_digits=14, null=True, verbose_name='单价'),
 | |
|         ),
 | |
|     ]
 |