Improve string representation of VMPricing

This commit is contained in:
PCoder 2018-04-16 00:50:34 +02:00
parent 68032ec184
commit ec753eb0d5
1 changed files with 7 additions and 7 deletions

View File

@ -36,13 +36,13 @@ class VMPricing(models.Model):
)
def __str__(self):
return self.name + '-' + ' - '.join([
'{}/Core'.format(self.cores_unit_price),
'{}/GB RAM'.format(self.ram_unit_price),
'{}/GB SSD'.format(self.ssd_unit_price),
'{}/GB HDD'.format(self.hdd_unit_price),
'{}% VAT'.format(self.vat_percentage)
if not self.vat_inclusive else 'NO_VAT', ]
return self.name + ' => ' + ' - '.join([
'{}/Core'.format(self.cores_unit_price.normalize()),
'{}/GB RAM'.format(self.ram_unit_price.normalize()),
'{}/GB SSD'.format(self.ssd_unit_price.normalize()),
'{}/GB HDD'.format(self.hdd_unit_price.normalize()),
'{}% VAT'.format(self.vat_percentage.normalize())
if not self.vat_inclusive else 'VAT-Incl', ]
)
@classmethod