Re: problem with localization

2012-02-04 Thread Vittorino Parenti
Dear Denis, in the model I would simply calculate the value and not how it is displayed in admin interface. I thought there was an easy way to format the function result as already done for the fields in the model. Thank you. Vittorino. On 4 Feb, 15:26, Denis Darii wrote:

Re: problem with localization

2012-02-04 Thread Denis Darii
Vittorino, this is not related to your initial question and you must consider that the format() returns always a string. And why do you use format() in total_no_vat()? I would separate the "total": ... def total_no_vat(self): return self.total_income + self.total_fee def

Re: problem with localization

2012-02-04 Thread Vittorino Parenti
Hi, I think this is not the solution. I do another example: MODEL class Procedure(models.Model): total_income = models.DecimalField ( default = 0, max_digits = 11, decimal_places = 4, verbose_name = _("Total Income"), )

problem with localization

2012-02-04 Thread Vittorino Parenti
Hello, i've a problem with number format localization. This is an example of my model and admin: MODEL class Procedure(models.Model): total_income = models.DecimalField ( default = 0, max_digits = 11, decimal_places = 4, verbose_name =