diff --git a/erpnext/accounts/doctype/purchase_invoice/purchase_invoice_dashboard.py b/erpnext/accounts/doctype/purchase_invoice/purchase_invoice_dashboard.py index beb9ae0f79..f101b6aa7e 100644 --- a/erpnext/accounts/doctype/purchase_invoice/purchase_invoice_dashboard.py +++ b/erpnext/accounts/doctype/purchase_invoice/purchase_invoice_dashboard.py @@ -30,7 +30,7 @@ def get_data(): }, { 'label': _('Subscription'), - 'items': ['Subscription'] + 'items': ['Auto Repeat'] }, ] } \ No newline at end of file diff --git a/erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py b/erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py index 280a9a7a22..71fce77695 100644 --- a/erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py +++ b/erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py @@ -29,7 +29,7 @@ def get_data(): }, { 'label': _('Subscription'), - 'items': ['Subscription'] + 'items': ['Auto Repeat'] }, ] } \ No newline at end of file diff --git a/erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py b/erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py index 90b267f5e9..cce4b2747b 100644 --- a/erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py +++ b/erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py @@ -24,7 +24,7 @@ def get_data(): }, { 'label': _('Reference'), - 'items': ['Material Request', 'Supplier Quotation', 'Project', 'Subscription'] + 'items': ['Material Request', 'Supplier Quotation', 'Project', 'Auto Repeat'] }, { 'label': _('Sub-contracting'), diff --git a/erpnext/buying/doctype/supplier_quotation/supplier_quotation_dashboard.py b/erpnext/buying/doctype/supplier_quotation/supplier_quotation_dashboard.py index 123c478bed..0387437b32 100644 --- a/erpnext/buying/doctype/supplier_quotation/supplier_quotation_dashboard.py +++ b/erpnext/buying/doctype/supplier_quotation/supplier_quotation_dashboard.py @@ -22,7 +22,7 @@ def get_data(): }, { 'label': _('Subscription'), - 'items': ['Subscription'] + 'items': ['Auto Repeat'] }, ] diff --git a/erpnext/config/accounts.py b/erpnext/config/accounts.py index 088a119678..2494562fd9 100644 --- a/erpnext/config/accounts.py +++ b/erpnext/config/accounts.py @@ -34,8 +34,8 @@ def get_data(): }, { "type": "doctype", - "name": "Subscription", - "label": _("Subscription"), + "name": "Auto Repeat", + "label": _("Auto Repeat"), "description": _("To make recurring documents") }, { diff --git a/erpnext/selling/doctype/quotation/quotation_dashboard.py b/erpnext/selling/doctype/quotation/quotation_dashboard.py index 91ba8d74d5..d32fd0cfed 100644 --- a/erpnext/selling/doctype/quotation/quotation_dashboard.py +++ b/erpnext/selling/doctype/quotation/quotation_dashboard.py @@ -13,7 +13,7 @@ def get_data(): }, { 'label': _('Subscription'), - 'items': ['Subscription'] + 'items': ['Auto Repeat'] }, ] } \ No newline at end of file diff --git a/erpnext/selling/doctype/sales_order/sales_order_dashboard.py b/erpnext/selling/doctype/sales_order/sales_order_dashboard.py index e2fe65a981..35c643de6c 100644 --- a/erpnext/selling/doctype/sales_order/sales_order_dashboard.py +++ b/erpnext/selling/doctype/sales_order/sales_order_dashboard.py @@ -32,7 +32,7 @@ def get_data(): }, { 'label': _('Reference'), - 'items': ['Quotation', 'Subscription'] + 'items': ['Quotation', 'Auto Repeat'] }, { 'label': _('Payment'), diff --git a/erpnext/stock/doctype/delivery_note/delivery_note_dashboard.py b/erpnext/stock/doctype/delivery_note/delivery_note_dashboard.py index a036480db5..cf28a527c5 100644 --- a/erpnext/stock/doctype/delivery_note/delivery_note_dashboard.py +++ b/erpnext/stock/doctype/delivery_note/delivery_note_dashboard.py @@ -26,7 +26,7 @@ def get_data(): }, { 'label': _('Subscription'), - 'items': ['Subscription'] + 'items': ['Auto Repeat'] }, ] } \ No newline at end of file diff --git a/erpnext/stock/doctype/purchase_receipt/purchase_receipt_dashboard.py b/erpnext/stock/doctype/purchase_receipt/purchase_receipt_dashboard.py index 813aadd6b6..e83a89e60f 100644 --- a/erpnext/stock/doctype/purchase_receipt/purchase_receipt_dashboard.py +++ b/erpnext/stock/doctype/purchase_receipt/purchase_receipt_dashboard.py @@ -28,7 +28,7 @@ def get_data(): }, { 'label': _('Subscription'), - 'items': ['Subscription'] + 'items': ['Auto Repeat'] }, ] } \ No newline at end of file