Merge branch 'develop' of git+ssh://git@github.com/Dolibarr/dolibarr.git into develop
This commit is contained in:
commit
928b95bcec
@ -64,6 +64,12 @@ jQuery(document).ready(function() {
|
||||
hideoptions();
|
||||
jQuery("#postgresql_options").show();
|
||||
});
|
||||
jQuery("#select_sql_compat").click(function() {
|
||||
if (jQuery("#select_sql_compat").val() == 'POSTGRESQL')
|
||||
{
|
||||
jQuery("#checkbox_dump_disable-add-locks").attr('checked',true);
|
||||
};
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<?php
|
||||
|
||||
@ -48,7 +48,7 @@ if ($page < 0) $page = 0;
|
||||
//$limit = $conf->liste_limit;
|
||||
//$offset = $limit * $page ;
|
||||
|
||||
if (! $sortfield) $sortfield="s.date_ech";
|
||||
if (! $sortfield) $sortfield="cs.date_ech";
|
||||
if (! $sortorder) $sortorder="DESC";
|
||||
|
||||
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
/* Copyright (C) 2001-2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||
* Copyright (C) 2004 Eric Seigne <eric.seigne@ryxeo.com>
|
||||
* Copyright (C) 2004-2010 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||
* Copyright (C) 2004-2012 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||
* Copyright (C) 2005-2009 Regis Houssin <regis@dolibarr.fr>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
@ -111,26 +111,26 @@ print $langs->trans("VATReportBuildWithOptionDefinedInModule").'<br>';
|
||||
print '('.$langs->trans("TaxModuleSetupToModifyRules",DOL_URL_ROOT.'/admin/taxes.php').')<br>';
|
||||
print '<br>';
|
||||
|
||||
echo '<table width="100%" class="nobordernopadding">';
|
||||
echo '<tr><td>';
|
||||
echo '<table width="100%" class="notopnoleftnoright">';
|
||||
echo '<tr><td class="notopnoleft" width="50%">';
|
||||
print_titre($langs->trans("VATSummary"));
|
||||
// The report mode is the one defined by defaut in tax module setup
|
||||
//print $modetax;
|
||||
//print '('.$langs->trans("SeeVATReportInInputOutputMode",'<a href="'.$_SERVER["PHP_SELF"].'?year='.$year_start.'&modetax=0">','</a>').')';
|
||||
echo '</td><td width="5"> </td><td>';
|
||||
echo '</td><td>';
|
||||
print_titre($langs->trans("VATPaid"));
|
||||
echo '</td></tr>';
|
||||
|
||||
echo '<tr><td width="50%" valign="top">';
|
||||
echo '<tr><td class="notopnoleft" width="50%" valign="top">';
|
||||
|
||||
print "<table class=\"noborder\" width=\"100%\">";
|
||||
print "<tr class=\"liste_titre\">";
|
||||
print "<td width=\"30%\">".$langs->trans("Year")." $y</td>";
|
||||
print "<td align=\"right\">".$langs->trans("VATToPay")."</td>";
|
||||
print "<td align=\"right\">".$langs->trans("VATToCollect")."</td>";
|
||||
print "<td align=\"right\">".$langs->trans("TotalToPay")."</td>";
|
||||
print "<td> </td>\n";
|
||||
print "</tr>\n";
|
||||
print '<table class="noborder" width="100%">';
|
||||
print '<tr class="liste_titre">';
|
||||
print '<td width="30%">'.$langs->trans("Year")." ".$y.'</td>';
|
||||
print '<td align="right">'.$langs->trans("VATToPay").'</td>';
|
||||
print '<td align="right">'.$langs->trans("VATToCollect").'</td>';
|
||||
print '<td align="right">'.$langs->trans("TotalToPay").'</td>';
|
||||
print '<td> </td>'."\n";
|
||||
print '</tr>'."\n";
|
||||
|
||||
|
||||
$y = $year_current ;
|
||||
@ -210,7 +210,8 @@ print '</tr>';
|
||||
print '</table>';
|
||||
|
||||
|
||||
echo '</td><td> </td><td valign="top" width="50%">';
|
||||
echo '</td>';
|
||||
print '<td class="notopnoleftnoright" valign="top" width="50%">';
|
||||
|
||||
/*
|
||||
* Payed
|
||||
|
||||
@ -393,7 +393,7 @@ Module400Name= Projets
|
||||
Module400Desc= Gestion des projets au sein des autres modules
|
||||
Module410Name= Webcalendar
|
||||
Module410Desc= Interface avec le calendrier Webcalendar
|
||||
Module500Name= Taxes et dividendes
|
||||
Module500Name= Taxes, charges et dividendes
|
||||
Module500Desc= Gestion des taxes, charges sociales et dividendes
|
||||
Module600Name= Notifications
|
||||
Module600Desc= Envoi de notifications (par mail) sur certains événements métiers Dolibarr, aux contacts de tiers
|
||||
|
||||
@ -48,7 +48,7 @@ ToGetBack=A récupérer
|
||||
TaxAndDividendsArea=Espace taxes, charges sociales et dividendes
|
||||
SocialContribution=Charge sociale
|
||||
SocialContributions=Charges sociales
|
||||
MenuTaxAndDividends=Taxes et dividendes
|
||||
MenuTaxAndDividends=Taxes et charges
|
||||
MenuSocialContributions=Charges sociales
|
||||
MenuNewSocialContribution=Nouvelle charge
|
||||
NewSocialContribution=Nouvelle charge sociale
|
||||
|
||||
Loading…
Reference in New Issue
Block a user