I need to let a modelChoiceField have the possiblity of taking two different models objects.
for example can billnum
take as queryset: facture_ventes.objects
or facture_depc.objects
at the same time instead of only one model :
billnum=forms.ModelChoiceField(queryset=facture_ventes.objects)
Thank You For your Help