diff --git a/erpnext/accounts/doctype/purchase_invoice/purchase_invoice_dashboard.py b/erpnext/accounts/doctype/purchase_invoice/purchase_invoice_dashboard.py index 062a2d2c64..beb9ae0f79 100644 --- a/erpnext/accounts/doctype/purchase_invoice/purchase_invoice_dashboard.py +++ b/erpnext/accounts/doctype/purchase_invoice/purchase_invoice_dashboard.py @@ -9,7 +9,7 @@ def get_data(): 'Payment Request': 'reference_name', 'Landed Cost Voucher': 'receipt_document', 'Purchase Invoice': 'return_against', - 'Subscription': 'reference_document' + 'Auto Repeat': 'reference_document' }, 'internal_links': { 'Purchase Order': ['items', 'purchase_order'], diff --git a/erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py b/erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py index efd18b5215..280a9a7a22 100644 --- a/erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py +++ b/erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py @@ -9,7 +9,7 @@ def get_data(): 'Payment Entry': 'reference_name', 'Payment Request': 'reference_name', 'Sales Invoice': 'return_against', - 'Subscription': 'reference_document', + 'Auto Repeat': 'reference_document', }, 'internal_links': { 'Sales Order': ['items', 'sales_order'] diff --git a/erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py b/erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py index d57b0e2568..90b267f5e9 100644 --- a/erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py +++ b/erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py @@ -6,7 +6,7 @@ def get_data(): 'non_standard_fieldnames': { 'Journal Entry': 'reference_name', 'Payment Entry': 'reference_name', - 'Subscription': 'reference_document' + 'Auto Repeat': 'reference_document' }, 'internal_links': { 'Material Request': ['items', 'material_request'], diff --git a/erpnext/buying/doctype/supplier_quotation/supplier_quotation_dashboard.py b/erpnext/buying/doctype/supplier_quotation/supplier_quotation_dashboard.py index 4321f27f2a..123c478bed 100644 --- a/erpnext/buying/doctype/supplier_quotation/supplier_quotation_dashboard.py +++ b/erpnext/buying/doctype/supplier_quotation/supplier_quotation_dashboard.py @@ -4,7 +4,7 @@ def get_data(): return { 'fieldname': 'supplier_quotation', 'non_standard_fieldnames': { - 'Subscription': 'reference_document' + 'Auto Repeat': 'reference_document' }, 'internal_links': { 'Material Request': ['items', 'material_request'], diff --git a/erpnext/selling/doctype/quotation/quotation_dashboard.py b/erpnext/selling/doctype/quotation/quotation_dashboard.py index c6297e22ab..91ba8d74d5 100644 --- a/erpnext/selling/doctype/quotation/quotation_dashboard.py +++ b/erpnext/selling/doctype/quotation/quotation_dashboard.py @@ -4,7 +4,7 @@ def get_data(): return { 'fieldname': 'prevdoc_docname', 'non_standard_fieldnames': { - 'Subscription': 'reference_document', + 'Auto Repeat': 'reference_document', }, 'transactions': [ { diff --git a/erpnext/selling/doctype/sales_order/sales_order_dashboard.py b/erpnext/selling/doctype/sales_order/sales_order_dashboard.py index 34ed6bce57..e2fe65a981 100644 --- a/erpnext/selling/doctype/sales_order/sales_order_dashboard.py +++ b/erpnext/selling/doctype/sales_order/sales_order_dashboard.py @@ -8,7 +8,7 @@ def get_data(): 'Journal Entry': 'reference_name', 'Payment Entry': 'reference_name', 'Payment Request': 'reference_name', - 'Subscription': 'reference_document', + 'Auto Repeat': 'reference_document', }, 'internal_links': { 'Quotation': ['items', 'prevdoc_docname'] diff --git a/erpnext/stock/doctype/delivery_note/delivery_note_dashboard.py b/erpnext/stock/doctype/delivery_note/delivery_note_dashboard.py index 2e150f70d0..a036480db5 100644 --- a/erpnext/stock/doctype/delivery_note/delivery_note_dashboard.py +++ b/erpnext/stock/doctype/delivery_note/delivery_note_dashboard.py @@ -6,7 +6,7 @@ def get_data(): 'non_standard_fieldnames': { 'Stock Entry': 'delivery_note_no', 'Quality Inspection': 'reference_name', - 'Subscription': 'reference_document', + 'Auto Repeat': 'reference_document', }, 'internal_links': { 'Sales Order': ['items', 'against_sales_order'], diff --git a/erpnext/stock/doctype/purchase_receipt/purchase_receipt_dashboard.py b/erpnext/stock/doctype/purchase_receipt/purchase_receipt_dashboard.py index 9ade1afd8a..813aadd6b6 100644 --- a/erpnext/stock/doctype/purchase_receipt/purchase_receipt_dashboard.py +++ b/erpnext/stock/doctype/purchase_receipt/purchase_receipt_dashboard.py @@ -6,7 +6,7 @@ def get_data(): 'non_standard_fieldnames': { 'Purchase Invoice': 'purchase_receipt', 'Landed Cost Voucher': 'receipt_document', - 'Subscription': 'reference_document' + 'Auto Repeat': 'reference_document' }, 'internal_links': { 'Purchase Order': ['items', 'purchase_order'],