mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-05-15 19:23:59 -04:00
make employees form using tabs (#116)
There is an issue with fieldset being too short
This commit is contained in:
@@ -166,7 +166,6 @@ function get_person_data_row($person,$controller)
|
||||
{
|
||||
$CI =& get_instance();
|
||||
$controller_name=strtolower(get_class($CI));
|
||||
$modal_class = $controller_name == 'employees' ? 'modal-dlg-wide' : '';
|
||||
|
||||
$table_data_row='<tr>';
|
||||
$table_data_row.="<td width='5%'><input type='checkbox' id='person_$person->person_id' value='".$person->person_id."'/></td>";
|
||||
@@ -174,7 +173,7 @@ function get_person_data_row($person,$controller)
|
||||
$table_data_row.='<td width="20%">'.character_limiter($person->first_name,13).'</td>';
|
||||
$table_data_row.='<td width="30%">'.mailto($person->email,character_limiter($person->email,22)).'</td>';
|
||||
$table_data_row.='<td width="20%">'.character_limiter($person->phone_number,13).'</td>';
|
||||
$table_data_row.='<td width="5%">'.anchor($controller_name."/view/$person->person_id", $CI->lang->line('common_edit'),array('class'=>"modal-dlg modal-btn-submit $modal_class",'title'=>$CI->lang->line($controller_name.'_update'))).'</td>';
|
||||
$table_data_row.='<td width="5%">'.anchor($controller_name."/view/$person->person_id", $CI->lang->line('common_edit'), array('class'=>"modal-dlg modal-btn-submit", 'title'=>$CI->lang->line($controller_name.'_update'))).'</td>';
|
||||
$table_data_row.='</tr>';
|
||||
|
||||
return $table_data_row;
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<?php
|
||||
|
||||
$lang["employees_basic_information"] = "Employee Basic Information";
|
||||
$lang["employees_basic_information"] = "Information";
|
||||
$lang["employees_cannot_be_deleted"] = "Could not deleted selected employees, one or more of the employees has processed sales or you are trying to delete yourself :)";
|
||||
$lang["employees_confirm_delete"] = "Are you sure you want to delete the selected employees?";
|
||||
$lang["employees_employee"] = "Employee";
|
||||
$lang["employees_error_adding_updating"] = "Error adding/updating employee";
|
||||
$lang["employees_error_deleting_demo_admin"] = "You can not delete the demo admin user";
|
||||
$lang["employees_error_updating_demo_admin"] = "You can not change the demo admin user";
|
||||
$lang["employees_login_info"] = "Employee Login Info";
|
||||
$lang["employees_login_info"] = "Login";
|
||||
$lang["employees_new"] = "New Employee";
|
||||
$lang["employees_none_selected"] = "You have not selected any employees to delete";
|
||||
$lang["employees_one_or_multiple"] = "employee(s)";
|
||||
@@ -16,7 +16,7 @@ $lang["employees_password_minlength"] = "Passwords must be at least 8 characters
|
||||
$lang["employees_password_must_match"] = "Passwords do not match";
|
||||
$lang["employees_password_required"] = "Password is required";
|
||||
$lang["employees_permission_desc"] = "Check the boxes below to grant access to modules";
|
||||
$lang["employees_permission_info"] = "Employee Permissions and Access";
|
||||
$lang["employees_permission_info"] = "Permissions";
|
||||
$lang["employees_repeat_password"] = "Password Again";
|
||||
$lang["employees_successful_adding"] = "You have successfully added employee";
|
||||
$lang["employees_successful_deleted"] = "You have successfully deleted";
|
||||
|
||||
@@ -1,102 +1,120 @@
|
||||
<?php echo form_open('employees/save/'.$person_info->person_id, array('id'=>'employee_form', 'class'=> 'form-horizontal')); ?>
|
||||
<div id="required_fields_message"><?php echo $this->lang->line('common_fields_required_message'); ?></div>
|
||||
<ul id="error_message_box" class="error_message_box"></ul>
|
||||
<fieldset id="employee_basic_info">
|
||||
<legend><?php echo $this->lang->line("employees_basic_information"); ?></legend>
|
||||
<?php $this->load->view("people/form_basic_info"); ?>
|
||||
</fieldset>
|
||||
|
||||
<fieldset id="employee_login_info">
|
||||
<legend><?php echo $this->lang->line("employees_login_info"); ?></legend>
|
||||
<div class="form-group form-group-sm">
|
||||
<?php echo form_label($this->lang->line('employees_username'), 'username', array('class'=>'required control-label col-xs-3')); ?>
|
||||
<div class='col-xs-6'>
|
||||
<div class="input-group">
|
||||
<span class="input-group-addon input-sm"><span class="glyphicon glyphicon-user"></span></span>
|
||||
<?php echo form_input(array(
|
||||
'name'=>'username',
|
||||
'id'=>'username',
|
||||
'class'=>'form-control input-sm',
|
||||
'value'=>$person_info->username)
|
||||
);?>
|
||||
</div>
|
||||
</div>
|
||||
<ul class="nav nav-tabs nav-justified" data-tabs="tabs">
|
||||
<li class="active" role="presentation">
|
||||
<a data-toggle="tab" href="#employee_basic_info"><?php echo $this->lang->line("employees_basic_information"); ?></a>
|
||||
</li>
|
||||
<li role="presentation">
|
||||
<a data-toggle="tab" href="#employee_login_info"><?php echo $this->lang->line("employees_login_info"); ?></a>
|
||||
</li>
|
||||
<li role="presentation">
|
||||
<a data-toggle="tab" href="#employee_permission_info"><?php echo $this->lang->line("employees_permission_info"); ?></a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<div class="tab-content">
|
||||
<div class="tab-pane fade in active" id="employee_basic_info">
|
||||
<fieldset>
|
||||
<?php $this->load->view("people/form_basic_info"); ?>
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
<?php $password_label_attributes = $person_info->person_id == "" ? array('class'=>'required') : array(); ?>
|
||||
|
||||
<div class="form-group form-group-sm">
|
||||
<?php echo form_label($this->lang->line('employees_password'), 'password',array_merge($password_label_attributes, array('class' => 'col-xs-3 control-label'))); ?>
|
||||
<div class='col-xs-6'>
|
||||
<div class="input-group">
|
||||
<span class="input-group-addon input-sm"><span class="glyphicon glyphicon-asterisk"></span></span>
|
||||
<?php echo form_password(array(
|
||||
'name'=>'password',
|
||||
'id'=>'password',
|
||||
'class'=>'form-control input-sm')
|
||||
);?>
|
||||
<div class="tab-pane" id="employee_login_info">
|
||||
<fieldset>
|
||||
<div class="form-group form-group-sm">
|
||||
<?php echo form_label($this->lang->line('employees_username'), 'username', array('class'=>'required control-label col-xs-3')); ?>
|
||||
<div class='col-xs-6'>
|
||||
<div class="input-group">
|
||||
<span class="input-group-addon input-sm"><span class="glyphicon glyphicon-user"></span></span>
|
||||
<?php echo form_input(array(
|
||||
'name'=>'username',
|
||||
'id'=>'username',
|
||||
'class'=>'form-control input-sm',
|
||||
'value'=>$person_info->username)
|
||||
);?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php $password_label_attributes = $person_info->person_id == "" ? array('class'=>'required') : array(); ?>
|
||||
|
||||
<div class="form-group form-group-sm">
|
||||
<?php echo form_label($this->lang->line('employees_password'), 'password', array_merge($password_label_attributes, array('class'=>'col-xs-3 control-label'))); ?>
|
||||
<div class='col-xs-6'>
|
||||
<div class="input-group">
|
||||
<span class="input-group-addon input-sm"><span class="glyphicon glyphicon-asterisk"></span></span>
|
||||
<?php echo form_password(array(
|
||||
'name'=>'password',
|
||||
'id'=>'password',
|
||||
'class'=>'form-control input-sm')
|
||||
);?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group form-group-sm">
|
||||
<?php echo form_label($this->lang->line('employees_repeat_password'), 'repeat_password', array_merge($password_label_attributes, array('class'=>'col-xs-3 control-label'))); ?>
|
||||
<div class='col-xs-6'>
|
||||
<div class="input-group">
|
||||
<span class="input-group-addon input-sm"><span class="glyphicon glyphicon-asterisk"></span></span>
|
||||
<?php echo form_password(array(
|
||||
'name'=>'repeat_password',
|
||||
'id'=>'repeat_password',
|
||||
'class'=>'form-control input-sm')
|
||||
);?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
<div class="form-group form-group-sm">
|
||||
<?php echo form_label($this->lang->line('employees_repeat_password'), 'repeat_password',array_merge($password_label_attributes, array('class' => 'col-xs-3 control-label'))); ?>
|
||||
<div class='col-xs-6'>
|
||||
<div class="input-group">
|
||||
<span class="input-group-addon input-sm"><span class="glyphicon glyphicon-asterisk"></span></span>
|
||||
<?php echo form_password(array(
|
||||
'name'=>'repeat_password',
|
||||
'id'=>'repeat_password',
|
||||
'class'=>'form-control input-sm')
|
||||
);?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
<div class="tab-pane" id="employee_permission_info">
|
||||
<fieldset>
|
||||
<p><?php echo $this->lang->line("employees_permission_desc"); ?></p>
|
||||
|
||||
<fieldset id="employee_permission_info">
|
||||
<legend><?php echo $this->lang->line("employees_permission_info"); ?></legend>
|
||||
<p><?php echo $this->lang->line("employees_permission_desc"); ?></p>
|
||||
|
||||
<ul id="permission_list">
|
||||
<?php
|
||||
foreach($all_modules->result() as $module)
|
||||
{
|
||||
?>
|
||||
<li>
|
||||
<?php echo form_checkbox("grants[]",$module->module_id,$this->Employee->has_grant($module->module_id,$person_info->person_id),"class='module'"); ?>
|
||||
<span class="medium"><?php echo $this->lang->line('module_'.$module->module_id);?>:</span>
|
||||
<span class="small"><?php echo $this->lang->line('module_'.$module->module_id.'_desc');?></span>
|
||||
<ul id="permission_list">
|
||||
<?php
|
||||
foreach($all_subpermissions->result() as $permission)
|
||||
{
|
||||
$exploded_permission = explode('_', $permission->permission_id);
|
||||
if ($permission->module_id == $module->module_id)
|
||||
{
|
||||
$lang_key = $module->module_id.'_'.$exploded_permission[1];
|
||||
$lang_line = $this->lang->line($lang_key);
|
||||
$lang_line = ($this->lang->line_tbd($lang_key) == $lang_line) ? $exploded_permission[1] : $lang_line;
|
||||
if (empty($lang_line))
|
||||
foreach($all_modules->result() as $module)
|
||||
{
|
||||
?>
|
||||
<li>
|
||||
<?php echo form_checkbox("grants[]",$module->module_id,$this->Employee->has_grant($module->module_id,$person_info->person_id),"class='module'"); ?>
|
||||
<span class="medium"><?php echo $this->lang->line('module_'.$module->module_id);?>:</span>
|
||||
<span class="small"><?php echo $this->lang->line('module_'.$module->module_id.'_desc');?></span>
|
||||
<?php
|
||||
foreach($all_subpermissions->result() as $permission)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
$exploded_permission = explode('_', $permission->permission_id);
|
||||
if ($permission->module_id == $module->module_id)
|
||||
{
|
||||
$lang_key = $module->module_id.'_'.$exploded_permission[1];
|
||||
$lang_line = $this->lang->line($lang_key);
|
||||
$lang_line = ($this->lang->line_tbd($lang_key) == $lang_line) ? $exploded_permission[1] : $lang_line;
|
||||
if (empty($lang_line))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
?>
|
||||
<ul>
|
||||
<li>
|
||||
<?php echo form_checkbox("grants[]", $permission->permission_id, $this->Employee->has_grant($permission->permission_id,$person_info->person_id)); ?>
|
||||
<span class="medium"><?php echo $lang_line ?></span>
|
||||
</li>
|
||||
</ul>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
?>
|
||||
</li>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
<ul>
|
||||
<li>
|
||||
<?php echo form_checkbox("grants[]",$permission->permission_id,$this->Employee->has_grant($permission->permission_id,$person_info->person_id)); ?>
|
||||
<span class="medium"><?php echo $lang_line ?></span>
|
||||
</li>
|
||||
</ul>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
?>
|
||||
</li>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
</ul>
|
||||
</fieldset>
|
||||
</ul>
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
<?php echo form_close(); ?>
|
||||
|
||||
<script type='text/javascript'>
|
||||
|
||||
@@ -159,12 +159,12 @@ function post_bulk_form_submit(response)
|
||||
<div id="title_bar">
|
||||
<div id="title" class="float_left"><?php echo $this->lang->line('common_list_of').' '.$this->lang->line('module_'.$controller_name); ?></div>
|
||||
<?php echo anchor("$controller_name/excel_import",
|
||||
"<div class='btn btn-info btn-sm pull-right'><span>" . $this->lang->line('common_import_excel') . "</span></div>",
|
||||
array('class'=>'modal-dlg modal-btn-submit none', 'title'=>$this->lang->line('common_import_excel')));
|
||||
"<div class='btn btn-info btn-sm pull-right'><span>" . $this->lang->line('common_import_excel') . "</span></div>",
|
||||
array('class'=>'modal-dlg modal-btn-submit none', 'title'=>$this->lang->line('common_import_excel')));
|
||||
?>
|
||||
<?php echo anchor("$controller_name/view/-1",
|
||||
"<div class='btn btn-info btn-sm pull-right' style='margin-right: 10px;'><span>" . $this->lang->line($controller_name . '_new') . "</span></div>",
|
||||
array('class'=>'modal-dlg modal-btn-new modal-btn-submit', 'title'=>$this->lang->line($controller_name . '_new')));
|
||||
"<div class='btn btn-info btn-sm pull-right' style='margin-right: 10px;'><span>" . $this->lang->line($controller_name . '_new') . "</span></div>",
|
||||
array('class'=>'modal-dlg modal-btn-new modal-btn-submit', 'title'=>$this->lang->line($controller_name . '_new')));
|
||||
?>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -189,10 +189,8 @@ $(document).ready(function()
|
||||
country : {
|
||||
dependencies : ["state", "country"]
|
||||
}
|
||||
|
||||
},
|
||||
language : '<?php echo $this->config->item('language');?>'
|
||||
});
|
||||
|
||||
});
|
||||
</script>
|
||||
@@ -63,16 +63,16 @@ function post_person_form_submit(response)
|
||||
{
|
||||
?>
|
||||
<?php echo anchor("$controller_name/excel_import",
|
||||
"<div class='btn btn-info btn-sm pull-right''><span>" . $this->lang->line('common_import_excel') . "</span></div>",
|
||||
array('class'=>"modal-dlg modal-btn-submit", 'title'=>$this->lang->line('items_import_items_excel')));
|
||||
"<div class='btn btn-info btn-sm pull-right'><span>" . $this->lang->line('common_import_excel') . "</span></div>",
|
||||
array('class'=>'modal-dlg modal-btn-submit', 'title'=>$this->lang->line('items_import_items_excel')));
|
||||
?>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
|
||||
<?php $dlog_class = ($controller_name == 'employees' ? 'modal-dlg-wide' : ''); echo anchor("$controller_name/view/-1",
|
||||
"<div class='btn btn-info btn-sm pull-right' style='margin-right: 10px;'><span>" . $this->lang->line($controller_name . '_new') . "</span></div>",
|
||||
array('class'=>"modal-dlg modal-btn-submit $dlog_class", 'title'=>$this->lang->line($controller_name . '_new')));
|
||||
<?php echo anchor("$controller_name/view/-1",
|
||||
"<div class='btn btn-info btn-sm pull-right' style='margin-right: 10px;'><span>" . $this->lang->line($controller_name . '_new') . "</span></div>",
|
||||
array('class'=>'modal-dlg modal-btn-submit', 'title'=>$this->lang->line($controller_name . '_new')));
|
||||
?>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
label,de-CH,nl-BE,es,en,fr,zh,ru,th,tr,id
|
||||
employees_basic_information,Mitarbeiter-Information,Employee Basic Information,Información Básica de Empleados,Employee Basic Information,Fiche Employé,員工基本資料,Сотрудник Базовая Информация,ข้อมูลพื้นฐานของพนักงาน,Personel Temel Bilgileri,Informasi Karyawan
|
||||
employees_basic_information,Mitarbeiter-Information,Information,Información Básica de Empleados,Information,Fiche Employé,員工基本資料,Сотрудник Базовая Информация,ข้อมูลพื้นฐานของพนักงาน,Personel Temel Bilgileri,Informasi Karyawan
|
||||
employees_cannot_be_deleted,"Konnte gewählten Mitarbeiter nicht löschen, einer oder mehrere weisen Verkäufe aus.","Could not deleted selected employees, one or more of the employees has processed sales or you are trying to delete yourself :)",No se pudieron borrar empleados. Uno o más empleados tiene ventas procesadas o estás tratando de borrarte a tí mismo(a).,"Could not deleted selected employees, one or more of the employees has processed sales or you are trying to delete yourself :)","Impossible de supprimer. Un ou plusieurs des employés à éffectué une vente, ou alors vous essayez de vous supprimer vous-meme :)",無法刪除選定的僱員,選定的員工中已有銷售紀錄或你正在試圖刪除自己 :),"Не возможно удалить выбранный сотрудников, одного или более работников обработал продаж или вы пытаетесь удалить себя",ไม่สามารถลบข้อมูลพนักงานที่กำลังปฏิบัติงานอยู่ได้,"Seçili personel silinemedi, personellerin satışları var yada kendinizi silmeye çalışıyorsunuz",Karyawan terpilih tidak bisa dihapus; satu atau lebih dari para pekerja telah memproses penjualan atau Anda mencoba untuk menghapus diri Anda sendiri:)
|
||||
employees_confirm_delete,Wollen Sie diesen Mitarbeiter wirklich löschen?,Bent u zeker dat u de geselecteerde werknemers wil verwijderen?,¿Seguro(a) que quieres borrar los empleados seleccionados?,Are you sure you want to delete the selected employees?,Voulez-vous supprimer ces employés?,你確定要刪除所選的員工嗎?,"Вы уверены, что хотите удалить выбранную сотрудников?",ยืนยันการลบข้อมูลพนักงาน,Seçili personelleri silmek istediğinize emin misiniz?,Apakah Anda yakin ingin menghapus karyawan yang dipilih?
|
||||
employees_employee,Mitarbeiter,Werknemer,Empleado,Employee,Employé,員工,Сотрудник,พนักงาน,Personel,Karyawan
|
||||
employees_error_adding_updating,Fehler beim Hinzufügen/Ändern,Error adding/updating employee,Error al agregar/actualizar empleado,Error adding/updating employee,Erreur d\'ajout/édition d\'employé,添加/更新員工錯誤,Ошибка при добавлении/обновлении сотрудника,การปรับปรุงข้อมูลผิดพลาด,Personel ekleme/güncelleme hatası,Kesalahan menambah / memperbarui karyawan
|
||||
employees_error_deleting_demo_admin,Sie können den Admin nicht löschen,You can not delete the demo admin user,No puedes borrar el usuario admin del demo,You can not delete the demo admin user,Vous ne pouvez pas effacer l\'utilisateur de démonstration admin,您不能刪除admin用戶,Вы не можете удалить пользователь демонстрация аккаунт,You can not delete the demo admin user,Admin güncellenemez,Anda tidak dapat menghapus Demo admin user
|
||||
employees_error_updating_demo_admin,Sie können den Admin nicht ändern,You can not change the demo admin user,No puedes cambiar el usuario admin del demo,You can not change the demo admin user,Vous ne pouvez pas modifier l\'utilisateur de démonstration admin,您不能更改admin用戶,Вы не можете изменить пользователь демонстрация аккаунт,You can not change the demo admin user,Admin silinemez,Anda tidak dapat merubah Demo admin user
|
||||
employees_login_info,Mitarbeiter Login,Employee Login Info,Información de Ingreso del Empleado,Employee Login Info,Détails de Connexion Employé,員工登錄資料,Информация для сотрудников Входа,Employee Login Info,Personel Giriş Bilgileri,Info Login Karyawan
|
||||
employees_login_info,Mitarbeiter Login,Login,Información de Ingreso del Empleado,Login,Détails de Connexion Employé,員工登錄資料,Информация для сотрудников Входа,Login,Personel Giriş Bilgileri,Info Login Karyawan
|
||||
employees_new,Neuer Mitarbeiter,N. Werknemer,Nuevo Empleado,New Employee,Nouvel Employé,新員工,Новый Сотрудник,เพิ่มพนักงาน,Yeni Personel,Karyawan Baru
|
||||
employees_none_selected,Sie haben keinen Mitarbeiter zum Löschen gewählt,U hebt geen werknemers geselecteerd,No has seleccionado empleados para borrar,You have not selected any employees to delete,Aucun employé sélectionné pour la suppression,您還沒有選擇任何員工進行刪除,Вы не выбрали ни сотрудников для удаления,โปรดเลือกพนักงาน,Silmek için çalışan seçmediniz,Anda belum memilih karyawan untuk menghapus
|
||||
employees_one_or_multiple,Mitarbeiter,werknemer(s) verwijderd,empleado(s),employee(s),employé(s),員工,сотрудник(ов),พนักงาน,personel,Karyawan
|
||||
@@ -15,7 +15,7 @@ employees_password_minlength,Passwort muss mindestens 8 Zeichen lang sein,Paswoo
|
||||
employees_password_must_match,Passwörter passen nicht überein,Paswoorden komen niet overeen,Las Contraseñas no coinciden,Passwords do not match,Mots de passe non corcordants,密碼與確認密碼不一致,Пароли не совпадают,รหัสผ่านไม่ตรงกัน,Şifreler uyuşmuyor,Kata Sandi tidak cocok
|
||||
employees_password_required,Passwort ist erforderlich,Paswoord moet ingevuld worden,La Contraseña es requerida,Password is required,Le Mot de passe est requis,請輸入密碼,Пароль обязательно,ต้องกรอกรหัสผ่าน,Şifre zorunlu alandır,Kata Sandi wajib diisi
|
||||
employees_permission_desc,"Klicken Sie unten, um die jeweiligen Zugangsrechte zu aktivieren",Check the boxes below to grant access to modules,Activa las cajas debajo para permitir el acceso a los módulos,Check the boxes below to grant access to modules,Cochez les cases cis-dessous pour autoriser l\'accès aux modules,勾選後授予使用該模組功能,"Отметьте флажками ниже, чтобы предоставить доступ к модулям",Check the boxes below to grant access to modules,Modül yetkisi vermek için kutuları işaretleyin,Tandai kotak di bawah ini untuk memberikan akses ke Modul
|
||||
employees_permission_info,Mitarbeiter Zugangsrechte,Employee Permissions and Access,Permisos y Acceso del Empleado,Employee Permissions and Access,Droits d\'Accès Employé,員工權限,Сотрудник разрешениями и правами доступа,Employee Permissions and Access,Personel İzin ve Yetkileri,Hak Akses Karyawan
|
||||
employees_permission_info,Mitarbeiter Zugangsrechte,Permissions,Permisos y Acceso del Empleado,Permissions,Droits d\'Accès Employé,員工權限,Сотрудник разрешениями и правами доступа,Permissions,Personel İzin ve Yetkileri,Hak Akses Karyawan
|
||||
employees_repeat_password,Wiederhole Passwort,Herhaal Paswoord,Repita Contraseña,Password Again,Re-saisissez le mot de passe,確認密碼,Повторяете пароль,Password Again,Şifre (Tekrar),Ulang Kata Sandi
|
||||
employees_successful_adding,Hinzufügen erfolgreich,You have successfully added employee,Has agregado el empleado satisfactoriamente,You have successfully added employee,Employé ajouté,新增員工資料成功,Вы успешно добавили сотрудника,เพิ่มข้อมูลพนักงานเรียบร้อยแล้ว,Personel eklendi,Anda telah berhasil menambahkan karyawan
|
||||
employees_successful_deleted,Löschung erfolgreich,Er werd(en),Has borrado satisfactoriamente a,You have successfully deleted,Suppréssion d\'employé réussie,成功刪除員工資料,Вы успешно удалили,ลบข้อมูลสำเร็จ,Silme başarılı,Anda telah berhasil menghapus
|
||||
|
||||
|
Reference in New Issue
Block a user