[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SF.net SVN: ledger-smb:[5490] branches/1.3
- Subject: SF.net SVN: ledger-smb:[5490] branches/1.3
- From: ..hidden..
- Date: Sun, 06 Jan 2013 02:52:21 +0000
Revision: 5490
http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=5490&view=rev
Author: einhverfr
Date: 2013-01-06 02:52:21 +0000 (Sun, 06 Jan 2013)
Log Message:
-----------
Improvements to customer history filter screen
Modified Paths:
--------------
branches/1.3/Changelog
branches/1.3/UI/Contact/history_filter.html
Property Changed:
----------------
branches/1.3/
Property changes on: branches/1.3
___________________________________________________________________
Modified: svn:mergeinfo
- /trunk:3711-3712,5424,5446-5448,5451,5457,5459,5461,5466,5473,5475,5482-5483,5485,5487
+ /trunk:3711-3712,5424,5446-5448,5451,5457,5459,5461,5466,5473,5475,5482-5483,5485,5487,5489
Modified: branches/1.3/Changelog
===================================================================
--- branches/1.3/Changelog 2013-01-06 02:50:47 UTC (rev 5489)
+++ branches/1.3/Changelog 2013-01-06 02:52:21 UTC (rev 5490)
@@ -12,6 +12,7 @@
* Moved to label/button system for deleting lines on invoices (Chris T)
* Fixing extra blank lines showing up on ar/ap trans screen on save (Chris T)
* Changing xetex demos to use Liberation font (Chris T, h/t Erik H)
+* Better appearance of customer history report filter screen (Chris T)
Changelog for 1.3.27
* Detect whether ledgersmb.conf exists during Makefile.PL run and create if
Modified: branches/1.3/UI/Contact/history_filter.html
===================================================================
--- branches/1.3/UI/Contact/history_filter.html 2013-01-06 02:50:47 UTC (rev 5489)
+++ branches/1.3/UI/Contact/history_filter.html 2013-01-06 02:52:21 UTC (rev 5490)
@@ -136,6 +136,27 @@
title = user.dateformat,
label = text('To')
} ?></td>
+ <tr>
+ <th><?lsmb text('Transaction Date') ?></th>
+ <td> <?lsmb
+ INCLUDE input element_data = {
+ name = "from_date",
+ size = "11",
+ type = "text",
+ class = "date",
+ title = user.dateformat,
+ label = text('From')
+ } ;
+ INCLUDE input element_data = {
+ name = "to_date",
+ size = "11",
+ type = "text",
+ class = "date",
+ title = user.dateformat,
+ label = text('To')
+ };
+ label_pos=1 ?></td>
+ </tr>
</table>
</td>
@@ -144,21 +165,10 @@
</td>
</tr>
- <tr>
- <td>
- <table>
-
-
-
- <tr>
- <td></td>
- <td>
+ </table>
<table>
- <tr>
- <td>
- <table>
- <tr>
- <td>
+ <tr><th rowspan="7"><?lsmb text("Include in Report") ?></th>
+ <td>
<?lsmb INCLUDE input element_data = {
checked = 'CHECKED',
name = 'type',
@@ -167,8 +177,7 @@
value = 'i'
label = text('Invoices'),
} ?></td>
- </tr>
- <tr>
+ <td>
<?lsmb INCLUDE input element_data = {
name = 'type',
type = 'radio',
@@ -176,9 +185,8 @@
value = 'o'
label = text('Orders'),
} ?></td>
- </tr>
- <tr>
- <tr>
+ </td>
+ <td>
<?lsmb INCLUDE input element_data = {
name = 'type',
type = 'radio',
@@ -187,68 +195,10 @@
label = text('Quotations'),
} ?></td>
- </tr>
- </table>
- </td>
- <td>
- <table>
- <tr>
- <th><?lsmb text('From') ?></th>
- <td> <?lsmb
- INCLUDE input element_data = {
- name = "from_date",
- size = "11",
- type = "text",
- class = "date",
- title = user.dateformat,
- label = text('To')
- } ?></td>
- <th><?lsmb text('To') ?></th>
- <td><?lsmb
- INCLUDE input element_data = {
- name = "to_date",
- size = "11",
- type = "text",
- class = "date",
- title = user.dateformat,
- label = text('To')
- } ?></td>
- </tr>
- <tr>
- <td></td>
- <td colspan="3">
- <?lsmb
- INCLUDE input element_data = {
- type = 'checkbox',
- name = 'inc_open',
- value = '1',
- label = text('Open'),
- class = 'checkbox',
- checked = 'CHECKED'
- };
- INCLUDE input element_data = {
- type = 'checkbox',
- name = 'inc_closed',
- value = '1',
- label = text('Closed'),
- class = 'checkbox',
- checked = 'CHECKED'
- }; ?>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </td>
- </tr>
+ </tr>
<tr>
- <th align="right" nowrap><?lsmb Text('Include in Report') ?></th>
- <td>
- <table>
- <tr>
<td><?lsmb
INCLUDE input element_data= {
label = text('Summary'),
@@ -267,6 +217,28 @@
class = 'radio',
} ?></td>
</tr>
+ <tr>
+ <td>
+ <?lsmb
+ INCLUDE input element_data = {
+ type = 'checkbox',
+ name = 'inc_open',
+ value = '1',
+ label = text('Open'),
+ class = 'checkbox',
+ checked = 'CHECKED'
+ } ?></td>
+ <td><?lsmb
+ INCLUDE input element_data = {
+ type = 'checkbox',
+ name = 'inc_closed',
+ value = '1',
+ label = text('Closed'),
+ class = 'checkbox',
+ checked = 'CHECKED'
+ }; ?>
+ </td>
+ </tr>
<tr>
<td><?lsmb
INCLUDE input element_data = {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.