add - fix broker price

This commit is contained in:
2025-11-09 15:05:51 +03:30
parent cb3af7a778
commit 0436942646

View File

@@ -256,7 +256,7 @@ class Broker(BaseModel):
) )
broker_type = models.CharField(choices=BROKER_TYPES, max_length=20, null=True) broker_type = models.CharField(choices=BROKER_TYPES, max_length=20, null=True)
fix_broker_price = models.PositiveBigIntegerField(default=0) fix_broker_price = models.PositiveBigIntegerField(default=0)
fix_broker_price_state = models.PositiveBigIntegerField(default=0) fix_broker_price_state = models.BooleanField(default=False)
required = models.BooleanField(default=False) required = models.BooleanField(default=False)
def __str__(self): def __str__(self):