HTML5 - <font> tag is deprecated, replace by <span>
This commit is contained in:
parent
f6a8082f16
commit
1d2c8effd8
@ -124,7 +124,7 @@ function getPublicJobPositionUrl($mode, $ref = '', $localorexternal = 0)
|
||||
$urltouse = $urlwithroot;
|
||||
}
|
||||
|
||||
$out = $urltouse.'/public/recruitment/view.php?ref='.($mode ? '<font color="#666666">' : '').$ref.($mode ? '</font>' : '');
|
||||
$out = $urltouse.'/public/recruitment/view.php?ref='.($mode ? '<span style="color: #666666">' : '').$ref.($mode ? '</span>' : '');
|
||||
/*if (!empty($conf->global->RECRUITMENT_SECURITY_TOKEN))
|
||||
{
|
||||
if (empty($conf->global->RECRUITMENT_SECURITY_TOKEN)) $out .= '&securekey='.urlencode($conf->global->RECRUITMENT_SECURITY_TOKEN);
|
||||
|
||||
@ -605,7 +605,7 @@ if ($object->id > 0 && (empty($action) || ($action != 'edit' && $action != 'crea
|
||||
print '<div class="inline-block divButAction"><a class="butActionRefused" href="#">'.$langs->trans("CreateDolibarrLogin").'</a></div>';
|
||||
}
|
||||
} else {
|
||||
print '<div class="inline-block divButAction"><font class="butActionRefused classfortooltip" href="#" title="'.dol_escape_htmltag($langs->trans("NotEnoughPermissions")).'">'.$langs->trans("CreateDolibarrLogin")."</font></div>";
|
||||
print '<div class="inline-block divButAction"><span class="butActionRefused classfortooltip" href="#" title="'.dol_escape_htmltag($langs->trans("NotEnoughPermissions")).'">'.$langs->trans("CreateDolibarrLogin")."</span></div>";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -62,7 +62,7 @@ print dol_get_fiche_head($head, 'card', $langs->trans("ThirdParty"), 0, 'company
|
||||
<td><?php echo $langs->trans('CustomerCode'); ?></td>
|
||||
<td colspan="3"><?php echo $this->control->tpl['code_client']; ?>
|
||||
<?php if ($this->control->tpl['checkcustomercode'] <> 0) { ?>
|
||||
<font class="error">(<?php echo $langs->trans("WrongCustomerCode"); ?>)</font>
|
||||
<span class="error">(<?php echo $langs->trans("WrongCustomerCode"); ?>)</span>
|
||||
<?php } ?>
|
||||
</td>
|
||||
</tr>
|
||||
@ -73,7 +73,7 @@ print dol_get_fiche_head($head, 'card', $langs->trans("ThirdParty"), 0, 'company
|
||||
<td><?php echo $langs->trans('SupplierCode'); ?></td>
|
||||
<td colspan="3"><?php echo $this->control->tpl['code_fournisseur']; ?>
|
||||
<?php if ($this->control->tpl['checksuppliercode'] <> 0) { ?>
|
||||
<font class="error">(<?php echo $langs->trans("WrongSupplierCode"); ?>)</font>
|
||||
<span class="error">(<?php echo $langs->trans("WrongSupplierCode"); ?>)</span>
|
||||
<?php } ?>
|
||||
</td>
|
||||
</tr>
|
||||
@ -134,7 +134,7 @@ for ($i = 1; $i <= 4; $i++) {
|
||||
if ($this->control->tpl['checkprofid'.$i] > 0) {
|
||||
echo ' '.$this->control->tpl['urlprofid'.$i];
|
||||
} else {
|
||||
echo ' <font class="error">('.$langs->trans("ErrorWrongValue").')</font>';
|
||||
echo ' <span class="error">('.$langs->trans("ErrorWrongValue").')</span>';
|
||||
}
|
||||
}
|
||||
echo '</td>';
|
||||
|
||||
@ -57,7 +57,7 @@ if ($this->control->tpl['action_delete']) {
|
||||
<td><?php echo $langs->trans('CustomerCode'); ?></td>
|
||||
<td colspan="3"><?php echo $this->control->tpl['code_client']; ?>
|
||||
<?php if ($this->control->tpl['checkcustomercode'] <> 0) { ?>
|
||||
<font class="error">(<?php echo $langs->trans("WrongCustomerCode"); ?>)</font>
|
||||
<span class="error">(<?php echo $langs->trans("WrongCustomerCode"); ?>)</span>
|
||||
<?php } ?>
|
||||
</td>
|
||||
</tr>
|
||||
@ -68,7 +68,7 @@ if ($this->control->tpl['action_delete']) {
|
||||
<td><?php echo $langs->trans('SupplierCode'); ?></td>
|
||||
<td colspan="3"><?php echo $this->control->tpl['code_fournisseur']; ?>
|
||||
<?php if ($this->control->tpl['checksuppliercode'] <> 0) { ?>
|
||||
<font class="error">(<?php echo $langs->trans("WrongSupplierCode"); ?>)</font>
|
||||
<span class="error">(<?php echo $langs->trans("WrongSupplierCode"); ?>)</span>
|
||||
<?php } ?>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@ -2284,7 +2284,7 @@ if (is_object($objcanvas) && $objcanvas->displayCanvasExists($action)) {
|
||||
print '<tr><td>'.$form->editfieldkey('Capital', 'capital', '', $object, 0).'</td>';
|
||||
print '<td colspan="3"><input type="text" name="capital" id="capital" size="10" value="';
|
||||
print $object->capital != '' ? dol_escape_htmltag(price($object->capital)) : '';
|
||||
print '"> <font class="hideonsmartphone">'.$langs->trans("Currency".$conf->currency).'</font></td></tr>';
|
||||
print '"> <span class="hideonsmartphone">'.$langs->trans("Currency".$conf->currency).'</span></td></tr>';
|
||||
|
||||
// Default language
|
||||
if (!empty($conf->global->MAIN_MULTILANGS)) {
|
||||
@ -2511,7 +2511,7 @@ if (is_object($objcanvas) && $objcanvas->displayCanvasExists($action)) {
|
||||
print '</td>';
|
||||
$tmpcheck = $object->check_codeclient();
|
||||
if ($tmpcheck != 0 && $tmpcheck != -5) {
|
||||
print ' <font class="error">('.$langs->trans("WrongCustomerCode").')</font>';
|
||||
print ' <span class="error">('.$langs->trans("WrongCustomerCode").')</span>';
|
||||
}
|
||||
print '</td>';
|
||||
print '</tr>';
|
||||
@ -2524,7 +2524,7 @@ if (is_object($objcanvas) && $objcanvas->displayCanvasExists($action)) {
|
||||
print showValueWithClipboardCPButton(dol_escape_htmltag($object->code_fournisseur));
|
||||
$tmpcheck = $object->check_codefournisseur();
|
||||
if ($tmpcheck != 0 && $tmpcheck != -5) {
|
||||
print ' <font class="error">('.$langs->trans("WrongSupplierCode").')</font>';
|
||||
print ' <span class="error">('.$langs->trans("WrongSupplierCode").')</span>';
|
||||
}
|
||||
print '</td>';
|
||||
print '</tr>';
|
||||
@ -2552,7 +2552,7 @@ if (is_object($objcanvas) && $objcanvas->displayCanvasExists($action)) {
|
||||
if ($object->id_prof_check($i, $object) > 0) {
|
||||
print ' '.$object->id_prof_url($i, $object);
|
||||
} else {
|
||||
print ' <font class="error">('.$langs->trans("ErrorWrongValue").')</font>';
|
||||
print ' <span class="error">('.$langs->trans("ErrorWrongValue").')</span>';
|
||||
}
|
||||
}
|
||||
print '</td>';
|
||||
|
||||
@ -49,7 +49,7 @@ $vatNumber = GETPOST("vatNumber", 'alpha');
|
||||
|
||||
if (!$vatNumber) {
|
||||
print '<br>';
|
||||
print '<font class="error">'.$langs->transnoentities("ErrorFieldRequired", $langs->trans("VATIntraShort")).'</font><br>';
|
||||
print '<span class="error">'.$langs->transnoentities("ErrorFieldRequired", $langs->trans("VATIntraShort")).'</span><br>';
|
||||
} else {
|
||||
$vatNumber = preg_replace('/\^\w/', '', $vatNumber);
|
||||
$vatNumber = str_replace(array(' ', '.'), '', $vatNumber);
|
||||
@ -97,16 +97,16 @@ if (!$vatNumber) {
|
||||
|
||||
// Service indisponible
|
||||
if (!is_array($result) || preg_match('/SERVICE_UNAVAILABLE/i', $result['faultstring'])) {
|
||||
print '<font class="error">'.$langs->trans("ErrorServiceUnavailableTryLater").'</font><br>';
|
||||
print '<span class="error">'.$langs->trans("ErrorServiceUnavailableTryLater").'</span><br>';
|
||||
$messagetoshow = $soapclient->response;
|
||||
} elseif (preg_match('/TIMEOUT/i', $result['faultstring'])) {
|
||||
print '<font class="error">'.$langs->trans("ErrorServiceUnavailableTryLater").'</font><br>';
|
||||
print '<span class="error">'.$langs->trans("ErrorServiceUnavailableTryLater").'</span><br>';
|
||||
$messagetoshow = $soapclient->response;
|
||||
} elseif (preg_match('/SERVER_BUSY/i', $result['faultstring'])) {
|
||||
print '<font class="error">'.$langs->trans("ErrorServiceUnavailableTryLater").'</font><br>';
|
||||
print '<span class="error">'.$langs->trans("ErrorServiceUnavailableTryLater").'</span><br>';
|
||||
$messagetoshow = $soapclient->response;
|
||||
} elseif ($result['faultstring']) {
|
||||
print '<font class="error">'.$langs->trans("Error").'</font><br>';
|
||||
print '<span class="error">'.$langs->trans("Error").'</span><br>';
|
||||
$messagetoshow = $result['faultstring'];
|
||||
} elseif (preg_match('/INVALID_INPUT/i', $result['faultstring'])
|
||||
|| ($result['requestDate'] && !$result['valid'])) {
|
||||
@ -114,26 +114,26 @@ if (!$vatNumber) {
|
||||
if ($result['requestDate']) {
|
||||
print $langs->trans("Date").': '.$result['requestDate'].'<br>';
|
||||
}
|
||||
print $langs->trans("VATIntraSyntaxIsValid").': <font class="error">'.$langs->trans("No").'</font> (Might be a non europeen VAT)<br>';
|
||||
print $langs->trans("ValueIsValid").': <font class="error">'.$langs->trans("No").'</font> (Might be a non europeen VAT)<br>';
|
||||
print $langs->trans("VATIntraSyntaxIsValid").': <span class="error">'.$langs->trans("No").'</span> (Might be a non europeen VAT)<br>';
|
||||
print $langs->trans("ValueIsValid").': <span class="error">'.$langs->trans("No").'</span> (Might be a non europeen VAT)<br>';
|
||||
//$messagetoshow=$soapclient->response;
|
||||
} else {
|
||||
// Syntaxe ok
|
||||
if ($result['requestDate']) {
|
||||
print $langs->trans("Date").': '.$result['requestDate'].'<br>';
|
||||
}
|
||||
print $langs->trans("VATIntraSyntaxIsValid").': <font class="ok">'.$langs->trans("Yes").'</font><br>';
|
||||
print $langs->trans("VATIntraSyntaxIsValid").': <span class="ok">'.$langs->trans("Yes").'</span><br>';
|
||||
print $langs->trans("ValueIsValid").': ';
|
||||
if (preg_match('/MS_UNAVAILABLE/i', $result['faultstring'])) {
|
||||
print '<font class="error">'.$langs->trans("ErrorVATCheckMS_UNAVAILABLE", $countryCode).'</font><br>';
|
||||
print '<span class="error">'.$langs->trans("ErrorVATCheckMS_UNAVAILABLE", $countryCode).'</span><br>';
|
||||
} else {
|
||||
if (!empty($result['valid']) && ($result['valid'] == 1 || $result['valid'] == 'true')) {
|
||||
print '<font class="ok">'.$langs->trans("Yes").'</font>';
|
||||
print '<span class="ok">'.$langs->trans("Yes").'</span>';
|
||||
print '<br>';
|
||||
print $langs->trans("Name").': '.$result['name'].'<br>';
|
||||
print $langs->trans("Address").': '.$result['address'].'<br>';
|
||||
} else {
|
||||
print '<font class="error">'.$langs->trans("No").'</font>';
|
||||
print '<span class="error">'.$langs->trans("No").'</span>';
|
||||
print '<br>'."\n";
|
||||
}
|
||||
}
|
||||
|
||||
@ -148,7 +148,7 @@ if ($object->client) {
|
||||
print showValueWithClipboardCPButton(dol_escape_htmltag($object->code_client));
|
||||
$tmpcheck = $object->check_codeclient();
|
||||
if ($tmpcheck != 0 && $tmpcheck != -5) {
|
||||
print ' <font class="error">('.$langs->trans("WrongCustomerCode").')</font>';
|
||||
print ' <span class="error">('.$langs->trans("WrongCustomerCode").')</span>';
|
||||
}
|
||||
print '</td></tr>';
|
||||
$sql = "SELECT count(*) as nb from ".MAIN_DB_PREFIX."facture where fk_soc = ".((int) $socid);
|
||||
@ -185,7 +185,7 @@ if ($object->fournisseur) {
|
||||
print showValueWithClipboardCPButton(dol_escape_htmltag($object->code_fournisseur));
|
||||
$tmpcheck = $object->check_codefournisseur();
|
||||
if ($tmpcheck != 0 && $tmpcheck != -5) {
|
||||
print ' <font class="error">('.$langs->trans("WrongSupplierCode").')</font>';
|
||||
print ' <span class="error">('.$langs->trans("WrongSupplierCode").')</span>';
|
||||
}
|
||||
print '</td></tr>';
|
||||
$sql = "SELECT count(*) as nb from ".MAIN_DB_PREFIX."commande_fournisseur where fk_soc = ".((int) $socid);
|
||||
|
||||
@ -152,7 +152,7 @@ if ($object->id) {
|
||||
print showValueWithClipboardCPButton(dol_escape_htmltag($object->code_client));
|
||||
$tmpcheck = $object->check_codeclient();
|
||||
if ($tmpcheck != 0 && $tmpcheck != -5) {
|
||||
print ' <font class="error">('.$langs->trans("WrongCustomerCode").')</font>';
|
||||
print ' <span class="error">('.$langs->trans("WrongCustomerCode").')</span>';
|
||||
}
|
||||
print '</td></tr>';
|
||||
}
|
||||
@ -163,7 +163,7 @@ if ($object->id) {
|
||||
print showValueWithClipboardCPButton(dol_escape_htmltag($object->code_fournisseur));
|
||||
$tmpcheck = $object->check_codefournisseur();
|
||||
if ($tmpcheck != 0 && $tmpcheck != -5) {
|
||||
print ' <font class="error">('.$langs->trans("WrongSupplierCode").')</font>';
|
||||
print ' <span class="error">('.$langs->trans("WrongSupplierCode").')</span>';
|
||||
}
|
||||
print '</td></tr>';
|
||||
}
|
||||
|
||||
@ -118,7 +118,7 @@ if ($object->id > 0) {
|
||||
print showValueWithClipboardCPButton(dol_escape_htmltag($object->code_client));
|
||||
$tmpcheck = $object->check_codeclient();
|
||||
if ($tmpcheck != 0 && $tmpcheck != -5) {
|
||||
print ' <font class="error">('.$langs->trans("WrongCustomerCode").')</font>';
|
||||
print ' <span class="error">('.$langs->trans("WrongCustomerCode").')</span>';
|
||||
}
|
||||
print '</td></tr>';
|
||||
}
|
||||
@ -129,7 +129,7 @@ if ($object->id > 0) {
|
||||
print showValueWithClipboardCPButton(dol_escape_htmltag($object->code_fournisseur));
|
||||
$tmpcheck = $object->check_codefournisseur();
|
||||
if ($tmpcheck != 0 && $tmpcheck != -5) {
|
||||
print ' <font class="error">('.$langs->trans("WrongSupplierCode").')</font>';
|
||||
print ' <span class="error">('.$langs->trans("WrongSupplierCode").')</span>';
|
||||
}
|
||||
print '</td></tr>';
|
||||
}
|
||||
|
||||
@ -178,7 +178,7 @@ if ($result > 0) {
|
||||
print showValueWithClipboardCPButton(dol_escape_htmltag($object->code_client));
|
||||
$tmpcheck = $object->check_codeclient();
|
||||
if ($tmpcheck != 0 && $tmpcheck != -5) {
|
||||
print ' <font class="error">('.$langs->trans("WrongCustomerCode").')</font>';
|
||||
print ' <span class="error">('.$langs->trans("WrongCustomerCode").')</span>';
|
||||
}
|
||||
print '</td></tr>';
|
||||
}
|
||||
@ -189,7 +189,7 @@ if ($result > 0) {
|
||||
print showValueWithClipboardCPButton(dol_escape_htmltag($object->code_fournisseur));
|
||||
$tmpcheck = $object->check_codefournisseur();
|
||||
if ($tmpcheck != 0 && $tmpcheck != -5) {
|
||||
print ' <font class="error">('.$langs->trans("WrongSupplierCode").')</font>';
|
||||
print ' <span class="error">('.$langs->trans("WrongSupplierCode").')</span>';
|
||||
}
|
||||
print '</td></tr>';
|
||||
}
|
||||
|
||||
@ -189,7 +189,7 @@ if ($id > 0) {
|
||||
print showValueWithClipboardCPButton(dol_escape_htmltag($societe->code_client));
|
||||
$tmpcheck = $societe->check_codeclient();
|
||||
if ($tmpcheck != 0 && $tmpcheck != -5) {
|
||||
print ' <font class="error">('.$langs->trans("WrongCustomerCode").')</font>';
|
||||
print ' <span class="error">('.$langs->trans("WrongCustomerCode").')</span>';
|
||||
}
|
||||
print '</td></tr>';
|
||||
}
|
||||
@ -200,7 +200,7 @@ if ($id > 0) {
|
||||
print showValueWithClipboardCPButton(dol_escape_htmltag($societe->code_fournisseur));
|
||||
$tmpcheck = $societe->check_codefournisseur();
|
||||
if ($tmpcheck != 0 && $tmpcheck != -5) {
|
||||
print ' <font class="error">('.$langs->trans("WrongSupplierCode").')</font>';
|
||||
print ' <span class="error">('.$langs->trans("WrongSupplierCode").')</span>';
|
||||
}
|
||||
print '</td>';
|
||||
print '</tr>';
|
||||
|
||||
@ -761,7 +761,7 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
|
||||
print showValueWithClipboardCPButton(dol_escape_htmltag($object->code_client));
|
||||
$tmpcheck = $object->check_codeclient();
|
||||
if ($tmpcheck != 0 && $tmpcheck != -5) {
|
||||
print ' <font class="error">('.$langs->trans("WrongCustomerCode").')</font>';
|
||||
print ' <span class="error">('.$langs->trans("WrongCustomerCode").')</span>';
|
||||
}
|
||||
print '</td></tr>';
|
||||
$sql = "SELECT count(*) as nb from ".MAIN_DB_PREFIX."facture where fk_soc = ".((int) $socid);
|
||||
@ -823,7 +823,7 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
|
||||
print showValueWithClipboardCPButton(dol_escape_htmltag($object->code_fournisseur));
|
||||
$tmpcheck = $object->check_codefournisseur();
|
||||
if ($tmpcheck != 0 && $tmpcheck != -5) {
|
||||
print ' <font class="error">('.$langs->trans("WrongSupplierCode").')</font>';
|
||||
print ' <span class="error">('.$langs->trans("WrongSupplierCode").')</span>';
|
||||
}
|
||||
print '</td></tr>';
|
||||
$sql = "SELECT count(*) as nb from ".MAIN_DB_PREFIX."facture where fk_soc = ".((int) $socid);
|
||||
@ -1032,7 +1032,7 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
|
||||
print $img ? $img.' ' : '';
|
||||
print getCountry($companypaymentmodetemp->country_code, 1);
|
||||
} else {
|
||||
print img_warning().' <font class="error">'.$langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("CompanyCountry")).'</font>';
|
||||
print img_warning().' <span class="error">'.$langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("CompanyCountry")).'</span>';
|
||||
}
|
||||
print '</td>';
|
||||
// Default
|
||||
@ -1141,7 +1141,7 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
|
||||
print $img ? $img.' ' : '';
|
||||
print getCountry($src->country, 1);
|
||||
} else {
|
||||
print img_warning().' <font class="error">'.$langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("CompanyCountry")).'</font>';
|
||||
print img_warning().' <span class="error">'.$langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("CompanyCountry")).'</span>';
|
||||
}
|
||||
} elseif ($src->object == 'source' && $src->type == 'card') {
|
||||
print '<span class="opacitymedium">'.$src->owner->name.'</span><br>....'.$src->card->last4.' - '.$src->card->exp_month.'/'.$src->card->exp_year.'';
|
||||
@ -1152,7 +1152,7 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
|
||||
print $img ? $img.' ' : '';
|
||||
print getCountry($src->card->country, 1);
|
||||
} else {
|
||||
print img_warning().' <font class="error">'.$langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("CompanyCountry")).'</font>';
|
||||
print img_warning().' <span class="error">'.$langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("CompanyCountry")).'</span>';
|
||||
}
|
||||
} elseif ($src->object == 'source' && $src->type == 'sepa_debit') {
|
||||
print '<span class="opacitymedium">'.$src->billing_details->name.'</span><br>....'.$src->sepa_debit->last4;
|
||||
@ -1162,7 +1162,7 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
|
||||
print $img ? $img.' ' : '';
|
||||
print getCountry($src->sepa_debit->country, 1);
|
||||
} else {
|
||||
print img_warning().' <font class="error">'.$langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("CompanyCountry")).'</font>';
|
||||
print img_warning().' <span class="error">'.$langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("CompanyCountry")).'</span>';
|
||||
}
|
||||
} elseif ($src->object == 'payment_method' && $src->type == 'card') {
|
||||
print '<span class="opacitymedium">'.$src->billing_details->name.'</span><br>....'.$src->card->last4.' - '.$src->card->exp_month.'/'.$src->card->exp_year.'';
|
||||
@ -1173,7 +1173,7 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
|
||||
print $img ? $img.' ' : '';
|
||||
print getCountry($src->card->country, 1);
|
||||
} else {
|
||||
print img_warning().' <font class="error">'.$langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("CompanyCountry")).'</font>';
|
||||
print img_warning().' <span class="error">'.$langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("CompanyCountry")).'</span>';
|
||||
}
|
||||
} elseif ($src->object == 'payment_method' && $src->type == 'sepa_debit') {
|
||||
print '<span class="opacitymedium">'.$src->billing_details->name.'</span><br>....'.$src->sepa_debit->last4;
|
||||
@ -1183,7 +1183,7 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
|
||||
print $img ? $img.' ' : '';
|
||||
print getCountry($src->sepa_debit->country, 1);
|
||||
} else {
|
||||
print img_warning().' <font class="error">'.$langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("CompanyCountry")).'</font>';
|
||||
print img_warning().' <span class="error">'.$langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("CompanyCountry")).'</span>';
|
||||
}
|
||||
} else {
|
||||
print '</td><td>';
|
||||
|
||||
@ -218,7 +218,7 @@ if ($object->client) {
|
||||
print $object->code_client;
|
||||
$tmpcheck = $object->check_codeclient();
|
||||
if ($tmpcheck != 0 && $tmpcheck != -5) {
|
||||
print ' <font class="error">('.$langs->trans("WrongCustomerCode").')</font>';
|
||||
print ' <span class="error">('.$langs->trans("WrongCustomerCode").')</span>';
|
||||
}
|
||||
print '</td></tr>';
|
||||
}
|
||||
@ -229,7 +229,7 @@ if ($object->fournisseur) {
|
||||
print $object->code_fournisseur;
|
||||
$tmpcheck = $object->check_codefournisseur();
|
||||
if ($tmpcheck != 0 && $tmpcheck != -5) {
|
||||
print ' <font class="error">('.$langs->trans("WrongSupplierCode").')</font>';
|
||||
print ' <span class="error">('.$langs->trans("WrongSupplierCode").')</span>';
|
||||
}
|
||||
print '</td></tr>';
|
||||
}
|
||||
|
||||
@ -112,7 +112,7 @@ if ($socid) {
|
||||
print showValueWithClipboardCPButton(dol_escape_htmltag($object->code_client));
|
||||
$tmpcheck = $object->check_codeclient();
|
||||
if ($tmpcheck != 0 && $tmpcheck != -5) {
|
||||
print ' <font class="error">('.$langs->trans("WrongCustomerCode").')</font>';
|
||||
print ' <span class="error">('.$langs->trans("WrongCustomerCode").')</span>';
|
||||
}
|
||||
print '</td></tr>';
|
||||
}
|
||||
@ -123,7 +123,7 @@ if ($socid) {
|
||||
print showValueWithClipboardCPButton(dol_escape_htmltag($object->code_fournisseur));
|
||||
$tmpcheck = $object->check_codefournisseur();
|
||||
if ($tmpcheck != 0 && $tmpcheck != -5) {
|
||||
print ' <font class="error">('.$langs->trans("WrongSupplierCode").')</font>';
|
||||
print ' <span class="error">('.$langs->trans("WrongSupplierCode").')</span>';
|
||||
}
|
||||
print '</td></tr>';
|
||||
}
|
||||
|
||||
@ -181,7 +181,7 @@ if ($id > 0 || !empty($ref)) {
|
||||
print $object->code_client;
|
||||
$tmpcheck = $object->check_codeclient();
|
||||
if ($tmpcheck != 0 && $tmpcheck != -5) {
|
||||
print ' <font class="error">('.$langs->trans("WrongCustomerCode").')</font>';
|
||||
print ' <span class="error">('.$langs->trans("WrongCustomerCode").')</span>';
|
||||
}
|
||||
print '</td></tr>';
|
||||
}
|
||||
@ -192,7 +192,7 @@ if ($id > 0 || !empty($ref)) {
|
||||
print $object->code_fournisseur;
|
||||
$tmpcheck = $object->check_codefournisseur();
|
||||
if ($tmpcheck != 0 && $tmpcheck != -5) {
|
||||
print ' <font class="error">('.$langs->trans("WrongSupplierCode").')</font>';
|
||||
print ' <span class="error">('.$langs->trans("WrongSupplierCode").')</span>';
|
||||
}
|
||||
print '</td></tr>';
|
||||
}
|
||||
|
||||
@ -222,7 +222,7 @@ if ($object->client) {
|
||||
print $object->code_client;
|
||||
$tmpcheck = $object->check_codeclient();
|
||||
if ($tmpcheck != 0 && $tmpcheck != -5) {
|
||||
print ' <font class="error">('.$langs->trans("WrongCustomerCode").')</font>';
|
||||
print ' <span class="error">('.$langs->trans("WrongCustomerCode").')</span>';
|
||||
}
|
||||
print '</td></tr>';
|
||||
}
|
||||
@ -233,7 +233,7 @@ if ($object->fournisseur) {
|
||||
print $object->code_fournisseur;
|
||||
$tmpcheck = $object->check_codefournisseur();
|
||||
if ($tmpcheck != 0 && $tmpcheck != -5) {
|
||||
print ' <font class="error">('.$langs->trans("WrongSupplierCode").')</font>';
|
||||
print ' <span class="error">('.$langs->trans("WrongSupplierCode").')</span>';
|
||||
}
|
||||
print '</td></tr>';
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user