mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-21 05:59:18 +00:00
* fix: use Stripe's new Plan API for price information * patch: use inbuilt function to rename field * fix: patch call Co-authored-by: Ankush Menat <ankush@iwebnotes.com> Co-authored-by: Nabin Hait <nabinhait@gmail.com>
8 lines
225 B
Python
8 lines
225 B
Python
import frappe
|
|
from frappe.model.utils.rename_field import rename_field
|
|
|
|
|
|
def execute():
|
|
frappe.reload_doc("accounts", "doctype", "subscription_plan")
|
|
rename_field("Subscription Plan", "payment_plan_id", "product_price_id")
|