This commit is contained in:
CHIEFSOFT\ameye
2025-07-24 05:25:05 -04:00
parent d545e689fd
commit c3d7e62f77
5 changed files with 46 additions and 14 deletions
+8 -2
View File
@@ -188,10 +188,13 @@ class MyProductsService(BaseService):
merms_panel=#
"Product Description - Commitment is something that comes from understanding that everything has its price and then having the willingness to pay that price. This is important because nobody wants to put significant effort into something, only to find out after the fact that the price was too high.The price is something not necessarily defined as financial. It could be time, effort, sacrifice, money or perhaps, something else.",
'internal_url': self.internal_url,
'external_url': self.external_url,
'''
product_subscription_uid=''
product_subscription_external_url = ''
product_subscription_internal_url = ''
product_data = Products.get_product_by_product_id(product_id)
product_description = ProductsDetails.get_product_details_with_product_id('A000002')
productDataStatus = product_data.status
@@ -201,6 +204,8 @@ class MyProductsService(BaseService):
logger.info(f"Incoming MyProduct data ==>>>> {memberSubscription}")
productDataStatus = memberSubscription.status
product_subscription_uid = memberSubscription.uid
product_subscription_external_url = memberSubscription.external_url
product_subscription_internal_url = memberSubscription.internal_url
# "banner": "banner.jpg",
@@ -209,7 +214,8 @@ class MyProductsService(BaseService):
"banner": product_data.banner,
"description": product_description.details,
"sale_text" : product_description.sale_text,
"internal_url": "",
"internal_url": product_subscription_internal_url,
"external_url": product_subscription_external_url,
"price_text": "90 days free and 3.95/Month",
"product_id": product_data.product_id,
"product_name": product_data.name,