memberSubscription

This commit is contained in:
CHIEFSOFT\ameye
2025-07-07 18:47:11 -04:00
parent 9da47fc106
commit 7d6df5d5f8
2 changed files with 8 additions and 2 deletions
+1 -1
View File
@@ -50,7 +50,7 @@ class MembersProducts(db.Model):
return member_products
@classmethod
def get_member_product_by_product__member_id(cls, member_id, product_id):
def get_member_product_by_product_member_id(cls, member_id, product_id):
member_product = cls.query.filter_by(member_id=str(member_id), product_id=str(product_id))
if not member_product:
return None