CRM-16189: remove ts from name
authoryashodha <yashodha.chaku@webaccessglobal.com>
Thu, 30 Jun 2016 07:27:42 +0000 (12:57 +0530)
committeryashodha <yashodha.chaku@webaccessglobal.com>
Thu, 30 Jun 2016 07:27:42 +0000 (12:57 +0530)
----------------------------------------
* CRM-16189: Improve support for Accrual Method bookkeeping
  https://issues.civicrm.org/jira/browse/CRM-16189

CRM/Upgrade/Incremental/sql/4.7.9.mysql.tpl

index 6c411d128a3b10a0e6543d051ebbeebbca0d79b3..b5f8a1af30a1311d5cdbd1e9a48957376f0ac670 100644 (file)
@@ -39,8 +39,8 @@ SELECT @domainContactId := contact_id from civicrm_domain where id = {$domainID}
 INSERT IGNORE INTO
   `civicrm_financial_account` (`name`, `contact_id`, `financial_account_type_id`, `description`, `accounting_code`, `account_type_code`, `is_reserved`, `is_active`, `is_deductible`, `is_default`)
 VALUES
-  ('{ts escape="sql"}Deferred Revenue - Event Fee{/ts}', @domainContactId, @opLiability, 'Event revenue to be recognized in future months when the events occur', '2730', 'OCLIAB', 0, 1, 0, 0),
-  ('{ts escape="sql"}Deferred Revenue - Member Dues{/ts}', @domainContactId, @opLiability, 'Membership revenue to be recognized in future months', '2740', 'OCLIAB', 0, 1, 0, 0);
+  ('Deferred Revenue - Event Fee', @domainContactId, @opLiability, 'Event revenue to be recognized in future months when the events occur', '2730', 'OCLIAB', 0, 1, 0, 0),
+  ('Deferred Revenue - Member Dues', @domainContactId, @opLiability, 'Membership revenue to be recognized in future months', '2740', 'OCLIAB', 0, 1, 0, 0);
 
 SELECT @financial_account_id_dref := max(id) FROM civicrm_financial_account WHERE name = '{ts escape="sql"}Deferred Revenue - Event Fee{/ts}';
 SELECT @financial_account_id_drmd := max(id) FROM civicrm_financial_account WHERE name = '{ts escape="sql"}Deferred Revenue - Member Dues{/ts}';