[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SF.net SVN: ledger-smb:[2441] trunk
- Subject: SF.net SVN: ledger-smb:[2441] trunk
- From: ..hidden..
- Date: Tue, 03 Feb 2009 22:20:47 +0000
Revision: 2441
http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=2441&view=rev
Author: einhverfr
Date: 2009-02-03 22:20:47 +0000 (Tue, 03 Feb 2009)
Log Message:
-----------
Removing approve button for now
Modified Paths:
--------------
trunk/UI/reconciliation/report.html
trunk/sql/modules/Reconciliaton.sql
Modified: trunk/UI/reconciliation/report.html
===================================================================
--- trunk/UI/reconciliation/report.html 2009-02-03 22:01:07 UTC (rev 2440)
+++ trunk/UI/reconciliation/report.html 2009-02-03 22:20:47 UTC (rev 2441)
@@ -51,8 +51,3 @@
<?lsmb END ?>
</table>
-<?lsmb IF NOT error?>
-<form name="approval" method="POST" action="/reconciliation.pl">
- <input type="submit" name="action" value="Approve" />
-</form>
-<?lsmb END ?>
Modified: trunk/sql/modules/Reconciliaton.sql
===================================================================
--- trunk/sql/modules/Reconciliaton.sql 2009-02-03 22:01:07 UTC (rev 2440)
+++ trunk/sql/modules/Reconciliaton.sql 2009-02-03 22:20:47 UTC (rev 2441)
@@ -9,13 +9,13 @@
CREATE TABLE cr_report_line (
id bigserial primary key not null,
report_id int NOT NULL references cr_report(id),
- scn text not null, -- SCN is the check #
+ scn text, -- SCN is the check #
their_balance numeric,
our_balance numeric,
errorcode INT,
"user" int references entity(id) not null, -- why ois this not an entity reference?
corrections INT NOT NULL DEFAULT 0,
- clear_time TIMESTAMP NOT NULL,
+ clear_time date,
insert_time TIMESTAMPTZ NOT NULL DEFAULT now(),
ledger_id int REFERENCES acc_trans(entry_id),
voucher_id int REFERENCES voucher(id),
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.