forked from Wavyzz/dolibarr
fix name instead of nom in company canvas (#34333)
Co-authored-by: Christophe Battarel <christophe@altairis.fr>
This commit is contained in:
committed by
GitHub
parent
3c28692ddb
commit
59a0c23009
@@ -285,7 +285,7 @@ abstract class ActionsCardCommon
|
||||
$this->tpl['showhead'] = dol_get_fiche_head($head, 'card', '', 0, 'company');
|
||||
$this->tpl['showend'] = dol_get_fiche_end();
|
||||
|
||||
$this->tpl['showrefnav'] = $form->showrefnav($this->object, 'socid', '', ($user->socid ? 0 : 1), 'rowid', 'nom');
|
||||
$this->tpl['showrefnav'] = $form->showrefnav($this->object, 'socid', '', ($user->socid ? 0 : 1), 'rowid', 'name');
|
||||
|
||||
$this->tpl['checkcustomercode'] = $this->object->check_codeclient();
|
||||
$this->tpl['checksuppliercode'] = $this->object->check_codefournisseur();
|
||||
@@ -391,7 +391,7 @@ abstract class ActionsCardCommon
|
||||
global $langs, $mysoc;
|
||||
|
||||
$this->object->id = GETPOST("socid");
|
||||
$this->object->name = GETPOST("nom");
|
||||
$this->object->name = GETPOST("name");
|
||||
$this->object->prefix_comm = GETPOST("prefix_comm");
|
||||
$this->object->client = GETPOST("client");
|
||||
$this->object->code_client = GETPOST("code_client");
|
||||
|
||||
@@ -60,7 +60,7 @@ if (empty($conf) || !is_object($conf)) {
|
||||
|
||||
<tr>
|
||||
<td><span class="fieldrequired"><?php echo $langs->trans('ThirdPartyName'); ?></span></td>
|
||||
<td><input type="text" size="30" maxlength="60" name="nom" value="<?php echo $this->control->tpl['nom']; ?>"></td>
|
||||
<td><input type="text" size="30" maxlength="60" name="name" value="<?php echo $this->control->tpl['name']; ?>"></td>
|
||||
<?php if (getDolGlobalString('SOCIETE_USEPREFIX')) { ?>
|
||||
<td><?php echo $langs->trans('Prefix'); ?></td>
|
||||
<td><input type="text" size="5" maxlength="5" name="prefix_comm" value="<?php echo $this->control->tpl['prefix_comm']; ?>"></td>
|
||||
|
||||
@@ -50,7 +50,7 @@ $contact = $GLOBALS['objcanvas']->control->object;
|
||||
|
||||
<tr>
|
||||
<td><span class="fieldrequired"><?php echo $langs->trans('ThirdPartyName'); ?></span></td>
|
||||
<td colspan="3"><input type="text" size="40" maxlength="60" name="nom" value="<?php echo $this->control->tpl['nom']; ?>"></td>
|
||||
<td colspan="3"><input type="text" size="40" maxlength="60" name="name" value="<?php echo $this->control->tpl['name']; ?>"></td>
|
||||
</tr>
|
||||
|
||||
<?php if (getDolGlobalString('SOCIETE_USEPREFIX')) { ?>
|
||||
|
||||
@@ -56,7 +56,7 @@ if (empty($conf) || !is_object($conf)) {
|
||||
|
||||
<tr>
|
||||
<td><span class="fieldrequired"><?php echo $langs->trans('LastName'); ?></span></td>
|
||||
<td><input type="text" size="30" maxlength="60" name="nom" value="<?php echo $this->control->tpl['nom']; ?>"></td>
|
||||
<td><input type="text" size="30" maxlength="60" name="name" value="<?php echo $this->control->tpl['name']; ?>"></td>
|
||||
<?php if (getDolGlobalString('SOCIETE_USEPREFIX')) { ?>
|
||||
<td><?php echo $langs->trans('Prefix'); ?></td>
|
||||
<td><input type="text" size="5" maxlength="5" name="prefix_comm" value="<?php echo $this->control->tpl['prefix_comm']; ?>"></td>
|
||||
|
||||
@@ -46,7 +46,7 @@ if (empty($conf) || !is_object($conf)) {
|
||||
|
||||
<tr>
|
||||
<td><span class="fieldrequired"><?php echo $langs->trans('Name'); ?></span></td>
|
||||
<td colspan="3"><input type="text" size="40" maxlength="60" name="nom" value="<?php echo $this->control->tpl['nom']; ?>"></td>
|
||||
<td colspan="3"><input type="text" size="40" maxlength="60" name="name" value="<?php echo $this->control->tpl['name']; ?>"></td>
|
||||
</tr>
|
||||
|
||||
<?php if (getDolGlobalString('SOCIETE_USEPREFIX')) { ?>
|
||||
|
||||
Reference in New Issue
Block a user