[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

SF.net SVN: ledger-smb:[5995] branches/1.3



Revision: 5995
          http://sourceforge.net/p/ledger-smb/code/5995
Author:   pongracz
Date:     2013-08-30 16:49:11 +0000 (Fri, 30 Aug 2013)
Log Message:
-----------
Additional element on the AR/AP forms: Invoice/Transaction creation date. On sales invoice it is readonly, default is now(). This is different than Transdate and Due date, but not effect to the financial data/ledger. This is related to r5992. There is no connection between database and screen elements, but visually appears.

Revision Links:
--------------
    http://sourceforge.net/p/ledger-smb/code/5992

Modified Paths:
--------------
    branches/1.3/UI/am-defaults.html
    branches/1.3/bin/aa.pl
    branches/1.3/bin/ir.pl
    branches/1.3/bin/is.pl

Property Changed:
----------------
    branches/1.3/LedgerSMB/RP.pm
    branches/1.3/UI/
    branches/1.3/UI/am-defaults.html
    branches/1.3/bin/
    branches/1.3/bin/aa.pl
    branches/1.3/bin/ir.pl
    branches/1.3/bin/is.pl

Index: branches/1.3/LedgerSMB/RP.pm
===================================================================
--- branches/1.3/LedgerSMB/RP.pm	2013-08-30 12:30:24 UTC (rev 5994)
+++ branches/1.3/LedgerSMB/RP.pm	2013-08-30 16:49:11 UTC (rev 5995)

Property changes on: branches/1.3/LedgerSMB/RP.pm
___________________________________________________________________
Modified: svn:text-time
## -1 +1 ##
-2013-08-30T12:21:40.000000Z
+2013-08-30T16:39:19.000000Z
\ No newline at end of property
Modified: svn:unix-mode
## -1 +1 ##
-0600
+0770
\ No newline at end of property
Modified: svn:owner
## -1 +1 ##
-0 root
+33 www-data
\ No newline at end of property
Modified: svn:group
## -1 +1 ##
-0 root
+33 www-data
\ No newline at end of property
Index: branches/1.3/UI
===================================================================
--- branches/1.3/UI	2013-08-30 12:30:24 UTC (rev 5994)
+++ branches/1.3/UI	2013-08-30 16:49:11 UTC (rev 5995)

Property changes on: branches/1.3/UI
___________________________________________________________________
Modified: svn:text-time
## -1 +1 ##
-2013-08-29T18:10:18.458922Z
+2013-08-30T14:05:45.287859Z
\ No newline at end of property
Modified: branches/1.3/UI/am-defaults.html
===================================================================
--- branches/1.3/UI/am-defaults.html	2013-08-30 12:30:24 UTC (rev 5994)
+++ branches/1.3/UI/am-defaults.html	2013-08-30 16:49:11 UTC (rev 5995)
@@ -113,6 +113,7 @@
       <?lsmb FOREACH textbox IN default_textboxes ?>
       <tr><th align="right" nowrap="nowrap"><?lsmb textbox.label ?></th>
           <td><input name="<?lsmb textbox.name ?>" size="40" 
+                    <?lsmb IF textbox.name == 'sinumber' ?>readonly="readonly"<?lsmb END ?>
                      value="<?lsmb form.${textbox.name} ?>" />
           </td>
       </tr>


Property changes on: branches/1.3/UI/am-defaults.html
___________________________________________________________________
Added: svn:text-time
## -0,0 +1 ##
+2013-08-30T13:59:14.033740Z
\ No newline at end of property
Added: svn:unix-mode
## -0,0 +1 ##
+0600
\ No newline at end of property
Added: svn:owner
## -0,0 +1 ##
+0 root
\ No newline at end of property
Added: svn:group
## -0,0 +1 ##
+0 root
\ No newline at end of property
Index: branches/1.3/bin
===================================================================
--- branches/1.3/bin	2013-08-30 12:30:24 UTC (rev 5994)
+++ branches/1.3/bin	2013-08-30 16:49:11 UTC (rev 5995)

Property changes on: branches/1.3/bin
___________________________________________________________________
Modified: svn:text-time
## -1 +1 ##
-2013-08-29T17:24:06.117860Z
+2013-08-30T14:18:39.198944Z
\ No newline at end of property
Modified: branches/1.3/bin/aa.pl
===================================================================
--- branches/1.3/bin/aa.pl	2013-08-30 12:30:24 UTC (rev 5994)
+++ branches/1.3/bin/aa.pl	2013-08-30 16:49:11 UTC (rev 5995)
@@ -675,6 +675,10 @@
 		<th align=right nowrap>| . $locale->text('Order Number') . qq|</th>
 		<td><input name=ordnumber size=20 value="$form->{ordnumber}"></td>
 	      </tr>
+              <tr>
+                <th align=right nowrap>| . $locale->text('Invoice Created') . qq|</th>
+                <td><input name=crdate size=11 title="($myconfig{'dateformat'})" value=$form->{crdate}></td>
+              </tr>
 	      <tr>
 		<th align=right nowrap>| . $locale->text('Invoice Date') . qq|</th>
 		<td><input name=transdate size=11 title="($myconfig{'dateformat'})" value=$form->{transdate}></td>


Property changes on: branches/1.3/bin/aa.pl
___________________________________________________________________
Added: svn:text-time
## -0,0 +1 ##
+2013-08-30T14:18:36.712925Z
\ No newline at end of property
Added: svn:unix-mode
## -0,0 +1 ##
+0600
\ No newline at end of property
Added: svn:owner
## -0,0 +1 ##
+0 root
\ No newline at end of property
Added: svn:group
## -0,0 +1 ##
+0 root
\ No newline at end of property
Modified: branches/1.3/bin/ir.pl
===================================================================
--- branches/1.3/bin/ir.pl	2013-08-30 12:30:24 UTC (rev 5994)
+++ branches/1.3/bin/ir.pl	2013-08-30 16:49:11 UTC (rev 5995)
@@ -511,6 +511,10 @@
 		<td><input name=ordnumber size=20 value="$form->{ordnumber}"></td>
 <input type=hidden name=quonumber value="$form->{quonumber}">
 	      </tr>
+              <tr>
+                <th align=right nowrap>| . $locale->text('Invoice Created') . qq|</th>
+                <td><input class="date" name=crdate size=11 title="$myconfig{dateformat}" value=$form->{crdate}></td>
+              </tr>
 	      <tr>
 		<th align=right nowrap>| . $locale->text('Invoice Date') . qq|</th>
 		<td><input class="date" name=transdate size=11 title="$myconfig{dateformat}" value=$form->{transdate}></td>


Property changes on: branches/1.3/bin/ir.pl
___________________________________________________________________
Added: svn:text-time
## -0,0 +1 ##
+2013-08-30T14:22:08.364598Z
\ No newline at end of property
Added: svn:unix-mode
## -0,0 +1 ##
+0600
\ No newline at end of property
Added: svn:owner
## -0,0 +1 ##
+0 root
\ No newline at end of property
Added: svn:group
## -0,0 +1 ##
+0 root
\ No newline at end of property
Modified: branches/1.3/bin/is.pl
===================================================================
--- branches/1.3/bin/is.pl	2013-08-30 12:30:24 UTC (rev 5994)
+++ branches/1.3/bin/is.pl	2013-08-30 16:49:11 UTC (rev 5995)
@@ -260,6 +260,7 @@
 
     $form->{AR} = $form->{AR_1} unless $form->{id};
     $form->{transdate} = $form->{current_date} if (!$form->{transdate});
+    $form->{crdate} = $form->{current_date};
     $form->{locked} =
       ( $form->{revtrans} )
       ? '1'
@@ -574,6 +575,10 @@
 		<td><input name="ordnumber" size="20" value="$form->{ordnumber}"></td>
 <input type=hidden name="quonumber" value="$form->{quonumber}">
 	      </tr>
+	      <tr class="crdate-row">
+		<th align=right>| . $locale->text('Invoice Created') . qq|</th>
+		<td><input class="date" name="crdate" size="11" title="$myconfig{dateformat}" value="$form->{crdate}" readonly></td>
+	      </tr>
 	      <tr class="transdate-row">
 		<th align=right>| . $locale->text('Invoice Date') . qq|</th>
 		<td><input class="date" name="transdate" size="11" title="$myconfig{dateformat}" value="$form->{transdate}"></td>


Property changes on: branches/1.3/bin/is.pl
___________________________________________________________________
Added: svn:text-time
## -0,0 +1 ##
+2013-08-28T17:34:15.000000Z
\ No newline at end of property
Added: svn:unix-mode
## -0,0 +1 ##
+0770
\ No newline at end of property
Added: svn:owner
## -0,0 +1 ##
+33 www-data
\ No newline at end of property
Added: svn:group
## -0,0 +1 ##
+33 www-data
\ No newline at end of property
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.


------------------------------------------------------------------------------
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911&iu=/4140/ostg.clktrk
_______________________________________________
Ledger-smb-commits mailing list
..hidden..
https://lists.sourceforge.net/lists/listinfo/ledger-smb-commits