From ecaf685e11bab3b3df9fa74128c2ed6136019fab Mon Sep 17 00:00:00 2001 From: Andreas Granig Date: Wed, 3 Jul 2013 14:12:34 +0200 Subject: [PATCH] Fix billing_profile column in ajax call. --- share/templates/contract/list.tt | 2 +- share/templates/customer/list.tt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/share/templates/contract/list.tt b/share/templates/contract/list.tt index 021257c369..d58a2eed36 100644 --- a/share/templates/contract/list.tt +++ b/share/templates/contract/list.tt @@ -5,7 +5,7 @@ helper.data = contracts; helper.messages = messages; helper.column_titles = [ '#', 'Contact #', 'Billing Profile #', 'Status' ]; - helper.column_fields = [ 'id', 'contact_id', 'billing_profile_id', 'status' ]; + helper.column_fields = [ 'id', 'contact_id', 'billing_profile', 'status' ]; helper.close_target = close_target; helper.create_flag = create_flag; diff --git a/share/templates/customer/list.tt b/share/templates/customer/list.tt index 178295a974..b6ac2bbc20 100644 --- a/share/templates/customer/list.tt +++ b/share/templates/customer/list.tt @@ -4,7 +4,7 @@ helper.data = contracts; helper.messages = messages; helper.column_titles = [ '#', 'Contact #', 'Billing Profile #', 'Status' ]; - helper.column_fields = [ 'id', 'contact_id', 'billing_profile_id', 'status' ]; + helper.column_fields = [ 'id', 'contact_id', 'billing_profile', 'status' ]; helper.close_target = close_target; helper.create_flag = create_flag;