fix ranvher invetory entry bug for existence of rancher - set pagination message
This commit is contained in:
@@ -358,8 +358,8 @@ class Quota(BaseModel):
|
||||
related_name='quota_limits',
|
||||
blank=True
|
||||
)
|
||||
base_price_factory = models.DecimalField(max_digits=12, decimal_places=2)
|
||||
base_price_cooperative = models.DecimalField(max_digits=12, decimal_places=2)
|
||||
base_price_factory = models.PositiveBigIntegerField(default=0)
|
||||
base_price_cooperative = models.PositiveBigIntegerField(default=0)
|
||||
final_price = models.DecimalField(max_digits=12, decimal_places=2, null=True, blank=True)
|
||||
is_closed = models.BooleanField(default=False)
|
||||
closed_at = models.DateTimeField(null=True, blank=True)
|
||||
|
||||
Reference in New Issue
Block a user