forked from Wavyzz/dolibarr
Fix: convert line delimiters
This commit is contained in:
@@ -51,7 +51,7 @@ if ($action == 'set')
|
|||||||
$res = dolibarr_del_const($db,"SYSLOG_FILE_ON",0);
|
$res = dolibarr_del_const($db,"SYSLOG_FILE_ON",0);
|
||||||
$res = dolibarr_del_const($db,"SYSLOG_SYSLOG_ON",0);
|
$res = dolibarr_del_const($db,"SYSLOG_SYSLOG_ON",0);
|
||||||
$res = dolibarr_del_const($db,"SYSLOG_FIREPHP_ON",0);
|
$res = dolibarr_del_const($db,"SYSLOG_FIREPHP_ON",0);
|
||||||
$res = dolibarr_del_const($db,"SYSLOG_CHROMEPHP_ON",0);
|
$res = dolibarr_del_const($db,"SYSLOG_CHROMEPHP_ON",0);
|
||||||
|
|
||||||
$syslog_file_on=0;
|
$syslog_file_on=0;
|
||||||
$syslog_syslog_on=0;
|
$syslog_syslog_on=0;
|
||||||
|
|||||||
@@ -32,9 +32,9 @@ $username = GETPOST("txtUsername");
|
|||||||
$password = GETPOST("pwdPassword");
|
$password = GETPOST("pwdPassword");
|
||||||
$thirdpartyid = (GETPOST('socid','int')!='')?GETPOST('socid','int'):$conf->global->CASHDESK_ID_THIRDPARTY;
|
$thirdpartyid = (GETPOST('socid','int')!='')?GETPOST('socid','int'):$conf->global->CASHDESK_ID_THIRDPARTY;
|
||||||
$warehouseid = (GETPOST("warehouseid")!='')?GETPOST("warehouseid"):$conf->global->CASHDESK_ID_WAREHOUSE;
|
$warehouseid = (GETPOST("warehouseid")!='')?GETPOST("warehouseid"):$conf->global->CASHDESK_ID_WAREHOUSE;
|
||||||
$bankid_cash = (GETPOST("CASHDESK_ID_BANKACCOUNT_CASH")!='')?GETPOST("CASHDESK_ID_BANKACCOUNT_CASH"):$conf->global->CASHDESK_ID_BANKACCOUNT_CASH;
|
$bankid_cash = (GETPOST("CASHDESK_ID_BANKACCOUNT_CASH")!='')?GETPOST("CASHDESK_ID_BANKACCOUNT_CASH"):$conf->global->CASHDESK_ID_BANKACCOUNT_CASH;
|
||||||
$bankid_cheque = (GETPOST("CASHDESK_ID_BANKACCOUNT_CHEQUE")!='')?GETPOST("CASHDESK_ID_BANKACCOUNT_CHEQUE"):$conf->global->CASHDESK_ID_BANKACCOUNT_CHEQUE;
|
$bankid_cheque = (GETPOST("CASHDESK_ID_BANKACCOUNT_CHEQUE")!='')?GETPOST("CASHDESK_ID_BANKACCOUNT_CHEQUE"):$conf->global->CASHDESK_ID_BANKACCOUNT_CHEQUE;
|
||||||
$bankid_cb = (GETPOST("CASHDESK_ID_BANKACCOUNT_CB")!='')?GETPOST("CASHDESK_ID_BANKACCOUNT_CB"):$conf->global->CASHDESK_ID_BANKACCOUNT_CB;
|
$bankid_cb = (GETPOST("CASHDESK_ID_BANKACCOUNT_CB")!='')?GETPOST("CASHDESK_ID_BANKACCOUNT_CB"):$conf->global->CASHDESK_ID_BANKACCOUNT_CB;
|
||||||
|
|
||||||
// Check username
|
// Check username
|
||||||
if (empty($username))
|
if (empty($username))
|
||||||
|
|||||||
@@ -195,7 +195,7 @@ $langs->load("cashdesk");
|
|||||||
if (empty($_SESSION['CASHDESK_ID_BANKACCOUNT_CHEQUE']) || $_SESSION['CASHDESK_ID_BANKACCOUNT_CHEQUE'] < 0)
|
if (empty($_SESSION['CASHDESK_ID_BANKACCOUNT_CHEQUE']) || $_SESSION['CASHDESK_ID_BANKACCOUNT_CHEQUE'] < 0)
|
||||||
{
|
{
|
||||||
$langs->load("errors");
|
$langs->load("errors");
|
||||||
print '<input class="bouton_mode_reglement_disabled" type="button" name="btnModeReglement" value="'.$langs->trans("CreditCard").'" title="'.dol_escape_htmltag($langs->trans("ErrorModuleSetupNotComplete")).'" />';
|
print '<input class="bouton_mode_reglement_disabled" type="button" name="btnModeReglement" value="'.$langs->trans("CreditCard").'" title="'.dol_escape_htmltag($langs->trans("ErrorModuleSetupNotComplete")).'" />';
|
||||||
}
|
}
|
||||||
else print '<input class="bouton_mode_reglement" type="submit" name="btnModeReglement" value="'.$langs->trans("CreditCard").'" onclick="javascript: verifClic(\'CB\');" />';
|
else print '<input class="bouton_mode_reglement" type="submit" name="btnModeReglement" value="'.$langs->trans("CreditCard").'" onclick="javascript: verifClic(\'CB\');" />';
|
||||||
print '</td>';
|
print '</td>';
|
||||||
@@ -203,7 +203,7 @@ $langs->load("cashdesk");
|
|||||||
if (empty($_SESSION['CASHDESK_ID_BANKACCOUNT_CB']) || $_SESSION['CASHDESK_ID_BANKACCOUNT_CB'] < 0)
|
if (empty($_SESSION['CASHDESK_ID_BANKACCOUNT_CB']) || $_SESSION['CASHDESK_ID_BANKACCOUNT_CB'] < 0)
|
||||||
{
|
{
|
||||||
$langs->load("errors");
|
$langs->load("errors");
|
||||||
print '<input class="bouton_mode_reglement_disabled" type="button" name="btnModeReglement" value="'.$langs->trans("Cheque").'" title="'.dol_escape_htmltag($langs->trans("ErrorModuleSetupNotComplete")).'" />';
|
print '<input class="bouton_mode_reglement_disabled" type="button" name="btnModeReglement" value="'.$langs->trans("Cheque").'" title="'.dol_escape_htmltag($langs->trans("ErrorModuleSetupNotComplete")).'" />';
|
||||||
}
|
}
|
||||||
else print '<input class="bouton_mode_reglement" type="submit" name="btnModeReglement" value="'.$langs->trans("Cheque").'" onclick="javascript: verifClic(\'CHQ\');" />';
|
else print '<input class="bouton_mode_reglement" type="submit" name="btnModeReglement" value="'.$langs->trans("Cheque").'" onclick="javascript: verifClic(\'CHQ\');" />';
|
||||||
print '</td>';
|
print '</td>';
|
||||||
|
|||||||
@@ -25,8 +25,8 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class to parse ICal calendars
|
* Class to parse ICal calendars
|
||||||
*/
|
*/
|
||||||
class ICal
|
class ICal
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -778,7 +778,7 @@ if ($id > 0)
|
|||||||
{
|
{
|
||||||
$langs->load("bills");
|
$langs->load("bills");
|
||||||
|
|
||||||
if($orders2invoice > 0) print '<a class="butAction" href="'.DOL_URL_ROOT.'/commande/orderstoinvoice.php?socid='.$object->id.'">'.$langs->trans("CreateInvoiceForThisCustomer").'</a>';
|
if($orders2invoice > 0) print '<a class="butAction" href="'.DOL_URL_ROOT.'/commande/orderstoinvoice.php?socid='.$object->id.'">'.$langs->trans("CreateInvoiceForThisCustomer").'</a>';
|
||||||
else print '<a class="butActionRefused" title="'.dol_escape_js($langs->trans("NoOrdersToInvoice")).'" href="#">'.$langs->trans("CreateInvoiceForThisCustomer").'</a>';
|
else print '<a class="butActionRefused" title="'.dol_escape_js($langs->trans("NoOrdersToInvoice")).'" href="#">'.$langs->trans("CreateInvoiceForThisCustomer").'</a>';
|
||||||
|
|
||||||
if ($object->client != 0) print '<a class="butAction" href="'.DOL_URL_ROOT.'/compta/facture.php?action=create&socid='.$object->id.'">'.$langs->trans("AddBill").'</a>';
|
if ($object->client != 0) print '<a class="butAction" href="'.DOL_URL_ROOT.'/compta/facture.php?action=create&socid='.$object->id.'">'.$langs->trans("AddBill").'</a>';
|
||||||
|
|||||||
@@ -221,8 +221,8 @@ if ($resql)
|
|||||||
$title.=' - '.$langs->trans('StatusOrderCanceledShort');
|
$title.=' - '.$langs->trans('StatusOrderCanceledShort');
|
||||||
if ($viewstatut == -2)
|
if ($viewstatut == -2)
|
||||||
$title.=' - '.$langs->trans('StatusOrderToProcessShort');
|
$title.=' - '.$langs->trans('StatusOrderToProcessShort');
|
||||||
if ($viewstatut == -3)
|
if ($viewstatut == -3)
|
||||||
$title.=' - '.$langs->trans('StatusOrderValidated').', '.$langs->trans("StatusOrderSent").', '.$langs->trans('StatusOrderToBill');
|
$title.=' - '.$langs->trans('StatusOrderValidated').', '.$langs->trans("StatusOrderSent").', '.$langs->trans('StatusOrderToBill');
|
||||||
|
|
||||||
$param='&socid='.$socid.'&viewstatut='.$viewstatut;
|
$param='&socid='.$socid.'&viewstatut='.$viewstatut;
|
||||||
if ($ordermonth) $param.='&ordermonth='.$ordermonth;
|
if ($ordermonth) $param.='&ordermonth='.$ordermonth;
|
||||||
@@ -331,9 +331,9 @@ if ($resql)
|
|||||||
print ' <a href="'.DOL_URL_ROOT.'/commande/orderstoinvoice.php?socid='.$companystatic->id.'">';
|
print ' <a href="'.DOL_URL_ROOT.'/commande/orderstoinvoice.php?socid='.$companystatic->id.'">';
|
||||||
|
|
||||||
// If module invoices enabled and user with invoice creation permissions
|
// If module invoices enabled and user with invoice creation permissions
|
||||||
if (! empty($conf->facture->enabled))
|
if (! empty($conf->facture->enabled))
|
||||||
{
|
{
|
||||||
if ($user->rights->facture->creer)
|
if ($user->rights->facture->creer)
|
||||||
{
|
{
|
||||||
|
|
||||||
if (($objp->fk_statut > 0 && $objp->fk_statut < 3) || ($objp->fk_statut == 3 && $objp->facturee == 0))
|
if (($objp->fk_statut > 0 && $objp->fk_statut < 3) || ($objp->fk_statut == 3 && $objp->facturee == 0))
|
||||||
|
|||||||
@@ -438,10 +438,10 @@ else
|
|||||||
print '</td><td colspan="2"><textarea class="flat" name="address" cols="70">'.(isset($_POST["address"])?$_POST["address"]:$object->address).'</textarea></td>';
|
print '</td><td colspan="2"><textarea class="flat" name="address" cols="70">'.(isset($_POST["address"])?$_POST["address"]:$object->address).'</textarea></td>';
|
||||||
|
|
||||||
$rowspan=3;
|
$rowspan=3;
|
||||||
if (empty($conf->global->SOCIETE_DISABLE_STATE)) $rowspan++;
|
if (empty($conf->global->SOCIETE_DISABLE_STATE)) $rowspan++;
|
||||||
|
|
||||||
print '<td valign="middle" align="center" rowspan="'.$rowspan.'">';
|
print '<td valign="middle" align="center" rowspan="'.$rowspan.'">';
|
||||||
if ($conf->use_javascript_ajax && $socid) print '<a href="#" id="copyaddressfromsoc">'.$langs->trans('CopyAddressFromSoc').'</a>';
|
if ($conf->use_javascript_ajax && $socid) print '<a href="#" id="copyaddressfromsoc">'.$langs->trans('CopyAddressFromSoc').'</a>';
|
||||||
print '</td>';
|
print '</td>';
|
||||||
print '</tr>';
|
print '</tr>';
|
||||||
|
|
||||||
@@ -657,7 +657,7 @@ else
|
|||||||
|
|
||||||
print '<td valign="middle" align="center" rowspan="'.$rowspan.'">';
|
print '<td valign="middle" align="center" rowspan="'.$rowspan.'">';
|
||||||
if ($conf->use_javascript_ajax) print '<a href="#" id="copyaddressfromsoc">'.$langs->trans('CopyAddressFromSoc').'</a>';
|
if ($conf->use_javascript_ajax) print '<a href="#" id="copyaddressfromsoc">'.$langs->trans('CopyAddressFromSoc').'</a>';
|
||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
|
|
||||||
// Zip / Town
|
// Zip / Town
|
||||||
print '<tr><td>'.$langs->trans("Zip").' / '.$langs->trans("Town").'</td><td colspan="2">';
|
print '<tr><td>'.$langs->trans("Zip").' / '.$langs->trans("Town").'</td><td colspan="2">';
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ class CSMSFile
|
|||||||
var $deferred;
|
var $deferred;
|
||||||
var $priority;
|
var $priority;
|
||||||
var $class;
|
var $class;
|
||||||
var $message;
|
var $message;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -147,7 +147,7 @@ class CSMSFile
|
|||||||
$sms->deferred=$this->deferred;
|
$sms->deferred=$this->deferred;
|
||||||
$sms->priority=$this->priority;
|
$sms->priority=$this->priority;
|
||||||
$sms->class=$this->class;
|
$sms->class=$this->class;
|
||||||
$sms->message=$this->message;
|
$sms->message=$this->message;
|
||||||
|
|
||||||
$res=$sms->SmsSend();
|
$res=$sms->SmsSend();
|
||||||
if ($res <= 0)
|
if ($res <= 0)
|
||||||
|
|||||||
@@ -96,8 +96,8 @@ function member_prepare_head($object)
|
|||||||
$head[$h][2] = 'info';
|
$head[$h][2] = 'info';
|
||||||
$h++;
|
$h++;
|
||||||
|
|
||||||
|
|
||||||
complete_head_from_modules($conf,$langs,$object,$head,$h,'member','remove');
|
complete_head_from_modules($conf,$langs,$object,$head,$h,'member','remove');
|
||||||
|
|
||||||
return $head;
|
return $head;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -38,27 +38,27 @@ $langs->load("errors");
|
|||||||
|
|
||||||
dolibarr_install_syslog("Fileconf: Entering fileconf.php page");
|
dolibarr_install_syslog("Fileconf: Entering fileconf.php page");
|
||||||
|
|
||||||
// You can force preselected values of the config step of Dolibarr by adding a file
|
// You can force preselected values of the config step of Dolibarr by adding a file
|
||||||
// install.forced.php into directory htdocs/install (This is the case with some wizard
|
// install.forced.php into directory htdocs/install (This is the case with some wizard
|
||||||
// installer like DoliWamp, DoliMamp or DoliBuntu).
|
// installer like DoliWamp, DoliMamp or DoliBuntu).
|
||||||
// We first init "forced values" to nothing.
|
// We first init "forced values" to nothing.
|
||||||
if (! isset($force_install_noedit)) $force_install_noedit=''; // 1=To block var specific to distrib, 2 to block all technical parameters
|
if (! isset($force_install_noedit)) $force_install_noedit=''; // 1=To block var specific to distrib, 2 to block all technical parameters
|
||||||
if (! isset($force_install_type)) $force_install_type='';
|
if (! isset($force_install_type)) $force_install_type='';
|
||||||
if (! isset($force_install_dbserver)) $force_install_dbserver='';
|
if (! isset($force_install_dbserver)) $force_install_dbserver='';
|
||||||
if (! isset($force_install_port)) $force_install_port='';
|
if (! isset($force_install_port)) $force_install_port='';
|
||||||
if (! isset($force_install_database)) $force_install_database='';
|
if (! isset($force_install_database)) $force_install_database='';
|
||||||
if (! isset($force_install_prefix)) $force_install_prefix='';
|
if (! isset($force_install_prefix)) $force_install_prefix='';
|
||||||
if (! isset($force_install_createdatabase)) $force_install_createdatabase='';
|
if (! isset($force_install_createdatabase)) $force_install_createdatabase='';
|
||||||
if (! isset($force_install_databaselogin)) $force_install_databaselogin='';
|
if (! isset($force_install_databaselogin)) $force_install_databaselogin='';
|
||||||
if (! isset($force_install_databasepass)) $force_install_databasepass='';
|
if (! isset($force_install_databasepass)) $force_install_databasepass='';
|
||||||
if (! isset($force_install_databaserootlogin)) $force_install_databaserootlogin='';
|
if (! isset($force_install_databaserootlogin)) $force_install_databaserootlogin='';
|
||||||
if (! isset($force_install_databaserootpass)) $force_install_databaserootpass='';
|
if (! isset($force_install_databaserootpass)) $force_install_databaserootpass='';
|
||||||
// Now we load forced value from install.forced.php file.
|
// Now we load forced value from install.forced.php file.
|
||||||
$useforcedwizard=false;
|
$useforcedwizard=false;
|
||||||
$forcedfile="./install.forced.php";
|
$forcedfile="./install.forced.php";
|
||||||
if ($conffile == "/etc/dolibarr/conf.php") $forcedfile="/etc/dolibarr/install.forced.php"; // Must be after inc.php
|
if ($conffile == "/etc/dolibarr/conf.php") $forcedfile="/etc/dolibarr/install.forced.php"; // Must be after inc.php
|
||||||
if (@file_exists($forcedfile)) {
|
if (@file_exists($forcedfile)) {
|
||||||
$useforcedwizard=true; include_once $forcedfile;
|
$useforcedwizard=true; include_once $forcedfile;
|
||||||
}
|
}
|
||||||
|
|
||||||
//$force_install_message='This is the message';
|
//$force_install_message='This is the message';
|
||||||
|
|||||||
@@ -339,9 +339,9 @@ if ($id || $ref)
|
|||||||
$default_vat='';
|
$default_vat='';
|
||||||
|
|
||||||
// We don't have supplier, so we try to guess.
|
// We don't have supplier, so we try to guess.
|
||||||
// For this we build a fictive supplier with same properties than user but using vat)
|
// For this we build a fictive supplier with same properties than user but using vat)
|
||||||
$mysoc2=dol_clone($mysoc);
|
$mysoc2=dol_clone($mysoc);
|
||||||
$mysoc2->tva_assuj=1;
|
$mysoc2->tva_assuj=1;
|
||||||
$default_vat=get_default_tva($mysoc2, $mysoc, 0, $product->id);
|
$default_vat=get_default_tva($mysoc2, $mysoc, 0, $product->id);
|
||||||
|
|
||||||
print '<tr><td class="fieldrequired">'.$langs->trans("VATRateForSupplierProduct").'</td>';
|
print '<tr><td class="fieldrequired">'.$langs->trans("VATRateForSupplierProduct").'</td>';
|
||||||
|
|||||||
Reference in New Issue
Block a user