mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-23 16:32:15 +00:00
Fixed issues with importer and datetime conversion
Fixed issue with models.VatRate.__unicode__() with datetime and decimal fields Imported VatRates
This commit is contained in:
@@ -69,4 +69,4 @@ class VatRate(models.Model, RevisionMixin):
|
||||
comment = models.CharField(max_length=255)
|
||||
|
||||
def __unicode__(self):
|
||||
return self.comment + " " + self.start_at + " @ " + self.rate
|
||||
return self.comment + " " + str(self.start_at) + " @ " + str(self.rate)
|
||||
|
||||
Reference in New Issue
Block a user