- User Manual
- Spire Systems - General Knowledge Base
- Spire Administration - General Ledger
-
Spire Systems - General Knowledge Base
-
Analytics for Spire
-
Spire User Manual - System Overview
-
Spire User Manual - User Settings
-
Spire User Manual - Vendors
-
Spire User Manual - Inventory
-
Spire User Manual - Price Matrix
-
Spire User Manual - Purchase Orders
-
Spire User Manual - Sales Orders
-
Spire User Manual - Keyboard Shortcuts
-
Spire User Manual - Company Settings
-
Spire User Manual - New Instal/Company Setup
-
Spire User Manual - General Ledger
-
Spire User Manual - Accounts Receivable
-
Spire User Manual - Accounts Payable
-
Spire User Manual - Payroll
-
Spire User Manual - Production Manager
-
Spire User Manual - Service Manager
-
Spire User Manual - User Defined Fields
-
Spire User Manual - Job Costing
-
HubSpot
-
Gemini Logic
-
Shipping
-
Sales Taxes
-
Spire User Manual
Recalculate gl account balances
This will repost the GL accounts with the transactions from all periods.
UPDATE gl_accounts
SET last_year = '{0.00,0,0,0,0,0,0,0.00,0,0,0,0,0}',
this_year = '{0.00,0,0,0,0,0,0,0.00,0,0,0,0,0}',
next_year = '{0.00,0,0,0,0,0,0,0.00,0,0,0,0,0}',
foreign_last_year = '{0.00,0,0,0,0,0,0,0.00,0,0,0,0,0}',
foreign_this_year = '{0.00,0,0,0,0,0,0,0.00,0,0,0,0,0}',
foreign_next_year = '{0.00,0,0,0,0,0,0,0.00,0,0,0,0,0}';
UPDATE gl_accounts AS a SET
last_year = r.last_year,
this_year = r.this_year,
next_year = r.next_year,
foreign_last_year = r.frn_last_year,
foreign_this_year = r.frn_this_year,
foreign_next_year = r.frn_next_year
FROM gl_reallocate_balances() AS r
WHERE a.division = r.division
AND a.account_no = r.account_no
AND a.currency = r.currency