By admin, on January 6th, 2011
GL import helps you to move your data from legacy accounting software to sql-ledger in few easy steps:
Please keep following points when preparing data in CSV format for import:
- Import script creates one GL transaction for each unique ‘reference’ number. There can be any number of lines (rows) in each transaction.
- Account must exist in chart of accounts
- Debits and credits must be equal before the CSV file can be imported.
Follow these steps to import your data:
- Format your journal data according to the layout show below.
reference,transdate,description,notes,accno,debit,credit,source,memo
GL001,01-20-2008,"Paid for training,support",Next session in 2009,8203,124,0,23211,new hiring
GL001,01-20-2008,"Paid for training,support",Next session in 2009,1230,0,124,23211,new hiring
GL002,10-19-2008,"Overdue pymt for inv 11,12,13",,1230,204,0,"11,12,13",
GL002,10-19-2008,"Overdue pymt for inv 11,12,13",,1102,0,204,"11,12,13",
GL003,11-20-2008,Invalid transaction for testing,This account is not in chart,00121,0,255,source2,memo2
- Using ‘Imports–GL Transaction’ load the CSV file into sql-ledger. Import script will show the rows which contain valid account number and can be imported.
- Click Import GL to finish the import script. Transactions successfully imported will be show on the next page.
By admin, on January 6th, 2011
You can import AR and AP transactions.
For AR Transactions, format your data using the following sample:
invnumber,customernumber,transdate,amount,description,notes,source,memo
00003,AE001,10-11-07,2030,"desc1","notes1","source1","memo1"
00004,CP002,07-12-07,3213,"desc1","notes2","source2","memo2"
00005,SP007,09-12-07,-200,"desc1","notes3","source3","memo3"
For AP transactions, format your data using the following example:
invnumber,vendornumber,transdate,amount,description,notes,source,memo
00003,CB001,10-10-08,2030,"desc1","notes1","source1","memo1"
00004,ES002,10-12-08,3213,"desc2","notes2","source2","memo2"
00005,SA003,12-12-08,-200,"desc3","notes3","source3","memo3"
By admin, on January 6th, 2011
Follow these steps to import your chart of accounts from legacy accounting software into sql-ledger.
- Export/prepare your chart of accounts in your spreadsheet software according to the sample given below.
- Double check the correctness of your final csv file by opening it in a text editor like notepad or wordpad.
- Upload the chart csv file using ‘Import–Chart’ menu option.
- Check/uncheck the accounts to be imported and click continue to import the selected accounts.
Here is a sample chart of accounts in CSV format.
accno,description,charttype,category,link
1000,"CURRENT ASSETS",H,A,
1060,"Checking Account",A,A,AR_paid:AP_paid
1065,"Petty Cash",A,A,AR_paid:AP_paid
1200,"Accounts Receivables",A,A,AR
1205,"Allowance for doubtful accounts",A,A,
1500,"INVENTORY ASSETS",H,A,
1520,"Inventory / General",A,A,IC
1530,"Inventory / Aftermarket Parts",A,A,IC
1800,"CAPITAL ASSETS",H,A,
1820,"Office Furniture & Equipment",A,A,
1825,"Accum. Amort. -Furn. & Equip.",A,A,
1840,Vehicle,A,A,
1845,"Accum. Amort. -Vehicle",A,A,
2000,"CURRENT LIABILITIES",H,L,
2100,"Accounts Payable",A,L,AP
2160,"Corporate Taxes Payable",A,L,
2190,"Federal Income Tax Payable",A,L,
2210,"Workers Comp Payable",A,L,
2220,"Vacation Pay Payable",A,L,
2250,"Pension Plan Payable",A,L,
2260,"Employment Insurance Payable",A,L,
2280,"Payroll Taxes Payable",A,L,
2310,"VAT (10%)",A,L,AR_tax:AP_tax:IC_taxpart:IC_taxservice
2320,"VAT (14%)",A,L,AR_tax:AP_tax:IC_taxpart:IC_taxservice
2330,"VAT (30%)",A,L,AR_tax:AP_tax:IC_taxpart:IC_taxservice
2600,"LONG TERM LIABILITIES",H,L,
2620,"Bank Loans",A,L,
2680,"Loans from Shareholders",A,L,AP_paid
3300,"SHARE CAPITAL",H,Q,
3350,"Common Shares",A,Q,
4000,"SALES REVENUE",H,I,
4020,"Sales / General",A,I,AR_amount:IC_sale
4030,"Sales / Aftermarket Parts",A,I,AR_amount:IC_sale
4300,"CONSULTING REVENUE",H,I,
4320,Consulting,A,I,AR_amount:IC_income
4400,"OTHER REVENUE",H,I,
4430,"Shipping & Handling",A,I,IC_income
4440,Interest,A,I,
4450,"Foreign Exchange Gain",A,I,
5000,"COST OF GOODS SOLD",H,E,
5010,Purchases,A,E,AP_amount:IC_expense
5020,"COGS / General",A,E,AP_amount:IC_cogs
5030,"COGS / Aftermarket Parts",A,E,AP_amount:IC_cogs
5100,Freight,A,E,AP_amount:IC_expense
5400,"PAYROLL EXPENSES",H,E,
5410,"Wages & Salaries",A,E,
5420,"Employment Insurance Expense",A,E,
5430,"Pension Plan Expense",A,E,
5440,"Workers Comp Expense",A,E,
5470,"Employee Benefits",A,E,
5600,"GENERAL & ADMINISTRATIVE EXPENSES",H,E,
5610,"Accounting & Legal",A,E,AP_amount
5615,"Advertising & Promotions",A,E,AP_amount
5620,"Bad Debts",A,E,
5650,"Capital Cost Allowance Expense",A,E,
5660,"Amortization Expense",A,E,
5680,"Income Taxes",A,E,
5685,Insurance,A,E,AP_amount
5690,"Interest & Bank Charges",A,E,
5700,"Office Supplies",A,E,AP_amount
5760,Rent,A,E,AP_amount
5765,"Repair & Maintenance",A,E,AP_amount
5780,Telephone,A,E,AP_amount
5785,"Travel & Entertainment",A,E,
5790,Utilities,A,E,AP_amount
5795,Registrations,A,E,AP_amount
5800,Licenses,A,E,AP_amount
5810,"Foreign Exchange Loss",A,E,
By admin, on January 4th, 2011
To import customers, create/prepare a CSV file using the following sample as template.
customernumber,name,firstname,lastname,contacttitle,phone,fax,email,notes,address1,address2,city,state,zipcode,country
001,Ledger123,Armaghan,Saqib,Consultant,,,saqib@ledger123.com,"These are, just, sample notes",,,London,,"AA7 8BB",UK
Vendors can be important in similar way. Change “customernumber” to “vendornumber” for vendors import.
By admin, on January 3rd, 2011
- Format your customer price list according to the sample CSV data below.
partnumber,customernumber,pricegroup,pricebreak,sellprice,validfrom,validto,curr
B001,AE001,PG1,10,11,03-01-2008,,GBP
B002,BP011,,20,12,,03-01-2009,GBP
M004,CP002,,15,20,03-01-2008,03-05-2008,GBP
D08,CP002,test,25,25,,,GBP
- Click ‘Data Import–Parts Customers’, specify the file with the ‘Browse’ button and click ‘Import Parts Customers’ button.

- Following page will be displayed. Here you can un-check the rows which you do not want to import. Rows with invalid customer number or partnumber will not have the checkbox.
By admin, on January 3rd, 2011
- Format your vendors price list according to the sample CSV data below:
partnumber,vendornumber,vendorpartnumber,lastcost,curr,leadtime
B001,CB001,V-CB001,10,GBP,15
B002,ES002,,14,GBP,45
M004,SA003,,21,GBP,30
- Click ‘Data Import–Parts Vendors’, specify the file with the ‘Browse’ button and click ‘Import Parts Vendors’ button.
- Following page will be displayed. Here you can un-check the rows which you do not want to import. Rows with invalid vendor number or partnumber will not have the checkbox.
By admin, on September 28th, 2010
This blog has not been updated for a while. We are busy working hard to add new features to our already enhanced sql-ledger version. (You can view the list of existing enhancements here.)
Our enhanced version is based upon the latest official sql-ledger 2.8.30. Our new enhancements include:
- Item price history lookup on invoices, orders and quotations.
- Customer/vendor detail lookup on invoices, orders and quotations.
- Enhanced ‘Shipping-Receive’ form with ‘Receive all’ button.
- Parts onhand quantity on invoices, orders and quotes is shown from selected warehouse if there is one specified. Otherwise it is shown from parts file.
- More enhancements to order management.
- Minor fixes to many reports.
Download and install/upgrade instructions are here. For details visit http://github.com/ledger123. To stay updated sign up sql-ledger-commits mailing list.
By admin, on June 27th, 2010
By admin, on May 3rd, 2010
LedgerCart instantly converts your SQL-Ledger/LedgerSMB installation into a fully function web-based order system and customer portal.
Features:
- All products and prices are shown from your SQL-Ledger/LedgerSMB database. No need to sync your products/customers between your online order system and accounting software.
- Products are categorized using parts groups in your ledger.
- Customers can login and view their orders and invoices.
- Existing customers can login using remind password feature. New customers can register when during checkout.
- Easy to customize. All pages are html templates.
LedgerCart is a new product and a number of features are under active development. For details and price information send email to sales@ledger123.com.
By admin, on April 13th, 2010
We are pleased to announce our support for LedgerSMB. LedgerSMB is an sql-ledger fork with focus on security and stability. Currently we are support LedgerSMB 1.2 which is the latest stable branch.
To subscribe to support, just signup for our standard support package which now covers LedgerSMB as well as SQL-Ledger.
|
|