|
From: Jonas S. <jo...@jo...> - 2001-06-22 13:59:10
|
On Fri, 22 Jun 2001, AJ Hettema wrote:
> Service => I think you mean something like a description for hours?
I guess SQL-Ledger first designed to link bying and selling with goods.
Later on support for "virtual" goods was added - things like "support",
"Service" and "Consultancy" that is not stored in a room with the risk of
running low on amounts...
> COGS => Think this is a apprevation for buying some goods??? Where does it
> stand for???
I looked it up and found the term "Cost of goods sold". in my danish
translation I made it something like "Sales expenses", but I think it
refers only to the loss of storing goods (non-virtual goods that is).
> CR => ???
> DR => ???
Debet or Credit transactions.
It is used in ca.pl, where I found this:
$total += $ca->{balance};
$drcr = " ";
$balance = " ";
if ($ca->{balance} > 0) {
$balance = sprintf("%.2f", $ca->{balance});
$drcr = $locale->text('CR');
}
if ($ca->{balance} < 0) {
$balance = sprintf("%.2f", -$ca->{balance});
$drcr = $locale->text('DR');
}
In other words, you could translate it to "Debet" and "Credit" if those
are the terms used in the Netherlands (and Belgium).
(I'll correct this in the danish translation as well...)
> Deposit => Is this something you receive???
Yeah, I think Dieter wanted a different wording of "payment" for selling
and buying...
> GIFI Code => ???
I looked that up earlier, and this is my note for muyself:
gifi: General Index of Financial Information (Canadian way to collect
financial information in a codified format)
Kind regards,
Jonas
--
Jonas Smedegaard <jo...@jo...> http://www.jones.dk/~jonas/
IT-guide dr. Jones <dr...@jo...> http://dr.jones.dk/ +45 40843136
Debian GNU/Linux <js...@de...> http://www.debian.org/
GnuPG(1024D/C02440B8): 9A98 C6EB C098 9ED0 3085 ECA9 9FB0 DB32 C024 40B8
GNU GPL: "The source will be with you... always."
|