details: /erp/devel/main/rev/d05493244050 changeset: 8919:d05493244050 user: Gorka Ion Damián <gorkaion.damian <at> openbravo.com> date: Wed Nov 17 10:49:49 2010 +0100 summary: Added license to static html files.Updated MyOB offline htmls.
details: /erp/devel/main/rev/88539986353a changeset: 8920:88539986353a user: Eduardo Argal Guibert <eduardo.argal <at> openbravo.com> date: Thu Nov 11 18:27:59 2010 +0100 summary: Fixes bug 0015163: Voiding of the Invoice generates wrong accounting details: /erp/devel/main/rev/08569dbf2199 changeset: 8921:08569dbf2199 user: Sivaraman Rajagopal <sivaraman.rajagopal <at> openbravo.com> date: Wed Nov 17 16:07:39 2010 +0530 summary: Fixes issue 15120: Wrong message when creating a debt payment Root-cause: C_DEBT_PAYMENT_TRG is calculating the un-invoiced order quantity by adding up all together. Since we 1 and -1, the summation results 0 which means no order is pending to be invoiced. Hence, 'OrderCompletelyInvoiced' error message is displayed. Solution: It seems negative quantity needs to be carefully handled. When the difference between ordered quantity and invoiced quantity is calculated, we have to consider the absolute value of quantities irrespective of its sign. Impacts: None details: /erp/devel/main/rev/b7bb18bb9d40 changeset: 8922:b7bb18bb9d40 user: RM packaging bot <staff.rm <at> openbravo.com> date: Wed Nov 17 18:41:32 2010 +0000 summary: CI: promote changesets from pi to main diffstat: src-db/database/model/triggers/C_DEBT_PAYMENT_TRG.xml | 2 +- src-db/database/sourcedata/AD_MODULE.xml | 4 +- src/org/openbravo/erpCommon/ad_forms/DocInvoice.java | 24 ++++ web/html/en_US/StaticCommunityBranding-2.50-Basic.html | 20 +++ web/html/en_US/StaticCommunityBranding-2.50-Comm.html | 20 +++ web/html/en_US/StaticCommunityBranding-2.50-STD.html | 20 +++ web/html/en_US/StaticCommunityBranding-MyOB-Basic.html | 51 +++++++-- web/html/en_US/StaticCommunityBranding-MyOB-Basic_files/LogoLeft.png | 0 web/html/en_US/StaticCommunityBranding-MyOB-Basic_files/LogoRight.png | 0 web/html/en_US/StaticCommunityBranding-MyOB-Comm.html | 42 ++++++- web/html/en_US/StaticCommunityBranding-MyOB-Comm_files/LogoLeft.png | 0 web/html/en_US/StaticCommunityBranding-MyOB-Comm_files/LogoRight.png | 0 web/html/en_US/StaticCommunityBranding-MyOB-STD.html | 51 +++++++-- web/html/en_US/StaticCommunityBranding-MyOB-STD_files/LogoLeft.png | 0 web/html/en_US/StaticCommunityBranding-MyOB-STD_files/LogoRight.png | 0 web/html/en_US/img/LogoLeft_Basic.png | 0 web/html/en_US/img/LogoLeft_Pro.png | 0 web/html/en_US/img/LogoRight.png | 0 18 files changed, 201 insertions(+), 33 deletions(-) diffs (truncated from 412 to 300 lines): diff -r f3d0c13a03be -r b7bb18bb9d40 src-db/database/model/triggers/C_DEBT_PAYMENT_TRG.xml --- a/src-db/database/model/triggers/C_DEBT_PAYMENT_TRG.xml Tue Nov 16 19:00:49 2010 +0100 +++ b/src-db/database/model/triggers/C_DEBT_PAYMENT_TRG.xml Wed Nov 17 18:41:32 2010 +0000 @@ -69,7 +69,7 @@ -- Check if it is totally invoiced SELECT COALESCE(SUM(NOTINVOICED),0) INTO v_Aux - FROM (SELECT (O.QTYORDERED- COALESCE(LL.QTYINVOICED,0)) AS NOTINVOICED + FROM (SELECT (ABS(O.QTYORDERED)- ABS(COALESCE(LL.QTYINVOICED,0))) AS NOTINVOICED FROM C_ORDERLINE O LEFT JOIN (SELECT IL.C_INVOICELINE_ID, IL.QTYINVOICED, IL.C_ORDERLINE_ID FROM C_INVOICELINE IL, C_INVOICE I diff -r f3d0c13a03be -r b7bb18bb9d40 src-db/database/sourcedata/AD_MODULE.xml --- a/src-db/database/sourcedata/AD_MODULE.xml Tue Nov 16 19:00:49 2010 +0100 +++ b/src-db/database/sourcedata/AD_MODULE.xml Wed Nov 17 18:41:32 2010 +0000 @@ -6,7 +6,7 @@ <!--0--> <AD_ORG_ID><![CDATA[0]]></AD_ORG_ID> <!--0--> <ISACTIVE><![CDATA[Y]]></ISACTIVE> <!--0--> <NAME><![CDATA[Core]]></NAME> -<!--0--> <VERSION><![CDATA[2.50.18840]]></VERSION> +<!--0--> <VERSION><![CDATA[2.50.18921]]></VERSION> <!--0--> <DESCRIPTION><![CDATA[Core module is the base one]]></DESCRIPTION> <!--0--> <HELP><![CDATA[Core module is the base one, all developments in core are included as part of the standard Openbravo ERP.]]></HELP> <!--0--> <URL><![CDATA[www.openbravo.com]]></URL> @@ -22,7 +22,7 @@ <!--0--> <ISTRANSLATIONMODULE><![CDATA[N]]></ISTRANSLATIONMODULE> <!--0--> <HASREFERENCEDATA><![CDATA[Y]]></HASREFERENCEDATA> <!--0--> <REFERENCEDATAINFO><![CDATA[Standard document types for orders, invoices, etc. and settings]]></REFERENCEDATAINFO> -<!--0--> <VERSION_LABEL><![CDATA[dev]]></VERSION_LABEL> +<!--0--> <VERSION_LABEL><![CDATA[CI]]></VERSION_LABEL> <!--0--> <ISCOMMERCIAL><![CDATA[N]]></ISCOMMERCIAL> <!--0--></AD_MODULE> diff -r f3d0c13a03be -r b7bb18bb9d40 src/org/openbravo/erpCommon/ad_forms/DocInvoice.java --- a/src/org/openbravo/erpCommon/ad_forms/DocInvoice.java Tue Nov 16 19:00:49 2010 +0100 +++ b/src/org/openbravo/erpCommon/ad_forms/DocInvoice.java Wed Nov 17 18:41:32 2010 +0000 @@ -306,6 +306,12 @@ m_payments[i].C_Currency_ID_From, this.C_Currency_ID, DateAcct, "", conn), "", Fact_Acct_Group_ID, nextSeqNo(SeqNo), DocumentType, conn); } + if ((m_payments == null || m_payments.length == 0) + && (m_debt_payments == null || m_debt_payments.length == 0)) { + fact.createLine(null, getAccountBPartner(C_BPartner_ID, as, true, false, conn), + this.C_Currency_ID, Amounts[AMTTYPE_Gross], "", Fact_Acct_Group_ID, nextSeqNo(SeqNo), + DocumentType, conn); + } // Charge CR log4jDocInvoice.debug("The first create line"); fact.createLine(null, getAccount(AcctServer.ACCTTYPE_Charge, as, conn), C_Currency_ID, "", @@ -366,6 +372,12 @@ m_payments[i].C_Currency_ID_From, this.C_Currency_ID, DateAcct, "", conn), Fact_Acct_Group_ID, nextSeqNo(SeqNo), DocumentType, conn); } + if ((m_payments == null || m_payments.length == 0) + && (m_debt_payments == null || m_debt_payments.length == 0)) { + fact.createLine(null, getAccountBPartner(C_BPartner_ID, as, true, false, conn), + this.C_Currency_ID, "", Amounts[AMTTYPE_Gross], Fact_Acct_Group_ID, nextSeqNo(SeqNo), + DocumentType, conn); + } // Charge DR fact.createLine(null, getAccount(AcctServer.ACCTTYPE_Charge, as, conn), this.C_Currency_ID, getAmount(AcctServer.AMTTYPE_Charge), "", Fact_Acct_Group_ID, nextSeqNo(SeqNo), @@ -423,6 +435,12 @@ m_payments[i].C_Currency_ID_From, this.C_Currency_ID, DateAcct, "", conn), Fact_Acct_Group_ID, nextSeqNo(SeqNo), DocumentType, conn); } + if ((m_payments == null || m_payments.length == 0) + && (m_debt_payments == null || m_debt_payments.length == 0)) { + fact.createLine(null, getAccountBPartner(C_BPartner_ID, as, false, false, conn), + this.C_Currency_ID, "", Amounts[AMTTYPE_Gross], Fact_Acct_Group_ID, nextSeqNo(SeqNo), + DocumentType, conn); + } // Charge DR fact.createLine(null, getAccount(AcctServer.ACCTTYPE_Charge, as, conn), this.C_Currency_ID, getAmount(AcctServer.AMTTYPE_Charge), "", Fact_Acct_Group_ID, nextSeqNo(SeqNo), @@ -486,6 +504,12 @@ m_payments[i].C_Currency_ID_From, this.C_Currency_ID, DateAcct, "", conn), "", Fact_Acct_Group_ID, nextSeqNo(SeqNo), DocumentType, conn); } + if ((m_payments == null || m_payments.length == 0) + && (m_debt_payments == null || m_debt_payments.length == 0)) { + fact.createLine(null, getAccountBPartner(C_BPartner_ID, as, false, false, conn), + this.C_Currency_ID, Amounts[AMTTYPE_Gross], "", Fact_Acct_Group_ID, nextSeqNo(SeqNo), + DocumentType, conn); + } // Charge CR fact.createLine(null, getAccount(AcctServer.ACCTTYPE_Charge, as, conn), this.C_Currency_ID, "", getAmount(AcctServer.AMTTYPE_Charge), Fact_Acct_Group_ID, nextSeqNo(SeqNo), diff -r f3d0c13a03be -r b7bb18bb9d40 web/html/en_US/StaticCommunityBranding-2.50-Basic.html --- a/web/html/en_US/StaticCommunityBranding-2.50-Basic.html Tue Nov 16 19:00:49 2010 +0100 +++ b/web/html/en_US/StaticCommunityBranding-2.50-Basic.html Wed Nov 17 18:41:32 2010 +0000 @@ -1,3 +1,23 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" +"http://www.w3.org/TR/html4/loose.dtd"> +<!-- + ************************************************************************* + * The contents of this file are subject to the Openbravo Public License + * Version 1.0 (the "License"), being the Mozilla Public License + * Version 1.1 with a permitted attribution clause; you may not use this + * file except in compliance with the License. You may obtain a copy of + * the License at http://www.openbravo.com/legal/license.html + * Software distributed under the License is distributed on an "AS IS" + * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the + * License for the specific language governing rights and limitations + * under the License. + * The Original Code is Openbravo ERP. + * The Initial Developer of the Original Code is Openbravo SLU + * All portions are Copyright (C) 2010 Openbravo SLU + * All Rights Reserved. + * Contributor(s): ______________________________________. + ************************************************************************ +--> <html><head> <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"> diff -r f3d0c13a03be -r b7bb18bb9d40 web/html/en_US/StaticCommunityBranding-2.50-Comm.html --- a/web/html/en_US/StaticCommunityBranding-2.50-Comm.html Tue Nov 16 19:00:49 2010 +0100 +++ b/web/html/en_US/StaticCommunityBranding-2.50-Comm.html Wed Nov 17 18:41:32 2010 +0000 @@ -1,3 +1,23 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" +"http://www.w3.org/TR/html4/loose.dtd"> +<!-- + ************************************************************************* + * The contents of this file are subject to the Openbravo Public License + * Version 1.0 (the "License"), being the Mozilla Public License + * Version 1.1 with a permitted attribution clause; you may not use this + * file except in compliance with the License. You may obtain a copy of + * the License at http://www.openbravo.com/legal/license.html + * Software distributed under the License is distributed on an "AS IS" + * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the + * License for the specific language governing rights and limitations + * under the License. + * The Original Code is Openbravo ERP. + * The Initial Developer of the Original Code is Openbravo SLU + * All portions are Copyright (C) 2010 Openbravo SLU + * All Rights Reserved. + * Contributor(s): ______________________________________. + ************************************************************************ +--> <html><head> <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"> diff -r f3d0c13a03be -r b7bb18bb9d40 web/html/en_US/StaticCommunityBranding-2.50-STD.html --- a/web/html/en_US/StaticCommunityBranding-2.50-STD.html Tue Nov 16 19:00:49 2010 +0100 +++ b/web/html/en_US/StaticCommunityBranding-2.50-STD.html Wed Nov 17 18:41:32 2010 +0000 @@ -1,3 +1,23 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" +"http://www.w3.org/TR/html4/loose.dtd"> +<!-- + ************************************************************************* + * The contents of this file are subject to the Openbravo Public License + * Version 1.0 (the "License"), being the Mozilla Public License + * Version 1.1 with a permitted attribution clause; you may not use this + * file except in compliance with the License. You may obtain a copy of + * the License at http://www.openbravo.com/legal/license.html + * Software distributed under the License is distributed on an "AS IS" + * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the + * License for the specific language governing rights and limitations + * under the License. + * The Original Code is Openbravo ERP. + * The Initial Developer of the Original Code is Openbravo SLU + * All portions are Copyright (C) 2010 Openbravo SLU + * All Rights Reserved. + * Contributor(s): ______________________________________. + ************************************************************************ +--> <html><head> <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"> diff -r f3d0c13a03be -r b7bb18bb9d40 web/html/en_US/StaticCommunityBranding-MyOB-Basic.html --- a/web/html/en_US/StaticCommunityBranding-MyOB-Basic.html Tue Nov 16 19:00:49 2010 +0100 +++ b/web/html/en_US/StaticCommunityBranding-MyOB-Basic.html Wed Nov 17 18:41:32 2010 +0000 @@ -1,3 +1,23 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" +"http://www.w3.org/TR/html4/loose.dtd"> +<!-- + ************************************************************************* + * The contents of this file are subject to the Openbravo Public License + * Version 1.0 (the "License"), being the Mozilla Public License + * Version 1.1 with a permitted attribution clause; you may not use this + * file except in compliance with the License. You may obtain a copy of + * the License at http://www.openbravo.com/legal/license.html + * Software distributed under the License is distributed on an "AS IS" + * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the + * License for the specific language governing rights and limitations + * under the License. + * The Original Code is Openbravo ERP. + * The Initial Developer of the Original Code is Openbravo SLU + * All portions are Copyright (C) 2010 Openbravo SLU + * All Rights Reserved. + * Contributor(s): ______________________________________. + ************************************************************************ +--> <html><head> <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"> @@ -61,10 +81,10 @@ <div style="width: 100px; position: relative; float: left; background-color: #f8f8f8; -moz-border-radius: 10px; border-radius: 10px; margin: 8px 8px 3px 7px; display: none;" id="TextCont"> <h1 style="border-bottom: 1px dotted rgb(88, 166, 24); margin-left: 15px; margin-top: 10px; margin-right: 5px;">Take your business to the next level!<br> </h1> - <p style="margin-top: -8px; margin-left: 15px; margin-right: 10px;">Thank you for subscribing. As a Basic Edition customer you experience the -value of easily keeping your ERP up to date, extending it with new -modules, and quickly adapting your screens. -Now you can get even more strategic value by choosing an accredited service provider in Openbravo's global <a href="http://www.openbravo.com/partners/find-partners-support/" target="_blank">partner network</a>. For more information<a href="http://www.openbravo.com/partners/find-partners-support/" target="_blank"></a>, please <a href="http://www.openbravo.com/form/customer/index.php?source=Form - Basic Edition" target="_blank">contact us</a>. <a href="http://exchange.openbravo.com/" target="_blank"><br> + <p style="margin-top: -8px; margin-left: 15px; margin-right: 10px;">Thank you for subscribing. As a Basic Edition customer you experience the +value of easily keeping your ERP up to date, extending it with new +modules, and quickly adapting your screens. +Now you can get even more strategic value by choosing an accredited service provider in Openbravo's global <a href="http://www.openbravo.com/partners/find-partners-support/" target="_blank">partner network</a>. For more information<a href="http://www.openbravo.com/partners/find-partners-support/" target="_blank"></a>, please <a href="http://www.openbravo.com/form/customer/index.php?source=Form - Basic Edition" target="_blank">contact us</a>. <a href="http://exchange.openbravo.com/" target="_blank"><br> </a><a href="http://exchange.openbravo.com/" target="_blank"><br> </a></p> </div> @@ -75,18 +95,27 @@ <div style="float: left; height: 145px; background-color: #f8f8f8; -moz-border-radius: 10px; border-radius: 10px; margin: 3px 6px 6px 8px; display: none;" id="LogoCont"> <h1 style="margin-left: 15px; margin-top: 10px; margin-right: 5px;">Why upgrade to <a href="http://www.openbravo.com/product/erp/" target="_blank">Openbravo Professional Edition?</a></h1> - <div onclick="window.open('http://www.openbravo.com/product/erp/');return false;" style="cursor: pointer;"> + + +<div onclick="window.open('http://www.openbravo.com/product/erp/');return false;" style="cursor: pointer;"> <div style="float: left; width: 270px; height: 92px; background-color: #E6E6E6; -moz-border-radius-topleft: 10px; -moz-border-radius-bottomleft: 10px; border-top-left-radius: 10px; border-bottom-left-radius: 10px; border-top: 1px solid #D8D8D8; border-left: 1px solid #D8D8D8; border-bottom: 1px solid #D8D8D8; margin-left: 10px;" id="LogoLeftCont"> - <img src="StaticCommunityBranding-MyOB-Basic_files/LogoLeft.png" style="border: 0; margin: 6px 0px 0px 8px;" /> - </div> - <div style="float: left; height: 92px; width: 10px; background-color: #E6E6E6; border-top: 1px solid #D8D8D8; border-bottom: 1px solid #D8D8D8;" id="LogoMiddleCont"></div> - <div style="float: left; width: 66px; height: 92px; background-color: #E6E6E6; -moz-border-radius-topright: 10px; -moz-border-radius-bottomright: 10px; border-top-right-radius: 10px; border-bottom-right-radius: 10px; border-top: 1px solid #D8D8D8; border-right: 1px solid #D8D8D8; border-bottom: 1px solid #D8D8D8;" id="LogoRightCont"> + <img src="img/LogoLeft_Pro.png" style="border: 0; margin: 6px 0px 0px 8px;" /> + +</div> + + + +<div style="float: left; height: 92px; width: 10px; background-color: #E6E6E6; border-top: 1px solid #D8D8D8; border-bottom: 1px solid #D8D8D8; font-size: 35px; font-weight: bold; text-align: center; font-family: sans-serif; color: #959595" id="LogoMiddleCont"><div style="margin-top: 25px; display: none;" id="LogoMiddleText">Go Pro!</div></div> + + + +<div style="float: left; width: 66px; height: 92px; background-color: #E6E6E6; -moz-border-radius-topright: 10px; -moz-border-radius-bottomright: 10px; border-top-right-radius: 10px; border-bottom-right-radius: 10px; border-top: 1px solid #D8D8D8; border-right: 1px solid #D8D8D8; border-bottom: 1px solid #D8D8D8;" id="LogoRightCont"> <div style="width: 65px; height: 90px;"> - <img src="StaticCommunityBranding-MyOB-Basic_files/LogoRight.png" style="border: 0; margin: 0px 0px 0px 2px;" /> + <img src="img/LogoRight.png" style="border: 0; margin: 0px 0px 0px 2px;" /> <div> </div> </div> </div> </div> -</body></html> \ No newline at end of file +</body></html> diff -r f3d0c13a03be -r b7bb18bb9d40 web/html/en_US/StaticCommunityBranding-MyOB-Basic_files/LogoLeft.png Binary file web/html/en_US/StaticCommunityBranding-MyOB-Basic_files/LogoLeft.png has changed diff -r f3d0c13a03be -r b7bb18bb9d40 web/html/en_US/StaticCommunityBranding-MyOB-Basic_files/LogoRight.png Binary file web/html/en_US/StaticCommunityBranding-MyOB-Basic_files/LogoRight.png has changed diff -r f3d0c13a03be -r b7bb18bb9d40 web/html/en_US/StaticCommunityBranding-MyOB-Comm.html --- a/web/html/en_US/StaticCommunityBranding-MyOB-Comm.html Tue Nov 16 19:00:49 2010 +0100 +++ b/web/html/en_US/StaticCommunityBranding-MyOB-Comm.html Wed Nov 17 18:41:32 2010 +0000 @@ -1,3 +1,23 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" +"http://www.w3.org/TR/html4/loose.dtd"> +<!-- + ************************************************************************* + * The contents of this file are subject to the Openbravo Public License + * Version 1.0 (the "License"), being the Mozilla Public License + * Version 1.1 with a permitted attribution clause; you may not use this + * file except in compliance with the License. You may obtain a copy of + * the License at http://www.openbravo.com/legal/license.html + * Software distributed under the License is distributed on an "AS IS" + * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the + * License for the specific language governing rights and limitations + * under the License. + * The Original Code is Openbravo ERP. + * The Initial Developer of the Original Code is Openbravo SLU + * All portions are Copyright (C) 2010 Openbravo SLU + * All Rights Reserved. + * Contributor(s): ______________________________________. + ************************************************************************ +--> <html><head> <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"> @@ -64,7 +84,7 @@ <p style="margin-top: -8px; margin-left: 15px; margin-right: 10px;">Discover the power of the Openbravo ecosystem and extend your Openbravo system with modules. <a href="http://wiki.openbravo.com/wiki/ERP/2.50/Configuration_Manual/Personalizing_Openbravo_ERP#Installing_a_module_from_the_Central_Repository" target="_blank">These instructions</a> will get you started exploring the many available modules that will save you time & money and increase the - power of your organization. For more information or to be put into contact with an accredited <a href="http://www.openbravo.com/partners/find-partners-support/" target="_blank">Openbravo partner</a>, please <a href="http://www.openbravo.com/form/customer/index.php?source=Form - Community Edition" target="_blank">contact us</a>.<a href="http://exchange.openbravo.com/" target="_blank"><br> + power of your organization. For more information or to be put into contact with an accredited <a href="http://www.openbravo.com/partners/find-partners-support/" target="_blank">Openbravo partner</a>, please <a href="http://www.openbravo.com/form/customer/index.php?source=Form - Basic Edition" target="_blank">contact us</a>.<a href="http://exchange.openbravo.com/" target="_blank"><br> </a></p> </div> @@ -74,18 +94,24 @@ <div style="float: left; height: 145px; background-color: #f8f8f8; -moz-border-radius: 10px; border-radius: 10px; margin: 3px 6px 6px 8px; display: none;" id="LogoCont"> <h1 style="margin-left: 15px; margin-top: 10px; margin-right: 5px;">Why upgrade to <a href="http://www.openbravo.com/product/erp/get-basic/" target="_blank">Basic Edition?</a></h1> - <div onclick="window.open('http://www.openbravo.com/product/erp/get-basic/'); return false;" style="cursor: pointer;"> + + +<div onclick="window.open('http://www.openbravo.com/product/erp/get-basic/'); return false;" style="cursor: pointer;"> <div style="float: left; width: 270px; height: 92px; background-color: #E6E6E6; -moz-border-radius-topleft: 10px; -moz-border-radius-bottomleft: 10px; border-top-left-radius: 10px; border-bottom-left-radius: 10px; border-top: 1px solid #D8D8D8; border-left: 1px solid #D8D8D8; border-bottom: 1px solid #D8D8D8; margin-left: 10px;" id="LogoLeftCont"> - <img src="StaticCommunityBranding-MyOB-Comm_files/LogoLeft.png" style="border: 0; margin: 6px 0px 0px 8px;" /> - </div> - <div style="float: left; height: 92px; width: 10px; background-color: #E6E6E6; border-top: 1px solid #D8D8D8; border-bottom: 1px solid #D8D8D8;" id="LogoMiddleCont"></div> - <div style="float: left; width: 66px; height: 92px; background-color: #E6E6E6; -moz-border-radius-topright: 10px; -moz-border-radius-bottomright: 10px; border-top-right-radius: 10px; border-bottom-right-radius: 10px; border-top: 1px solid #D8D8D8; border-right: 1px solid #D8D8D8; border-bottom: 1px solid #D8D8D8;" id="LogoRightCont"> ------------------------------------------------------------------------------ Beautiful is writing same markup. Internet Explorer 9 supports standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. Spend less time writing and rewriting code and more time creating great experiences on the web. Be a part of the beta today http://p.sf.net/sfu/msIE9-sfdev2dev _______________________________________________ Openbravo-commits mailing list Openbravo-commits@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/openbravo-commits