57514f7b1d
* feat: Update Subscription Activated field to Subscription Status to accomodate Halted status * feat: API Endpoint to halt Razorpay subscription * fix: sider * fix: validation message * test: halted razorpay subscription
9 lines
381 B
Python
9 lines
381 B
Python
import frappe
|
|
|
|
def execute():
|
|
if frappe.db.exists('DocType', 'Member'):
|
|
frappe.reload_doc('Non Profit', 'doctype', 'Member')
|
|
|
|
if frappe.db.has_column('Member', 'subscription_activated'):
|
|
frappe.db.sql('UPDATE `tabMember` SET subscription_status = "Active" WHERE subscription_activated = 1')
|
|
frappe.db.sql_ddl('ALTER table `tabMember` DROP COLUMN subscription_activated') |