You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(23) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(68) |
Feb
(121) |
Mar
(59) |
Apr
(49) |
May
(110) |
Jun
(109) |
Jul
(146) |
Aug
(122) |
Sep
(83) |
Oct
(94) |
Nov
(90) |
Dec
(157) |
2002 |
Jan
(169) |
Feb
(186) |
Mar
(168) |
Apr
(353) |
May
(338) |
Jun
(278) |
Jul
(220) |
Aug
(336) |
Sep
(122) |
Oct
(183) |
Nov
(111) |
Dec
(265) |
2003 |
Jan
(358) |
Feb
(135) |
Mar
(343) |
Apr
(419) |
May
(277) |
Jun
(145) |
Jul
|
Aug
(134) |
Sep
(118) |
Oct
(97) |
Nov
(240) |
Dec
(293) |
2004 |
Jan
(412) |
Feb
(217) |
Mar
(202) |
Apr
(237) |
May
(333) |
Jun
(201) |
Jul
(303) |
Aug
(218) |
Sep
(285) |
Oct
(249) |
Nov
(248) |
Dec
(229) |
2005 |
Jan
(314) |
Feb
(175) |
Mar
(386) |
Apr
(223) |
May
(281) |
Jun
(230) |
Jul
(200) |
Aug
(197) |
Sep
(110) |
Oct
(243) |
Nov
(279) |
Dec
(324) |
2006 |
Jan
(335) |
Feb
(396) |
Mar
(383) |
Apr
(358) |
May
(375) |
Jun
(190) |
Jul
(212) |
Aug
(320) |
Sep
(358) |
Oct
(112) |
Nov
(213) |
Dec
(95) |
2007 |
Jan
(136) |
Feb
(104) |
Mar
(156) |
Apr
(115) |
May
(78) |
Jun
(75) |
Jul
(30) |
Aug
(35) |
Sep
(50) |
Oct
(44) |
Nov
(33) |
Dec
(35) |
2008 |
Jan
(90) |
Feb
(63) |
Mar
(47) |
Apr
(42) |
May
(72) |
Jun
(85) |
Jul
(25) |
Aug
(20) |
Sep
(14) |
Oct
(11) |
Nov
(25) |
Dec
(39) |
2009 |
Jan
(39) |
Feb
(46) |
Mar
(16) |
Apr
(27) |
May
(51) |
Jun
(66) |
Jul
(78) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
(5) |
Apr
|
May
(4) |
Jun
|
Jul
(1) |
Aug
|
Sep
(1) |
Oct
(2) |
Nov
|
Dec
|
2011 |
Jan
|
Feb
(2) |
Mar
|
Apr
(3) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2016 |
Jan
(1) |
Feb
|
Mar
|
Apr
(1) |
May
(1) |
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Yves L. <yve...@gm...> - 2008-03-02 15:19:14
|
Bonjour Rolf, I found it. I am using Ubuntu and PostgreSQL 8.3 On my setup, the created database was owned by sql-ledger, but the schema and tables were owned by postgres, the default PGSQL user. I sent this patch to Dieter for approval: User.pm, line 360 $dbh = DBI->connect($form->{dbconnect}, $form->{dbuser}, $form->{dbpasswd}) or $form->dberror; + if ($form->{dbdriver} eq 'Pg') { + $dbcreate{Pg} = " SET SESSION AUTHORIZATION \"$form->{dbuser}\""; + $query = qq|$dbcreate{$form->{dbdriver}}|; + $dbh->do($query); + } # create the tables my $dbdriver = ($form->{dbdriver} =~ /Pg/) ? 'Pg' : $form->{dbdriver}; It worked for me, fixed the creation errors and solved the empty database list upon removal, because list is produced by acheck for ownership on defaults by sql-ledger. Yves 2008/3/2, "Rolf Stöckli (tokon)" <in...@to...>: > > Bonjour Yves, > That's really strange. In an empty DB, the relation "id" doesn't exist > yet, so there should be no such error. If you don't use the name of an > already existing dataset, don't click 2 times the "Continue" button and > don't press the browser's reload button even if you think the creation > takes too much time (and I'm sure you do neither of them), I've no idea > why such an error occurs. - But I know, my fantasy is a bit restricted. > > > Rolf > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > sql-ledger-users mailing list > sql...@li... > https://lists.sourceforge.net/lists/listinfo/sql-ledger-users > -- Yves Lavoie ing. Président Gestion Automatisée Yves Lavoie inc. Tel: (450) 746-7521 email: yve...@gm... |
From: Rolf S. (tokon) <in...@to...> - 2008-03-02 13:13:19
|
Bonjour Yves, That's really strange. In an empty DB, the relation "id" doesn't exist yet, so there should be no such error. If you don't use the name of an already existing dataset, don't click 2 times the "Continue" button and don't press the browser's reload button even if you think the creation takes too much time (and I'm sure you do neither of them), I've no idea why such an error occurs. - But I know, my fantasy is a bit restricted. Rolf |
From: Yves L. <yve...@gm...> - 2008-03-01 21:54:51
|
Hi Rolf, I suspected that, so I dropped the database with PgAdmin, to make sure that it was gone for good. Same problem. Yves 2008/3/1, "Rolf Stöckli (tokon)" <in...@to...>: > > Yves Lavoie schrieb: > > - During creation, SQL-Ledger reports Error!, CREATE SEQUENCE id > start > > > 10000, ERROR: relation "id" already exists. > > > This means the database or a part of it already exists, maybe because a > previous creation failed. I had similar errors, when I tried to create a > DB with a chart of accounts that was not compatible with the charset of > the DB, pressed the "back" button in the browser and then tried to > create the same db for a second time. If the DB creation fails, you have > to drop the DB first before you try again. > |
From: Rolf S. (tokon) <in...@to...> - 2008-03-01 20:39:06
|
Yves Lavoie schrieb: > - During creation, SQL-Ledger reports Error!, CREATE SEQUENCE id start > 10000, ERROR: relation "id" already exists. This means the database or a part of it already exists, maybe because a previous creation failed. I had similar errors, when I tried to create a DB with a chart of accounts that was not compatible with the charset of the DB, pressed the "back" button in the browser and then tried to create the same db for a second time. If the DB creation fails, you have to drop the DB first before you try again. Rolf |
From: Yves L. <yve...@gm...> - 2008-03-01 19:05:54
|
Hi, I am having a few problems with the dataset creation menu, using PGSQL. - Upon creation, the database is owned by sql-ledger, but tables are owned by PGSQL default user postgres. This seems odd, because the proper creation method is well documented in the FAQ. - During creation, SQL-Ledger reports Error!, CREATE SEQUENCE id start 10000, ERROR: relation "id" already exists. Those are easy to prevent by using the alternate creation method documented in the FAQ. I an just wondering if I am alone with those or if this portion of the code is still work in progress. Yves |
From: Yves L. <yve...@gm...> - 2008-03-01 18:47:33
|
Hi Saqib, Here a a few suggestions. - Taxes should be compoundable. Quebec taxes are calculated after Canadian taxes are applied. Currently I cheat on the percentages but a better solution should be available. - Country and Province (state) taxes may change, depending on the nature of the service, the product or the customer. Currently we can only have one of each. Regards, Yves 2008/2/21, Armaghan Saqib <sa...@le...>: > > C. Duncan Hudson wrote: > > Just wondering what the status of the revised tax system is. The > > website says "Work Started". But work was supposed to have started on > > that back in August of 2004. Is tax flexibility ever going to become a > > reality with SQL-Ledger, or is asking just beating a dead horse > > > > Hi Duncan, > > What you need in a revised tax system? Other list members, kindly submit > your requirements too. > > I think enhancing/changing functionality in SL is not a simple job. May > be we can collect the requirements from respected list members and ask > Dieter for a quote. We could then poll some money to pay the author for > this enhancement. This will surely get us the enhancement soon. > > Regards > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > sql-ledger-users mailing list > sql...@li... > https://lists.sourceforge.net/lists/listinfo/sql-ledger-users > -- Yves Lavoie ing. Président Gestion Automatisée Yves Lavoie inc. Tel: (450) 746-7521 email: yve...@gm... |
From: Vitaly P. <vit...@gm...> - 2008-02-26 17:38:15
|
So do you think it is possible to convert all items into another currency using some sort of automated tool? Vitaly On 2/26/08, Bob Gustafson <bo...@rc...> wrote: > Not necessarily a nightmare: You have the dates of all the transactions, > and the exchange rates can be downloaded for each day (even after the > day - historically). In fact SL has support for a script that > automatically downloads new exchange rates every day. > > It would also be nice to just 'view' past transactions in another > currency, but SL doesn't have that code. SL must add and subtract > 'corrections' for each currency translation :-( > > Bob G > > On Mon, 2008-02-25 at 20:44 +0100, Vitaly Popovich wrote: > > Hi, > > I would like to multiply all transactions by the same exchange factor. > > It would be a nightmare to convert them using exchange rate at that > > date. > > > > Vitaly > > > > On 2/25/08, Bob Gustafson <bo...@rc...> wrote: > > > Do you want to leave all your original transactions in dollars and just > > > 'view' them in euros? > > > > > > Or do you want to multiply all of the past transactions by the currency > > > exchange factor? > > > > > > If the later, do you want to use the currency exchange factor which > > > existed on the date of the transaction, or do you wish to just use one > > > currency exchange factor for all of the transactions? > > > > > > It is not a simple thing.. > > > > > > On Sun, 2008-02-24 at 19:37 +0100, Vitaly Popovich wrote: > > > > Hello everyone, > > > > > > > > I am using sql-ledger as a simple accounting system. > > > > I was wondering whether there is a way how to change base currency and > > > > change all past transactions to be in new currency (euro)? > > > > For example, i used USD for transactions and now i need to change all > > > > transaction to be in Euro. > > > > Is there an automated way or built in function in sql-ledger? > > > > > > > > > > > > Regards, > > > > Vitaly > > > > > > > > ------------------------------------------------------------------------- > > > > This SF.net email is sponsored by: Microsoft > > > > Defy all challenges. Microsoft(R) Visual Studio 2008. > > > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > > > _______________________________________________ > > > > sql-ledger-users mailing list > > > > sql...@li... > > > > https://lists.sourceforge.net/lists/listinfo/sql-ledger-users > > > > > > ------------------------------------------------------------------------- > > > This SF.net email is sponsored by: Microsoft > > > Defy all challenges. Microsoft(R) Visual Studio 2008. > > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > > _______________________________________________ > > > sql-ledger-users mailing list > > > sql...@li... > > > https://lists.sourceforge.net/lists/listinfo/sql-ledger-users > > > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Microsoft > > Defy all challenges. Microsoft(R) Visual Studio 2008. > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > _______________________________________________ > > sql-ledger-users mailing list > > sql...@li... > > https://lists.sourceforge.net/lists/listinfo/sql-ledger-users > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > sql-ledger-users mailing list > sql...@li... > https://lists.sourceforge.net/lists/listinfo/sql-ledger-users > |
From: Bob G. <bo...@rc...> - 2008-02-26 17:15:29
|
Not necessarily a nightmare: You have the dates of all the transactions, and the exchange rates can be downloaded for each day (even after the day - historically). In fact SL has support for a script that automatically downloads new exchange rates every day. It would also be nice to just 'view' past transactions in another currency, but SL doesn't have that code. SL must add and subtract 'corrections' for each currency translation :-( Bob G On Mon, 2008-02-25 at 20:44 +0100, Vitaly Popovich wrote: > Hi, > I would like to multiply all transactions by the same exchange factor. > It would be a nightmare to convert them using exchange rate at that > date. > > Vitaly > > On 2/25/08, Bob Gustafson <bo...@rc...> wrote: > > Do you want to leave all your original transactions in dollars and just > > 'view' them in euros? > > > > Or do you want to multiply all of the past transactions by the currency > > exchange factor? > > > > If the later, do you want to use the currency exchange factor which > > existed on the date of the transaction, or do you wish to just use one > > currency exchange factor for all of the transactions? > > > > It is not a simple thing.. > > > > On Sun, 2008-02-24 at 19:37 +0100, Vitaly Popovich wrote: > > > Hello everyone, > > > > > > I am using sql-ledger as a simple accounting system. > > > I was wondering whether there is a way how to change base currency and > > > change all past transactions to be in new currency (euro)? > > > For example, i used USD for transactions and now i need to change all > > > transaction to be in Euro. > > > Is there an automated way or built in function in sql-ledger? > > > > > > > > > Regards, > > > Vitaly > > > > > > ------------------------------------------------------------------------- > > > This SF.net email is sponsored by: Microsoft > > > Defy all challenges. Microsoft(R) Visual Studio 2008. > > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > > _______________________________________________ > > > sql-ledger-users mailing list > > > sql...@li... > > > https://lists.sourceforge.net/lists/listinfo/sql-ledger-users > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Microsoft > > Defy all challenges. Microsoft(R) Visual Studio 2008. > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > _______________________________________________ > > sql-ledger-users mailing list > > sql...@li... > > https://lists.sourceforge.net/lists/listinfo/sql-ledger-users > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > sql-ledger-users mailing list > sql...@li... > https://lists.sourceforge.net/lists/listinfo/sql-ledger-users |
From: Vitaly P. <vit...@gm...> - 2008-02-25 19:44:38
|
Hi, I would like to multiply all transactions by the same exchange factor. It would be a nightmare to convert them using exchange rate at that date. Vitaly On 2/25/08, Bob Gustafson <bo...@rc...> wrote: > Do you want to leave all your original transactions in dollars and just > 'view' them in euros? > > Or do you want to multiply all of the past transactions by the currency > exchange factor? > > If the later, do you want to use the currency exchange factor which > existed on the date of the transaction, or do you wish to just use one > currency exchange factor for all of the transactions? > > It is not a simple thing.. > > On Sun, 2008-02-24 at 19:37 +0100, Vitaly Popovich wrote: > > Hello everyone, > > > > I am using sql-ledger as a simple accounting system. > > I was wondering whether there is a way how to change base currency and > > change all past transactions to be in new currency (euro)? > > For example, i used USD for transactions and now i need to change all > > transaction to be in Euro. > > Is there an automated way or built in function in sql-ledger? > > > > > > Regards, > > Vitaly > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Microsoft > > Defy all challenges. Microsoft(R) Visual Studio 2008. > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > _______________________________________________ > > sql-ledger-users mailing list > > sql...@li... > > https://lists.sourceforge.net/lists/listinfo/sql-ledger-users > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > sql-ledger-users mailing list > sql...@li... > https://lists.sourceforge.net/lists/listinfo/sql-ledger-users > |
From: Bob G. <bo...@rc...> - 2008-02-25 17:30:16
|
Do you want to leave all your original transactions in dollars and just 'view' them in euros? Or do you want to multiply all of the past transactions by the currency exchange factor? If the later, do you want to use the currency exchange factor which existed on the date of the transaction, or do you wish to just use one currency exchange factor for all of the transactions? It is not a simple thing.. On Sun, 2008-02-24 at 19:37 +0100, Vitaly Popovich wrote: > Hello everyone, > > I am using sql-ledger as a simple accounting system. > I was wondering whether there is a way how to change base currency and > change all past transactions to be in new currency (euro)? > For example, i used USD for transactions and now i need to change all > transaction to be in Euro. > Is there an automated way or built in function in sql-ledger? > > > Regards, > Vitaly > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > sql-ledger-users mailing list > sql...@li... > https://lists.sourceforge.net/lists/listinfo/sql-ledger-users |
From: Wallace R. C. <wrc...@gm...> - 2008-02-25 14:23:06
|
On Mon, Feb 25, 2008 at 5:37 AM, Myk Robinson <myk...@gm...> wrote: > You're probably right there :) Thanks though, I will grab some accounting > books from the local library to help. http://www.google.com/search?q=accounting+tutorial Google is your friend. :-) -- Best Regards, Wallace |
From: Myk R. <myk...@gm...> - 2008-02-25 12:35:32
|
You're probably right there :) Thanks though, I will grab some accounting books from the local library to help. -myk On Sunday 24 February 2008 10:45:41 pm David J wrote: > Purchase of trading stock is not an expense until you sell > it. > Between purchase and subsequent sale, its an asset. > This is prolly a question for Accounting 101, rather than > the SQL-L mailing list. > > > Thank you. perhaps i have my accounts configured > > incorrectly. I only buy parts when they are needed, so I > > dont actually keep any inventory on hand. I want to find > > the right way to document when I purchase a part for > > resale, and have it shown as an expense and not as an > > assett.. It looks like when I do the purchase order, the > > part is being considered an assett for some reason. Does > > something different happen once that part is paid for by > > the customer? > > > > Thanks, > > -myk > > > > On Sunday 24 February 2008 11:46:56 am Michael Hasse > > > > > wrote: Technically one would create a Purchase Order, > > > then as items are received, (e.g. in the case of a > > > multi-item order that arrives in separate shipments) > > > Vendor Invoice(s) are created from the PO. (Vendors will > > > sometimes create multiple invoices for a single order if > > > > items are shipped separately). Then the invoices are > > > > > Paid. The two key points are are the Receipt of > > > goods at the PO, which causes them to be placed into > > > inventory. If, however, one skips the PO process, then > > > the goods will not be placed in inventory until the > > > > vendor invoice is (completely?) Paid. > > > > > > Thanks, > > > > > > Michael Hasse > > > Itwerx > > > 206-850-1496 > > > http://www.itwerx.net/ > > > > > > ********************************** > > > If our service is not 100% satisfactory please tell us! > > > If it is 100% please tell others! > > > ********************************** > > > > > > On Feb 24, 2008, at 6:12 AM, Myk Robinson wrote: > > > > Hi- > > > > > > > > Seems that this used to work fine for me, so i want to > > > > clarify correct procedure... I am ordering a part to > > > > use in a customer's computer. I have the > > > > part listed in the "Good and Services" section. To > > > > document the order and add > > > > the part to inventory, is the correct method to place > > > > > > it under AP-- > > > > > > > > >Vendor > > > > > > > > Invoice? > > > > > > > > I have done this, but it is not showing up as an > > > > expense/purchase when I check > > > > under Income Statement. > > > > > > > > Please advise.. > > > > > > > > Thanks, > > > > -myk robinson > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > sql-ledger-users mailing list > sql...@li... > https://lists.sourceforge.net/lists/listinfo/sql-ledger-users |
From: David J <ja...@in...> - 2008-02-25 04:45:49
|
Purchase of trading stock is not an expense until you sell it. Between purchase and subsequent sale, its an asset. This is prolly a question for Accounting 101, rather than the SQL-L mailing list. > Thank you. perhaps i have my accounts configured > incorrectly. I only buy parts when they are needed, so I > dont actually keep any inventory on hand. I want to find > the right way to document when I purchase a part for > resale, and have it shown as an expense and not as an > assett.. It looks like when I do the purchase order, the > part is being considered an assett for some reason. Does > something different happen once that part is paid for by > the customer? > > Thanks, > -myk > > On Sunday 24 February 2008 11:46:56 am Michael Hasse > > wrote: Technically one would create a Purchase Order, > > then as items are received, (e.g. in the case of a > > multi-item order that arrives in separate shipments) > > Vendor Invoice(s) are created from the PO. (Vendors will > > sometimes create multiple invoices for a single order if > items are shipped separately). Then the invoices are > > Paid. The two key points are are the Receipt of > > goods at the PO, which causes them to be placed into > > inventory. If, however, one skips the PO process, then > > the goods will not be placed in inventory until the > vendor invoice is (completely?) Paid. > > > > > Thanks, > > > > Michael Hasse > > Itwerx > > 206-850-1496 > > http://www.itwerx.net/ > > > > ********************************** > > If our service is not 100% satisfactory please tell us! > > If it is 100% please tell others! > > ********************************** > > > > On Feb 24, 2008, at 6:12 AM, Myk Robinson wrote: > > > Hi- > > > > > > Seems that this used to work fine for me, so i want to > > > clarify correct procedure... I am ordering a part to > > > use in a customer's computer. I have the > > > part listed in the "Good and Services" section. To > > > document the order and add > > > the part to inventory, is the correct method to place > > it under AP-- > > > > >Vendor > > > > > > Invoice? > > > > > > I have done this, but it is not showing up as an > > > expense/purchase when I check > > > under Income Statement. > > > > > > Please advise.. > > > > > > Thanks, > > > -myk robinson > > > > > > |
From: Armaghan S. <sa...@le...> - 2008-02-25 04:29:58
|
Michael Hasse wrote: > The two key points are are the Receipt of goods at the PO, which > causes them to be placed into inventory. If, however, one skips the > PO process, then the goods will not be placed in inventory until the > vendor invoice is (completely?) Paid. > Goods are placed in inventory when a purchase invoice is created. This is not linked to the payment of that AP invoice. Regards -- Purpose-built SQL-Ledger Hosting http://www.ledger123.com/ -- |
From: Myk R. <myk...@gm...> - 2008-02-25 02:55:16
|
Thank you. perhaps i have my accounts configured incorrectly. I only buy parts when they are needed, so I dont actually keep any inventory on hand. I want to find the right way to document when I purchase a part for resale, and have it shown as an expense and not as an assett.. It looks like when I do the purchase order, the part is being considered an assett for some reason. Does something different happen once that part is paid for by the customer? Thanks, -myk On Sunday 24 February 2008 11:46:56 am Michael Hasse wrote: > Technically one would create a Purchase Order, then as items are > received, (e.g. in the case of a multi-item order that arrives in > separate shipments) Vendor Invoice(s) are created from the PO. > (Vendors will sometimes create multiple invoices for a single order > if items are shipped separately). Then the invoices are Paid. > The two key points are are the Receipt of goods at the PO, which > causes them to be placed into inventory. If, however, one skips the > PO process, then the goods will not be placed in inventory until the > vendor invoice is (completely?) Paid. > > > Thanks, > > Michael Hasse > Itwerx > 206-850-1496 > http://www.itwerx.net/ > > ********************************** > If our service is not 100% satisfactory please tell us! > If it is 100% please tell others! > ********************************** > > On Feb 24, 2008, at 6:12 AM, Myk Robinson wrote: > > Hi- > > > > Seems that this used to work fine for me, so i want to clarify correct > > procedure... I am ordering a part to use in a customer's computer. > > I have the > > part listed in the "Good and Services" section. To document the > > order and add > > the part to inventory, is the correct method to place it under AP-- > > > > >Vendor > > > > Invoice? > > > > I have done this, but it is not showing up as an expense/purchase > > when I check > > under Income Statement. > > > > Please advise.. > > > > Thanks, > > -myk robinson > > > > ---------------------------------------------------------------------- > > --- > > This SF.net email is sponsored by: Microsoft > > Defy all challenges. Microsoft(R) Visual Studio 2008. > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > _______________________________________________ > > sql-ledger-users mailing list > > sql...@li... > > https://lists.sourceforge.net/lists/listinfo/sql-ledger-users > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > sql-ledger-users mailing list > sql...@li... > https://lists.sourceforge.net/lists/listinfo/sql-ledger-users |
From: Vitaly P. <vit...@gm...> - 2008-02-24 18:37:17
|
Hello everyone, I am using sql-ledger as a simple accounting system. I was wondering whether there is a way how to change base currency and change all past transactions to be in new currency (euro)? For example, i used USD for transactions and now i need to change all transaction to be in Euro. Is there an automated way or built in function in sql-ledger? Regards, Vitaly |
From: Michael H. <mh...@it...> - 2008-02-24 17:47:46
|
Technically one would create a Purchase Order, then as items are received, (e.g. in the case of a multi-item order that arrives in separate shipments) Vendor Invoice(s) are created from the PO. (Vendors will sometimes create multiple invoices for a single order if items are shipped separately). Then the invoices are Paid. The two key points are are the Receipt of goods at the PO, which causes them to be placed into inventory. If, however, one skips the PO process, then the goods will not be placed in inventory until the vendor invoice is (completely?) Paid. Thanks, Michael Hasse Itwerx 206-850-1496 http://www.itwerx.net/ ********************************** If our service is not 100% satisfactory please tell us! If it is 100% please tell others! ********************************** On Feb 24, 2008, at 6:12 AM, Myk Robinson wrote: > Hi- > > Seems that this used to work fine for me, so i want to clarify correct > procedure... I am ordering a part to use in a customer's computer. > I have the > part listed in the "Good and Services" section. To document the > order and add > the part to inventory, is the correct method to place it under AP-- > >Vendor > Invoice? > > I have done this, but it is not showing up as an expense/purchase > when I check > under Income Statement. > > Please advise.. > > Thanks, > -myk robinson > > ---------------------------------------------------------------------- > --- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > sql-ledger-users mailing list > sql...@li... > https://lists.sourceforge.net/lists/listinfo/sql-ledger-users |
From: Myk R. <myk...@gm...> - 2008-02-24 14:10:21
|
Hi- Seems that this used to work fine for me, so i want to clarify correct procedure... I am ordering a part to use in a customer's computer. I have the part listed in the "Good and Services" section. To document the order and add the part to inventory, is the correct method to place it under AP-->Vendor Invoice? I have done this, but it is not showing up as an expense/purchase when I check under Income Statement. Please advise.. Thanks, -myk robinson |
From: Armaghan S. <sa...@le...> - 2008-02-22 04:04:52
|
C. Duncan Hudson wrote: > Just wondering what the status of the revised tax system is. The > website says "Work Started". But work was supposed to have started on > that back in August of 2004. Is tax flexibility ever going to become a > reality with SQL-Ledger, or is asking just beating a dead horse > Hi Duncan, What you need in a revised tax system? Other list members, kindly submit your requirements too. I think enhancing/changing functionality in SL is not a simple job. May be we can collect the requirements from respected list members and ask Dieter for a quote. We could then poll some money to pay the author for this enhancement. This will surely get us the enhancement soon. Regards |
From: C. D. H. <du...@du...> - 2008-02-21 19:52:50
|
Just wondering what the status of the revised tax system is. The website says "Work Started". But work was supposed to have started on that back in August of 2004. Is tax flexibility ever going to become a reality with SQL-Ledger, or is asking just beating a dead horse? Dunc |
From: <yb...@gm...> - 2008-02-21 07:54:57
|
Hello ? is there Sql-ledger Perl/Tk/Tkx Version ? Thanks yb...@gm... |
From: Tom D. <td...@ro...> - 2008-02-20 21:46:20
|
On Wed, 20 Feb 2008, Bernd Plagge wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Hello, > > there seems to be a bug in sqwebmail where Japanese mail get crippled Ummm, did I miss something or did you post to the wrong list? This is the sql-ledger list not the sqwebmail list. Regards, -- Tom Diehl td...@ro... Spamtrap address mt...@ro... |
From: Bernd P. <bp...@ch...> - 2008-02-19 15:17:26
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello, there seems to be a bug in sqwebmail where Japanese mail get crippled i.e. characters get modified and not readable any more. The problems seems to occur when 'soft breaks' (flowed format) are inserted into the text. The text is encoded in 'quoted-printable' format and according to the RFC soft-breaks are inserted 'between words'. The problem with Japanese text is that the normal text flow does not contain spaces. This necessarily leads to lines exceeding the predetermined text length. - From what I can see the program is searching for (single byte) space characters and then applies soft breaks. However, a single byte space character is likely to be the first or second byte of a double byte Japanese character and thus the inserted soft break destroys the character. Test (1) with lines of over 50-60 (single byte) chars length show crippled characters. Test (2) with very short lines of about 20 (single byte) chars was transmitted without problems. Text already got crippled when saved to the 'draft' folder. I have screen prints to show the problem. If you should require them please let me know where to upload them to. Cheers, Bernd - -- プラゲ ベェアント - Bernd Plagge ファースト・チョイス・インターネット(有) First Choice Internet Ltd., Tokyo Tel. 03-4500-7799 Fax. 03-4400-3723 mail: bp...@ch... url: http://www.choicenet.ne.jp -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFHuvLvpYU8M8PbPV4RAoV1AJwKrWzF271dfzVPP6xCX62HCOVTggCePjsy K/u5mwRs4yW0s7iHdD9S3go= =DEYA -----END PGP SIGNATURE----- |
From: Michael G. <ge...@mu...> - 2008-02-19 14:05:10
|
Oops, I should have said I just upgraded to 2.8.11... On Mon, Feb 18, 2008 at 03:13:33PM -0500, Michael George wrote: > I just upgraded to 2.6.11 (and then to .12) near the first of the year. > My Cash Reconciliation screen is much different now. It will list all > the prior transactions since I started rather than just the "unchecked" > ones. > > I can overlook that, but I have another issue... > > I have had no problems with cash reconciliation in the past. When I > went to reconcile my 12/31/07 statement, however, there is a $736.26 > discrepancy. When I list the cash account in the chart of accounts, the > final balance of the cash account matches that in my checkbook. > However, the final balance on the reconciliation screen is different. > > What I found is that back in July, I have a general ledger entry for: > Acct. Debit Credit > checking 736.26 > checking 736.26 > Health Ins. 1472.52 > > That transaction shows up correctly in my Checking account report. > > However, on the Cash Reconciliation screen, there is only *one* entry > for 7/31/07 credit of $736.26. So the reconciliation screen is now off. > Before upgrading from 2.6.12 to 2.8.11, I didn't have this problem... > > Has anyone else run into this? -- -M There are 10 kinds of people in this world: Those who can count in binary and those who cannot. |
From: Michael G. <ge...@mu...> - 2008-02-18 20:14:22
|
I just upgraded to 2.6.11 (and then to .12) near the first of the year. My Cash Reconciliation screen is much different now. It will list all the prior transactions since I started rather than just the "unchecked" ones. I can overlook that, but I have another issue... I have had no problems with cash reconciliation in the past. When I went to reconcile my 12/31/07 statement, however, there is a $736.26 discrepancy. When I list the cash account in the chart of accounts, the final balance of the cash account matches that in my checkbook. However, the final balance on the reconciliation screen is different. What I found is that back in July, I have a general ledger entry for: Acct. Debit Credit checking 736.26 checking 736.26 Health Ins. 1472.52 That transaction shows up correctly in my Checking account report. However, on the Cash Reconciliation screen, there is only *one* entry for 7/31/07 credit of $736.26. So the reconciliation screen is now off. Before upgrading from 2.6.12 to 2.8.11, I didn't have this problem... Has anyone else run into this? -- -M There are 10 kinds of people in this world: Those who can count in binary and those who cannot. |