Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
482 views
in Technique[技术] by (71.8m points)

python - Do Arithmetic Operations in Django Model itself

I want to subtract two model fields in the model itself. Example :

    class Purchase(models.Model):
    
        name = models.CharField(max_length=80, unique=True)
        quantity = models.IntegerField(max_length=100, null=True)
        scheme = models.IntegerField(max_length=100, null=True)
        rate = models.IntegerField(max_length=100, null=True)
        discountPercent = models.IntegerField(max_length=100, null=True)
        discount = models.IntegerField(max_length=100, null=True)
        gst = models.IntegerField(max_length=100, null=True)
        value = models.IntegerField(max_length=100, null=True)
        date_created = models.DateTimeField(auto_now_add=True, null=True)
        product_image = models.ImageField(upload_to='product_image/', null=True, blank=True)
        FinalPrice = .....?
    
        class Meta:
            ordering = ('-date_created',)
        def __str__(self):
            return self.name

Here I want to subtract field name "rate" and "discountPercent" and store its result in a new field named "FinalPrice". I tried to do it in views but I want to it in model itself. Please Guide me for this.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...