Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 604395
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T17:02:01+00:00 2026-05-13T17:02:01+00:00

I have a Promotion model that contains a promotion codes and a foreignkey to

  • 0

I have a Promotion model that contains a promotion codes and a foreignkey to a purchase model Class.

Here is the model:

class Promotion(models.Model):
 purchase =  models.ForeignKey('Purchase')
 promotion_code = models.CharField(max_length=20)
 def promotion_code_generate(self): #returns a string based promotion code with 7 length
  from django.conf import settings
  import random, string
  return ''.join(random.choice(string.ascii_uppercase + string.digits) for x in range(7))
 class Meta:
  unique_together = (("purchase", "promotion_code"),)

Now I want my promotion_code field to be unique for each purchase and for that I have added unique_together = (("purchase", "promotion_code"),) to the Class meta. It works fine while entering a new entry via admin panel as promotion code fiels are blank and I have to enter these by hand.

However I want to make this unique so that when a purchase is done, system should take that Purcase model instance and auto generate this Promotion class instance that is bound via the purchase field of Promotion model.

For this I need two things:

1 – I need my promotion_code_generate method to be checking the earlier Promotion model instances and if the currently generated code doesn’t exist in the past for the deal, returning it, if not regenerating one again reattempting until a non-existing promotion code string for that purchase is found.

2- I have tried assign a default promotion_code_generation to the promotion_code field however failed:

promotion_code = models.CharField(max_length=20,default=self.promotion_code_generate())

How can these be solved ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T17:02:02+00:00Added an answer on May 13, 2026 at 5:02 pm
    import random
    
    @property
    def promotion_code_generate(self):
        while 1:
            prom_code = str(random.random())[2:]
            try:
                Promotion.objects.get(promotion_code=prom_code)
            except:
                return prom_code
    

    Defining it as @property, you can assign it to the default parameter.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.