[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SF.net SVN: ledger-smb:[5658] branches/1.3
- Subject: SF.net SVN: ledger-smb:[5658] branches/1.3
- From: ..hidden..
- Date: Tue, 12 Feb 2013 15:22:04 +0000
Revision: 5658
http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=5658&view=rev
Author: einhverfr
Date: 2013-02-12 15:22:03 +0000 (Tue, 12 Feb 2013)
Log Message:
-----------
merging css hooks from trunk. This allows, with no behavioral change to code, most fields on sales/purchase order screens to be hidden
Modified Paths:
--------------
branches/1.3/Changelog
branches/1.3/bin/io.pl
branches/1.3/bin/oe.pl
Property Changed:
----------------
branches/1.3/
branches/1.3/Changelog
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,5489,5495-5496,5515,5519,5524,5526,5528-5529,5533,5544-5546,5548-5549,5554-5555,5563,5565,5569,5576,5579,5589-5590,5597,5602-5603,5608,5610,5615,5617,5620,5622,5633-5634,5649-5650
+ /trunk:3711-3712,5424,5446-5448,5451,5457,5459,5461,5466,5473,5475,5482-5483,5485,5487,5489,5495-5496,5515,5519,5524,5526,5528-5529,5533,5544-5546,5548-5549,5554-5555,5563,5565,5569,5576,5579,5589-5590,5597,5602-5603,5608,5610,5615,5617,5620,5622,5633-5634,5649-5650,5655-5657
Modified: branches/1.3/Changelog
===================================================================
--- branches/1.3/Changelog 2013-02-12 15:17:18 UTC (rev 5657)
+++ branches/1.3/Changelog 2013-02-12 15:22:03 UTC (rev 5658)
@@ -10,6 +10,7 @@
* Updated INSTALL with "Actions for Fedora 18" (Havard S)
* Fixed print and save buttons on orders (Chris T, 3602071)
* Fixing history report blank when no fx (Chris T, 3602084)
+* More CSS hooks (Chris T)
Chris T is Chris Travers
Havard S is Havard Sorli
Property changes on: branches/1.3/Changelog
___________________________________________________________________
Modified: svn:mergeinfo
- /trunk/Changelog:3711-3712,5424,5446-5448,5451,5457,5459,5461,5466,5473,5475,5482-5483,5485,5487,5489,5495-5496,5513,5515,5519,5524,5529,5548,5563,5565,5578-5579,5581,5583,5587,5590,5593,5595,5597,5608,5610,5612,5615,5617,5620,5622,5626,5633-5634,5649-5650,5652
+ /trunk/Changelog:3711-3712,5424,5446-5448,5451,5457,5459,5461,5466,5473,5475,5482-5483,5485,5487,5489,5495-5496,5513,5515,5519,5524,5529,5548,5563,5565,5578-5579,5581,5583,5587,5590,5593,5595,5597,5608,5610,5612,5615,5617,5620,5622,5626,5633-5634,5649-5650,5652,5655
Modified: branches/1.3/bin/io.pl
===================================================================
--- branches/1.3/bin/io.pl 2013-02-12 15:17:18 UTC (rev 5657)
+++ branches/1.3/bin/io.pl 2013-02-12 15:22:03 UTC (rev 5658)
@@ -133,14 +133,14 @@
if ( $form->{type} eq "sales_order" ) {
push @column_index, "ship";
$column_data{ship} =
- qq|<th class=listheading align=center width="auto">|
+ qq|<th class="listheading ship" align=center width="auto">|
. $locale->text('Ship')
. qq|</th>|;
}
if ( $form->{type} eq "purchase_order" ) {
push @column_index, "ship";
$column_data{ship} =
- qq|<th class=listheading align=center width="auto">|
+ qq|<th class="listheading ship" align=center width="auto">|
. $locale->text('Recd')
. qq|</th>|;
}
@@ -184,28 +184,28 @@
for ( split / /, $form->{taxaccounts} ) { $form->{"${_}_base"} = 0 }
$column_data{runningnumber} =
- qq|<th class=listheading nowrap>| . $locale->text('Item') . qq|</th>|;
+ qq|<th class="listheading runningnumber" nowrap>| . $locale->text('Item') . qq|</th>|;
$column_data{partnumber} =
- qq|<th class=listheading nowrap>| . $locale->text('Number') . qq|</th>|;
+ qq|<th class="listheading partnumber" nowrap>| . $locale->text('Number') . qq|</th>|;
$column_data{description} =
- qq|<th class=listheading nowrap>|
+ qq|<th class="listheading description" nowrap class="description">|
. $locale->text('Description')
. qq|</th>|;
$column_data{qty} =
- qq|<th class=listheading nowrap>| . $locale->text('Qty') . qq|</th>|;
+ qq|<th class="listheading qty" nowrap>| . $locale->text('Qty') . qq|</th>|;
$column_data{unit} =
- qq|<th class=listheading nowrap>| . $locale->text('Unit') . qq|</th>|;
+ qq|<th class="listheading unit" nowrap>| . $locale->text('Unit') . qq|</th>|;
$column_data{sellprice} =
- qq|<th class=listheading nowrap>| . $locale->text('Price') . qq|</th>|;
- $column_data{discount} = qq|<th class=listheading>%</th>|;
+ qq|<th class="listheading sellprice" nowrap>| . $locale->text('Price') . qq|</th>|;
+ $column_data{discount} = qq|<th class="listheading discount">%</th>|;
$column_data{linetotal} =
- qq|<th class=listheading nowrap>| . $locale->text('Extended') . qq|</th>|;
+ qq|<th class="listheading linetotal" nowrap>| . $locale->text('Extended') . qq|</th>|;
$column_data{bin} =
- qq|<th class=listheading nowrap>| . $locale->text('Bin') . qq|</th>|;
+ qq|<th class="listheading bin" nowrap>| . $locale->text('Bin') . qq|</th>|;
$column_data{onhand} =
- qq|<th class=listheading nowrap>| . $locale->text('OH') . qq|</th>|;
+ qq|<th class="listheading onhand" nowrap>| . $locale->text('OH') . qq|</th>|;
$column_data{taxformcheck} =
- qq|<th class=listheading nowrap>| . $locale->text('TaxForm') . qq|</th>|;
+ qq|<th class="listheading taxform" nowrap>| . $locale->text('TaxForm') . qq|</th>|;
print qq|
<tr>
<td>
@@ -339,7 +339,7 @@
$column_data{runningnumber} =
- qq|<td><input name="runningnumber_$i" size=3 value=$i></td>|;
+ qq|<td class="runningnumber"><input name="runningnumber_$i" size=3 value=$i></td>|;
if ($form->{"partnumber_$i"}){
$column_data{partnumber} =
qq|<td> $form->{"partnumber_$i"}
@@ -349,34 +349,34 @@
value="$form->{"partnumber_$i"}" /></td>|;
} else {
$column_data{partnumber} =
-qq|<td><input name="partnumber_$i" size=15 value="$form->{"partnumber_$i"}" accesskey="$i" title="[Alt-$i]">$skunumber</td>|;
+qq|<td class="partnumber"><input name="partnumber_$i" size=15 value="$form->{"partnumber_$i"}" accesskey="$i" title="[Alt-$i]">$skunumber</td>|;
}
$column_data{qty} =
-qq|<td align=right><input name="qty_$i" title="$form->{"onhand_$i"}" size="5" value="|
+qq|<td align=right class="qty"><input name="qty_$i" title="$form->{"onhand_$i"}" size="5" value="|
. $form->format_amount( \%myconfig, $form->{"qty_$i"} )
. qq|"></td>|;
$column_data{ship} =
- qq|<td align=right><input name="ship_$i" size="5" value="|
+ qq|<td align=right class="ship"><input name="ship_$i" size="5" value="|
. $form->format_amount( \%myconfig, $form->{"ship_$i"} )
. qq|"></td>|;
$column_data{unit} =
- qq|<td><input name="unit_$i" size=5 value="$form->{"unit_$i"}"></td>|;
+ qq|<td class="unit"><input name="unit_$i" size=5 value="$form->{"unit_$i"}"></td>|;
$column_data{sellprice} =
- qq|<td align=right><input name="sellprice_$i" size="9" value="|
+ qq|<td align=right class="sellprice"><input name="sellprice_$i" size="9" value="|
. $form->format_amount( \%myconfig, $form->{"sellprice_$i"},
$form->{"precision_$i"} )
. qq|"></td>|;
$column_data{discount} =
- qq|<td align=right><input name="discount_$i" size="3" value="|
+ qq|<td align=right class="discount"><input name="discount_$i" size="3" value="|
. $form->format_amount( \%myconfig, $form->{"discount_$i"} )
. qq|"></td>|;
$column_data{linetotal} =
- qq|<td align=right>|
+ qq|<td align=right class="linetotal">|
. $form->format_amount( \%myconfig, $linetotal, 2 )
. qq|</td>|;
- $column_data{bin} = qq|<td>$form->{"bin_$i"}</td>|;
- $column_data{onhand} = qq|<td>$form->{"onhand_$i"}</td>|;
- $column_data{taxformcheck} = qq|<td><input type="checkbox" name="taxformcheck_$i" value="1" $taxchecked></td>|;
+ $column_data{bin} = qq|<td class="bin">$form->{"bin_$i"}</td>|;
+ $column_data{onhand} = qq|<td class="onhand">$form->{"onhand_$i"}</td>|;
+ $column_data{taxformcheck} = qq|<td class="taxform"><input type="checkbox" name="taxformcheck_$i" value="1" $taxchecked></td>|;
print qq|
<tr valign=top>|;
@@ -438,12 +438,12 @@
# print second and third row
print qq|
- <tr valign=top>
+ <tr valign=top class="ext2">
$delivery
$notes
$serial
</tr>
- <tr valign=top>
+ <tr valign=top class="ext3">
<td colspan=$colspan>
$project
$partsgroup
@@ -495,19 +495,19 @@
qw(ndx partnumber description partsgroup onhand sellprice);
}
- $column_data{ndx} = qq|<th> </th>|;
+ $column_data{ndx} = qq|<th class="listheading runningnumber"> </th>|;
$column_data{partnumber} =
- qq|<th class=listheading>| . $locale->text('Number') . qq|</th>|;
+ qq|<th class="listheading partnumber">| . $locale->text('Number') . qq|</th>|;
$column_data{sku} =
- qq|<th class=listheading>| . $locale->text('SKU') . qq|</th>|;
+ qq|<th class="listheading sku">| . $locale->text('SKU') . qq|</th>|;
$column_data{description} =
- qq|<th class=listheading>| . $locale->text('Description') . qq|</th>|;
+ qq|<th class="listheading description">| . $locale->text('Description') . qq|</th>|;
$column_data{partsgroup} =
- qq|<th class=listheading>| . $locale->text('Group') . qq|</th>|;
+ qq|<th class="listheading partsgroup">| . $locale->text('Group') . qq|</th>|;
$column_data{sellprice} =
- qq|<th class=listheading>| . $locale->text('Price') . qq|</th>|;
+ qq|<th class="listheading sellprice">| . $locale->text('Price') . qq|</th>|;
$column_data{onhand} =
- qq|<th class=listheading>| . $locale->text('Qty') . qq|</th>|;
+ qq|<th class="listheading onhand">| . $locale->text('Qty') . qq|</th>|;
$exchangerate = ( $form->{exchangerate} ) ? $form->{exchangerate} : 1;
Modified: branches/1.3/bin/oe.pl
===================================================================
--- branches/1.3/bin/oe.pl 2013-02-12 15:17:18 UTC (rev 5657)
+++ branches/1.3/bin/oe.pl 2013-02-12 15:22:03 UTC (rev 5658)
@@ -364,7 +364,7 @@
$form->{exchangerate} =
$form->format_amount( \%myconfig, $form->{exchangerate} );
- $exchangerate = qq|<tr>|;
+ $exchangerate = qq|<tr id="exchangerate-row">|;
$exchangerate .= qq|
<th align=right nowrap>| . $locale->text('Currency') . qq|</th>
<td><select name=currency>$form->{selectcurrency}</select></td> |
@@ -401,7 +401,7 @@
$vclabel = $locale->text($vclabel);
$terms = qq|
- <tr>
+ <tr id="terms-row">
<th align=right nowrap>| . $locale->text('Terms') . qq|</th>
<td nowrap><input name=terms size="3" maxlength="3" value=$form->{terms}> |
. $locale->text('days')
@@ -411,7 +411,7 @@
if ( $form->{business} ) {
$business = qq|
- <tr>
+ <tr class="business-row">
<th align=right nowrap>| . $locale->text('Business') . qq|</th>
<td colspan=3>$form->{business}
|;
@@ -426,20 +426,20 @@
if ( $form->{type} !~ /_quotation$/ ) {
$ordnumber = qq|
- <tr>
+ <tr class="ordnumber-row">
<th width=70% align=right nowrap>| . $locale->text('Order Number') . qq|</th>
<td><input name=ordnumber size=20 value="$form->{ordnumber}"></td>
<input type=hidden name=quonumber value="$form->{quonumber}">
</tr>
- <tr>
+ <tr class="transdate-row">
<th align=right nowrap>| . $locale->text('Order Date') . qq|</th>
<td><input class="date" name=transdate size=11 title="$myconfig{dateformat}" value=$form->{transdate}></td>
</tr>
- <tr>
+ <tr class="reqdate-row">
<th align=right nowrap=true>| . $locale->text('Required by') . qq|</th>
<td><input class="date" name=reqdate size=11 title="$myconfig{dateformat}" value=$form->{reqdate}></td>
</tr>
- <tr>
+ <tr class="ponunber-row">
<th align=right nowrap>| . $locale->text('PO Number') . qq|</th>
<td><input name=ponumber size=20 value="$form->{ponumber}"></td>
</tr>
@@ -451,7 +451,7 @@
<tr>
<td></td>
<td colspan=3>
- <table>
+ <table class="creditlimit">
<tr>
<th align=right nowrap>| . $locale->text('Credit Limit') . qq|</th>
<td>|
@@ -465,7 +465,7 @@
</tr>|;
if ($form->{entity_control_code}){
$creditremaining .= qq|
- <tr>
+ <tr class="control-code-field">
<th align="right" nowrap>| .
$locale->text('Entity Code') . qq|</th>
<td colspan="2">$form->{entity_control_code}</td>
@@ -488,7 +488,7 @@
: $locale->text('Required by');
if ( $form->{type} eq 'sales_quotation' ) {
$ordnumber = qq|
- <tr>
+ <tr class="quonumber-row">
<th width=70% align=right nowrap>|
. $locale->text('Quotation Number')
. qq|</th>
@@ -499,7 +499,7 @@
}
else {
$ordnumber = qq|
- <tr>
+ <tr class="rfqnumber-row">
<th width=70% align=right nowrap>| . $locale->text('RFQ Number') . qq|</th>
<td><input name=quonumber size=20 value="$form->{quonumber}"></td>
<input type=hidden name=ordnumber value="$form->{ordnumber}">
@@ -510,7 +510,7 @@
}
$ordnumber .= qq|
- <tr>
+ <tr class="transdate-row">
<th align=right nowrap>| . $locale->text('Quotation Date') . qq|</th>
<td><input class="date" name=transdate size=11 title="$myconfig{dateformat}" value=$form->{transdate}></td>
</tr>
@@ -537,7 +537,7 @@
}
$department = qq|
- <tr>
+ <tr class="department-row">
<th align="right" nowrap>| . $locale->text('Department') . qq|</th>
<td colspan=3><select name=department>$form->{selectdepartment}</select>
<input type=hidden name=selectdepartment value="|
@@ -553,7 +553,7 @@
if ( $form->{type} eq 'sales_order' ) {
if ( $form->{selectemployee} ) {
$employee = qq|
- <tr>
+ <tr class="employee-row">
<th align=right nowrap>| . $locale->text('Salesperson') . qq|</th>
<td><select name=employee>$form->{selectemployee}</select></td>
<input type=hidden name=selectemployee value="|
@@ -565,7 +565,7 @@
else {
if ( $form->{selectemployee} ) {
$employee = qq|
- <tr>
+ <tr class="employee-row">
<th align=right nowrap>| . $locale->text('Employee') . qq|</th>
<td><select name=employee>$form->{selectemployee}</select></td>
<input type=hidden name=selectemployee value="|
@@ -630,11 +630,11 @@
$business
$department
$exchangerate
- <tr>
+ <tr class="shippingpoint-row">
<th align=right>| . $locale->text('Shipping Point') . qq|</th>
<td colspan=3><input name=shippingpoint size=35 value="$form->{shippingpoint}"></td>
</tr>
- <tr>
+ <tr class="shipvia-row">
<th align=right>| . $locale->text('Ship via') . qq|</th>
<td colspan=3><input name=shipvia size=35 value="$form->{shipvia}"></td>
</tr>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.