为了账号安全,请及时绑定邮箱和手机立即绑定

foreginkey的过滤查询集

foreginkey的过滤查询集

慕勒3428872 2022-01-11 16:57:11
员工有两种类型的销售和普通员工,在销售表格中我只想显示销售员工
查看完整描述

2 回答

?
回首忆惘然

TA贡献1847条经验 获得超11个赞

def __init__(self, user, *args, **kwargs):

    super(BranchesMasterForm, self).__init__(*args, **kwargs)

    self.fields['CompanyName'].queryset = BranchesMaster.objects.filter(user=user)


查看完整回答
反对 回复 2022-01-11
?
慕田峪7331174

TA贡献1828条经验 获得超13个赞

你必须在 models.py 中创建两个类


class Sales(models.model):

    user = models.ForiegnKey(User , on_delete= models.CASCADE)

    { add more attributes if u want } 


class Employee(models.model):

    user = models.ForiegnKey(User , on_delete= models.CASCADE)

    { add more attributes if u want }

之后创建一个名为 forms.py 的新文件


   class SalesForm(forms.Modelform):

       class Meta:

       model = Sales

       fields = [ 'u can insert the fields which u want to show in ur form  ' ]

同样,您为您的员工制作表单类


NOTE:--

u have to import ur model in your form.py module

and do import--- from django.contrib.auth.models import User

 in ur models.py file  


查看完整回答
反对 回复 2022-01-11
  • 2 回答
  • 0 关注
  • 109 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信