[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SF.net SVN: ledger-smb:[4948] branches/1.3
- Subject: SF.net SVN: ledger-smb:[4948] branches/1.3
- From: ..hidden..
- Date: Tue, 26 Jun 2012 09:06:44 +0000
Revision: 4948
http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=4948&view=rev
Author: einhverfr
Date: 2012-06-26 09:06:44 +0000 (Tue, 26 Jun 2012)
Log Message:
-----------
Adding access to parts.image to sales order, invoice, quote templates
Modified Paths:
--------------
branches/1.3/Changelog
branches/1.3/LedgerSMB/IS.pm
branches/1.3/UI/Contact/contact.html
branches/1.3/bin/io.pl
Modified: branches/1.3/Changelog
===================================================================
--- branches/1.3/Changelog 2012-06-25 10:55:22 UTC (rev 4947)
+++ branches/1.3/Changelog 2012-06-26 09:06:44 UTC (rev 4948)
@@ -8,6 +8,8 @@
* Fixed menu anomilies due to menu grants on sub-menus (Chris T)
* Fixed unable to change order or delete it (Chris T, 3535856)
* Fixed invalid syntax for integer on saving employee (Chris T)
+* Cleaned up dates lines on employee screen (Chris T)
+* Added access to parts.image for ar invoice, order, quote templates (Chris T)
Changelog for 1.3.19
* New link for customer/vendor when not a dropdown (Chris T)
Modified: branches/1.3/LedgerSMB/IS.pm
===================================================================
--- branches/1.3/LedgerSMB/IS.pm 2012-06-25 10:55:22 UTC (rev 4947)
+++ branches/1.3/LedgerSMB/IS.pm 2012-06-26 09:06:44 UTC (rev 4948)
@@ -2275,7 +2275,7 @@
p.income_accno_id, p.expense_accno_id, pg.partsgroup,
p.partsgroup_id, p.partnumber AS sku, p.weight,
t1.description AS translation,
- t2.description AS grouptranslation
+ t2.description AS grouptranslation, p.image
FROM parts p
LEFT JOIN partsgroup pg ON (pg.id = p.partsgroup_id)
LEFT JOIN translation t1
Modified: branches/1.3/UI/Contact/contact.html
===================================================================
--- branches/1.3/UI/Contact/contact.html 2012-06-25 10:55:22 UTC (rev 4947)
+++ branches/1.3/UI/Contact/contact.html 2012-06-26 09:06:44 UTC (rev 4948)
@@ -175,7 +175,7 @@
} ?>
</div>
</div>
-<div id="employee_div">
+<div id="employee_div" class="input_line">
<div class="input_group">
<?lsmb PROCESS input element_data = {
label = text('Employee Number')
@@ -195,7 +195,8 @@
value_attr = 'entity_id'
} ?>
</div>
-<div id="hr_dates_div">
+</div>
+<div id="hr_dates_div" class="input_line">
<div class="input_group">
<?lsmb PROCESS input element_data = {
label = text('DOB')
Modified: branches/1.3/bin/io.pl
===================================================================
--- branches/1.3/bin/io.pl 2012-06-25 10:55:22 UTC (rev 4947)
+++ branches/1.3/bin/io.pl 2012-06-26 09:06:44 UTC (rev 4948)
@@ -380,7 +380,7 @@
|;
for (
- qw(orderitems_id id bin weight listprice lastcost taxaccounts pricematrix sku onhand assembly inventory_accno_id income_accno_id expense_accno_id invoice_id precision)
+ qw(image orderitems_id id bin weight listprice lastcost taxaccounts pricematrix sku onhand assembly inventory_accno_id income_accno_id expense_accno_id invoice_id precision)
)
{
$form->hide_form("${_}_$i");
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.