fix - update org visibility & bank fields blank=true
This commit is contained in:
@@ -194,10 +194,10 @@ class BankAccountInformation(BaseModel):
|
||||
('USR', 'user'),
|
||||
)
|
||||
account_type = models.CharField(max_length=10, default='USR')
|
||||
name = models.CharField(max_length=150, null=True)
|
||||
card = models.CharField(max_length=25, null=True)
|
||||
account = models.CharField(max_length=25, null=True)
|
||||
sheba = models.CharField(max_length=30, null=True)
|
||||
name = models.CharField(max_length=150, null=True, blank=True)
|
||||
card = models.CharField(max_length=25, null=True, blank=True)
|
||||
account = models.CharField(max_length=25, null=True, blank=True)
|
||||
sheba = models.CharField(max_length=30, null=True, blank=True)
|
||||
|
||||
def __str__(self):
|
||||
return f'{self.name}-{self.card}'
|
||||
|
||||
Reference in New Issue
Block a user