|
|
|
|
|
|
398
|
|
398
|
|
|
399
|
class AllProductDimensionForInsProcess(models.Model):
|
399
|
class AllProductDimensionForInsProcess(models.Model):
|
|
400
|
ProdType = models.CharField(max_length=255, null=True) # Product type (e.g., 'V', 'E', 'BEL', 'MG')
|
400
|
ProdType = models.CharField(max_length=255, null=True) # Product type (e.g., 'V', 'E', 'BEL', 'MG')
|
|
401
|
- ProductCode = models.CharField(max_length=255, null=True) # Product code
|
|
|
|
|
|
401
|
+ ProductCode = models.CharField(max_length=255, primary_key=True) # Product code# Product code
|
|
402
|
Size_Id = models.CharField(max_length=255, null=True) # Size ID (e.g., '001', '002')
|
402
|
Size_Id = models.CharField(max_length=255, null=True) # Size ID (e.g., '001', '002')
|
|
403
|
Size_Name = models.CharField(max_length=255, null=True) # Size name (e.g., 'D', 'T', 'H')
|
403
|
Size_Name = models.CharField(max_length=255, null=True) # Size name (e.g., 'D', 'T', 'H')
|
|
404
|
Std = models.DecimalField(max_digits=10, decimal_places=2, null=True) # Standard value
|
404
|
Std = models.DecimalField(max_digits=10, decimal_places=2, null=True) # Standard value
|