Browse Source

Fix a bug where an unattributed payment could not be attributed to a member

Alexandre Aubin 7 years ago
parent
commit
13356b0e12
1 changed files with 1 additions and 1 deletions
  1. 1 1
      coin/billing/admin.py

+ 1 - 1
coin/billing/admin.py

@@ -217,7 +217,7 @@ class PaymentAdmin(admin.ModelAdmin):
     def get_readonly_fields(self, request, obj=None):
 
         # If payment already started to be allocated or already have a member
-        if obj and (obj.amount_already_allocated != 0 or obj.member != None):
+        if obj and (obj.amount_already_allocated() != 0 or obj.member != None):
             # All fields are readonly
             return flatten_fieldsets(self.declared_fieldsets)
         else: