Changed the charge/receipt comments slightly to help clarify the intent.

git-svn-id: file:///svn-source/pmgr/branches/initial_20090526@18 97e9348a-65ac-dc4b-aefc-98561f571b83
This commit is contained in:
abijah
2009-05-28 06:42:20 +00:00
parent 0ef51ee30f
commit 0021eb1768

View File

@@ -651,7 +651,7 @@ foreach $row (@$result) {
datefmt($row->{'ChargeDate'}), datefmt($row->{'EndDate'}),
$row->{'ChargeAmount'}, $row->{'TaxAmount'},
$row->{'ChargeAmount'} + $row->{'TaxAmount'},
"ChargeID #".$row->{'ChargeID'})
"SiteLink Charges.ChargeID #".$row->{'ChargeID'})
)) . ")";
query($db_handle, $query) || die("Unable to insert");
@@ -680,7 +680,7 @@ foreach $row (@$result) {
VALUES (" .
join(", ", map({defined $_ ? "'$_'" : "NULL"}
($rid, datefmt($row->{'ReceiptDate'}),
"ReceiptNum #".$row->{'ReceiptNum'})
"SiteLink Receipts.ReceiptNum #".$row->{'ReceiptNum'})
)) . ")";
query($db_handle, $query) || die("Unable to insert");
}