mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-04-08 17:08:04 -04:00
fixed error reporting, fixed table_helper, added translations, fixed bootstrap grid, various fixes (#472)
This commit is contained in:
@@ -69,13 +69,13 @@ class Config extends Secure_area
|
||||
'custom10_name'=>$this->input->post('custom10_name')
|
||||
);
|
||||
|
||||
$result = $this->Appconfig->batch_save($batch_save_data);
|
||||
$success = $result ? true : false;
|
||||
|
||||
echo json_encode(array('success'=>$success, 'message'=>$this->lang->line('config_saved_' . ($success ? '' : 'un') . 'successfully')));
|
||||
$result = $this->Appconfig->batch_save($batch_save_data);
|
||||
$success = $result ? true : false;
|
||||
|
||||
echo json_encode(array('success'=>$success, 'message'=>$this->lang->line('config_saved_' . ($success ? '' : 'un') . 'successfully')));
|
||||
}
|
||||
|
||||
function save_locale()
|
||||
function save_locale()
|
||||
{
|
||||
$batch_save_data = array(
|
||||
'currency_symbol'=>$this->input->post('currency_symbol'),
|
||||
@@ -93,11 +93,11 @@ class Config extends Secure_area
|
||||
|
||||
$result = $this->Appconfig->batch_save($batch_save_data);
|
||||
$success = $result ? true : false;
|
||||
|
||||
|
||||
echo json_encode(array('success'=>$success, 'message'=>$this->lang->line('config_saved_' . ($success ? '' : 'un') . 'successfully')));
|
||||
}
|
||||
|
||||
function save_message()
|
||||
function save_message()
|
||||
{
|
||||
$batch_save_data = array(
|
||||
'msg_msg'=>$this->input->post('msg_msg'),
|
||||
@@ -106,10 +106,10 @@ class Config extends Secure_area
|
||||
'msg_src'=>$this->input->post('msg_src')
|
||||
);
|
||||
|
||||
$result = $this->Appconfig->batch_save($batch_save_data);
|
||||
$success = $result ? true : false;
|
||||
|
||||
echo json_encode(array('success'=>$success, 'message'=>$this->lang->line('config_saved_' . ($success ? '' : 'un') . 'successfully')));
|
||||
$result = $this->Appconfig->batch_save($batch_save_data);
|
||||
$success = $result ? true : false;
|
||||
|
||||
echo json_encode(array('success'=>$success, 'message'=>$this->lang->line('config_saved_' . ($success ? '' : 'un') . 'successfully')));
|
||||
}
|
||||
|
||||
function stock_locations()
|
||||
|
||||
@@ -11,12 +11,14 @@ class Messages extends Secure_area
|
||||
public function index()
|
||||
{
|
||||
$data['controller_name'] = $this->get_controller_name();
|
||||
|
||||
$this->load->view('messages/sms');
|
||||
}
|
||||
|
||||
function view($person_id=-1)
|
||||
{
|
||||
$data['person_info'] = $this->Person->get_info($person_id);
|
||||
|
||||
$this->load->view('messages/form_sms', $data);
|
||||
}
|
||||
|
||||
@@ -24,24 +26,20 @@ class Messages extends Secure_area
|
||||
{
|
||||
$username = $this->config->item('msg_uid');
|
||||
$password = $this->config->item('msg_pwd');
|
||||
$originator = $this->config->item('msg_src');
|
||||
$phone = $this->input->post('phone');
|
||||
$message = $this->input->post('msg');
|
||||
$message = $this->input->post('message');
|
||||
$originator = $this->config->item('msg_src');
|
||||
|
||||
$response = $this->sms->sendSMS($username, $password, $phone, $message, $originator);
|
||||
|
||||
$data = array();
|
||||
|
||||
if($response)
|
||||
{
|
||||
$data['success'] = $this->lang->line('messages_successfully_sent') . ' ' . $phone;
|
||||
echo json_encode(array('success'=>true, 'message'=>$this->lang->line('messages_successfully_sent') . ' ' . $phone));
|
||||
}
|
||||
else
|
||||
{
|
||||
$data['error'] = $this->lang->line('messages_unsuccessfully_sent') . ' ' . $phone;
|
||||
echo json_encode(array('success'=>false, 'message'=>$this->lang->line('messages_unsuccessfully_sent') . ' ' . $phone));
|
||||
}
|
||||
|
||||
$this->load->view('messages/sms', $data);
|
||||
}
|
||||
|
||||
function send_form($person_id=-1)
|
||||
@@ -49,8 +47,8 @@ class Messages extends Secure_area
|
||||
$username = $this->config->item('msg_uid');
|
||||
$password = $this->config->item('msg_pwd');
|
||||
$phone = $this->input->post('phone');
|
||||
$message = $this->input->post('msg');
|
||||
$originator = $this->config->item('company');
|
||||
$message = $this->input->post('message');
|
||||
$originator = $this->config->item('msg_src');
|
||||
|
||||
$response = $this->sms->sendSMS($username, $password, $phone, $message, $originator);
|
||||
|
||||
|
||||
@@ -145,8 +145,8 @@ function get_people_manage_table($people,$controller)
|
||||
$CI->lang->line('common_first_name'),
|
||||
$CI->lang->line('common_email'),
|
||||
$CI->lang->line('common_phone_number'),
|
||||
$CI->lang->line('common_send_msg'),
|
||||
$CI->lang->line('common_update'),);
|
||||
' ',
|
||||
' ');
|
||||
|
||||
$table.='<thead><tr>';
|
||||
foreach($headers as $header)
|
||||
@@ -187,13 +187,13 @@ function get_person_data_row($person,$controller)
|
||||
$controller_name=strtolower(get_class($CI));
|
||||
|
||||
$table_data_row='<tr>';
|
||||
$table_data_row.="<td width='5%'><input type='checkbox' id='person_$person->person_id' value='".$person->person_id."'/></td>";
|
||||
$table_data_row.="<td width='4%'><input type='checkbox' id='person_$person->person_id' value='".$person->person_id."'/></td>";
|
||||
$table_data_row.='<td width="20%">'.character_limiter($person->last_name,13).'</td>';
|
||||
$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('Messages'."/view/$person->person_id", '<span class="glyphicon glyphicon-envelope"></span>', array('class'=>"modal-dlg modal-btn-submit", 'title'=>$CI->lang->line('messages_send_msg'))).'</td>';
|
||||
$table_data_row.='<td width="5%">'.anchor($controller_name."/view/$person->person_id", '<span class="glyphicon glyphicon-edit"></span>', array('class'=>"modal-dlg modal-btn-submit", 'title'=>$CI->lang->line($controller_name.'_update'))).'</td>';
|
||||
$table_data_row.='<td width="3%">'.anchor("Messages/view/$person->person_id", '<span class="glyphicon glyphicon-phone"></span>', array('class'=>"modal-dlg modal-btn-submit", 'title'=>$CI->lang->line('messages_sms_send'))).'</td>';
|
||||
$table_data_row.='<td width="3%">'.anchor($controller_name."/view/$person->person_id", '<span class="glyphicon glyphicon-edit"></span>', array('class'=>"modal-dlg modal-btn-submit", 'title'=>$CI->lang->line($controller_name.'_update'))).'</td>';
|
||||
$table_data_row.='</tr>';
|
||||
|
||||
return $table_data_row;
|
||||
@@ -229,9 +229,9 @@ function get_supplier_manage_table($suppliers,$controller)
|
||||
$CI->lang->line('common_first_name'),
|
||||
$CI->lang->line('common_email'),
|
||||
$CI->lang->line('common_phone_number'),
|
||||
$CI->lang->line('common_send_msg'),
|
||||
$CI->lang->line('suppliers_supplier_id'),
|
||||
$CI->lang->line('common_update'),);
|
||||
' ',
|
||||
' ');
|
||||
|
||||
$table.='<thead><tr>';
|
||||
foreach($headers as $header)
|
||||
@@ -274,13 +274,13 @@ function get_supplier_data_row($supplier,$controller)
|
||||
$table_data_row='<tr>';
|
||||
$table_data_row.="<td width='2%'><input type='checkbox' id='person_$supplier->person_id' value='".$supplier->person_id."'/></td>";
|
||||
$table_data_row.='<td width="15%">'.character_limiter($supplier->company_name,13).'</td>';
|
||||
$table_data_row.='<td width="15%">'.character_limiter($supplier->agency_name,13).'</td>';
|
||||
$table_data_row.='<td width="14%">'.character_limiter($supplier->agency_name,13).'</td>';
|
||||
$table_data_row.='<td width="15%">'.character_limiter($supplier->last_name,13).'</td>';
|
||||
$table_data_row.='<td width="15%">'.character_limiter($supplier->first_name,13).'</td>';
|
||||
$table_data_row.='<td width="20%">'.mailto($supplier->email,character_limiter($supplier->email,22)).'</td>';
|
||||
$table_data_row.='<td width="10%">'.character_limiter($supplier->phone_number,13).'</td>';
|
||||
$table_data_row.='<td width="5%">'.anchor('Messages'."/view/$supplier->person_id", '<span class="glyphicon glyphicon-envelope"></span>', array('class'=>'modal-dlg modal-btn-submit' , 'title'=>$CI->lang->line('messages_send_msg'))).'</td>';
|
||||
$table_data_row.='<td width="5%">'.character_limiter($supplier->person_id,5).'</td>';
|
||||
$table_data_row.='<td width="3%">'.character_limiter($supplier->person_id,5).'</td>';
|
||||
$table_data_row.='<td width="3%">'.anchor("Messages/view/$supplier->person_id", '<span class="glyphicon glyphicon-phone"></span>', array('class'=>"modal-dlg modal-btn-submit", 'title'=>$CI->lang->line('messages_sms_send'))).'</td>';
|
||||
$table_data_row.='<td width="3%">'.anchor($controller_name."/view/$supplier->person_id", '<span class="glyphicon glyphicon-edit"></span>', array('class'=>"modal-dlg modal-btn-submit",'title'=>$CI->lang->line($controller_name.'_update'))).'</td>';
|
||||
$table_data_row.='</tr>';
|
||||
|
||||
|
||||
@@ -93,6 +93,15 @@ $lang["config_location"] = "Lagerort";
|
||||
$lang["config_location_configuration"] = "Lagerort";
|
||||
$lang["config_location_info"] = "Lagerort-Information";
|
||||
$lang["config_logout"] = "Wollen Sie eine Sicherung machen vor dem Beenden? Klicke [OK] für Sicherung";
|
||||
$lang["config_message"] = "Message";
|
||||
$lang["config_message_configuration"] = "Message Configuration";
|
||||
$lang["config_msg_msg"] = "Saved Text Message";
|
||||
$lang["config_msg_uid"] = "SMS-API Username";
|
||||
$lang["config_msg_uid_required"] = "SMS-API Username is a required field";
|
||||
$lang["config_msg_pwd"] = "SMS-API Password";
|
||||
$lang["config_msg_pwd_required"] = "SMS-API Password is a required field";
|
||||
$lang["config_msg_src"] = "SMS-API Sender ID";
|
||||
$lang["config_msg_src_required"] = "SMS-API Sender ID is a required field";
|
||||
$lang["config_number_format"] = "Zahlenformat";
|
||||
$lang["config_phone"] = "Telefon";
|
||||
$lang["config_phone_required"] = "Telefon ist erforderlich";
|
||||
|
||||
14
application/language/de-CH/messages_lang.php
Normal file
14
application/language/de-CH/messages_lang.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
$lang["messages_sms_send"] = "Send SMS";
|
||||
$lang["messages_first_name"] = "First name";
|
||||
$lang["messages_last_name"] = "Last name";
|
||||
$lang["messages_phone"] = "Phone number";
|
||||
$lang["messages_phone_placeholder"] = "Mobile Number(s) here...";
|
||||
$lang["messages_phone_number_required"] = "Phone number required";
|
||||
$lang["messages_message"] = "Message";
|
||||
$lang["messages_message_placeholder"] = "Your Message here...";
|
||||
$lang["messages_message_required"] = "Message required";
|
||||
$lang["messages_multiple_phones"] = "(In case of multiple recipients, enter mobile numbers separated by commas)";
|
||||
$lang["messages_successfully_sent"] = "Message successfully sent to: ";
|
||||
$lang["messages_unsuccessfully_sent"] = "Message unsuccessfully sent to: ";
|
||||
@@ -21,3 +21,5 @@ $lang["module_sales"] = "Verkauf";
|
||||
$lang["module_sales_desc"] = "Hinzufügen, Ändern, Löschen und Suchen";
|
||||
$lang["module_suppliers"] = "Lieferanten";
|
||||
$lang["module_suppliers_desc"] = "Hinzufügen, Ändern, Löschen und Suchen";
|
||||
$lang["module_messages"] = "Messages";
|
||||
$lang["module_messages_desc"] = "Send Messages to Customers, Suppliers, Employees et al.";
|
||||
|
||||
@@ -60,5 +60,3 @@ $lang["common_export_excel"] = "Excel Export";
|
||||
$lang["common_export_excel_yes"] = "Yes";
|
||||
$lang["common_export_excel_no"] = "No";
|
||||
$lang["common_required"] = "Required";
|
||||
$lang["common_send_msg"] = "SMS";
|
||||
$lang["common_update"] = "Update";
|
||||
|
||||
@@ -95,10 +95,13 @@ $lang["config_location_info"] = "Location Configuration Information";
|
||||
$lang["config_logout"] = "Don't you want to make a backup before logging out? Click [OK] to backup, [Cancel] to logout";
|
||||
$lang["config_message"] = "Message";
|
||||
$lang["config_message_configuration"] = "Message Configuration";
|
||||
$lang["config_msg_msg"] = "Saved Text Message:";
|
||||
$lang["config_msg_uid"] = "SMS-API UserName:";
|
||||
$lang["config_msg_pwd"] = "SMS-API Password:";
|
||||
$lang["config_msg_src"] = "SMS-API Sender ID:";
|
||||
$lang["config_msg_msg"] = "Saved Text Message";
|
||||
$lang["config_msg_uid"] = "SMS-API Username";
|
||||
$lang["config_msg_uid_required"] = "SMS-API Username is a required field";
|
||||
$lang["config_msg_pwd"] = "SMS-API Password";
|
||||
$lang["config_msg_pwd_required"] = "SMS-API Password is a required field";
|
||||
$lang["config_msg_src"] = "SMS-API Sender ID";
|
||||
$lang["config_msg_src_required"] = "SMS-API Sender ID is a required field";
|
||||
$lang["config_number_format"] = "Number Format";
|
||||
$lang["config_phone"] = "Company Phone";
|
||||
$lang["config_phone_required"] = "Company phone is a required field";
|
||||
|
||||
@@ -1,3 +1,14 @@
|
||||
<?php
|
||||
|
||||
$lang["messages_send_msg"] = "SEND SMS";
|
||||
$lang["messages_sms_send"] = "Send SMS";
|
||||
$lang["messages_first_name"] = "First name";
|
||||
$lang["messages_last_name"] = "Last name";
|
||||
$lang["messages_phone"] = "Phone number";
|
||||
$lang["messages_phone_placeholder"] = "Mobile Number(s) here...";
|
||||
$lang["messages_phone_number_required"] = "Phone number required";
|
||||
$lang["messages_message"] = "Message";
|
||||
$lang["messages_message_placeholder"] = "Your Message here...";
|
||||
$lang["messages_message_required"] = "Message required";
|
||||
$lang["messages_multiple_phones"] = "(In case of multiple recipients, enter mobile numbers separated by commas)";
|
||||
$lang["messages_successfully_sent"] = "Message successfully sent to: ";
|
||||
$lang["messages_unsuccessfully_sent"] = "Message unsuccessfully sent to: ";
|
||||
|
||||
@@ -22,4 +22,4 @@ $lang["module_sales_desc"] = "Process sales and returns";
|
||||
$lang["module_suppliers"] = "Suppliers";
|
||||
$lang["module_suppliers_desc"] = "Add, Update, Delete, and Search suppliers";
|
||||
$lang["module_messages"] = "Messages";
|
||||
$lang["module_messages_desc"] = "Send Messages to Customers, Suppliers, Employees and Others";
|
||||
$lang["module_messages_desc"] = "Send Messages to Customers, Suppliers, Employees et al.";
|
||||
|
||||
@@ -93,6 +93,15 @@ $lang["config_location"] = "Inventario";
|
||||
$lang["config_location_configuration"] = "Ubicación de Inventario";
|
||||
$lang["config_location_info"] = "Información de Configuración de Ubicación";
|
||||
$lang["config_logout"] = "Desea hacer un respaldo antes de salir?";
|
||||
$lang["config_message"] = "Message";
|
||||
$lang["config_message_configuration"] = "Message Configuration";
|
||||
$lang["config_msg_msg"] = "Saved Text Message";
|
||||
$lang["config_msg_uid"] = "SMS-API Username";
|
||||
$lang["config_msg_uid_required"] = "SMS-API Username is a required field";
|
||||
$lang["config_msg_pwd"] = "SMS-API Password";
|
||||
$lang["config_msg_pwd_required"] = "SMS-API Password is a required field";
|
||||
$lang["config_msg_src"] = "SMS-API Sender ID";
|
||||
$lang["config_msg_src_required"] = "SMS-API Sender ID is a required field";
|
||||
$lang["config_number_format"] = "Formato de número";
|
||||
$lang["config_phone"] = "Teléfono del Comercio";
|
||||
$lang["config_phone_required"] = "Teléfono del Comercio es requerido";
|
||||
|
||||
14
application/language/es/messages_lang.php
Normal file
14
application/language/es/messages_lang.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
$lang["messages_sms_send"] = "Send SMS";
|
||||
$lang["messages_first_name"] = "First name";
|
||||
$lang["messages_last_name"] = "Last name";
|
||||
$lang["messages_phone"] = "Phone number";
|
||||
$lang["messages_phone_placeholder"] = "Mobile Number(s) here...";
|
||||
$lang["messages_phone_number_required"] = "Phone number required";
|
||||
$lang["messages_message"] = "Message";
|
||||
$lang["messages_message_placeholder"] = "Your Message here...";
|
||||
$lang["messages_message_required"] = "Message required";
|
||||
$lang["messages_multiple_phones"] = "(In case of multiple recipients, enter mobile numbers separated by commas)";
|
||||
$lang["messages_successfully_sent"] = "Message successfully sent to: ";
|
||||
$lang["messages_unsuccessfully_sent"] = "Message unsuccessfully sent to: ";
|
||||
@@ -21,3 +21,5 @@ $lang["module_sales"] = "Ventas";
|
||||
$lang["module_sales_desc"] = "Procesar ventas y devoluciones";
|
||||
$lang["module_suppliers"] = "Proveedores";
|
||||
$lang["module_suppliers_desc"] = "Agregar, Actualizar, Borrar y Buscar proveedores";
|
||||
$lang["module_messages"] = "Messages";
|
||||
$lang["module_messages_desc"] = "Send Messages to Customers, Suppliers, Employees et al.";
|
||||
|
||||
@@ -93,6 +93,15 @@ $lang["config_location"] = "Stock";
|
||||
$lang["config_location_configuration"] = "Stock Locations";
|
||||
$lang["config_location_info"] = "Location Configuration Information";
|
||||
$lang["config_logout"] = "Don't you want to make a backup before logging out?";
|
||||
$lang["config_message"] = "Message";
|
||||
$lang["config_message_configuration"] = "Message Configuration";
|
||||
$lang["config_msg_msg"] = "Saved Text Message";
|
||||
$lang["config_msg_uid"] = "SMS-API Username";
|
||||
$lang["config_msg_uid_required"] = "SMS-API Username is a required field";
|
||||
$lang["config_msg_pwd"] = "SMS-API Password";
|
||||
$lang["config_msg_pwd_required"] = "SMS-API Password is a required field";
|
||||
$lang["config_msg_src"] = "SMS-API Sender ID";
|
||||
$lang["config_msg_src_required"] = "SMS-API Sender ID is a required field";
|
||||
$lang["config_number_format"] = "Number Format";
|
||||
$lang["config_phone"] = "Téléphone";
|
||||
$lang["config_phone_required"] = "Le numéro de téléphone est requis";
|
||||
|
||||
14
application/language/fr/messages_lang.php
Normal file
14
application/language/fr/messages_lang.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
$lang["messages_sms_send"] = "Send SMS";
|
||||
$lang["messages_first_name"] = "First name";
|
||||
$lang["messages_last_name"] = "Last name";
|
||||
$lang["messages_phone"] = "Phone number";
|
||||
$lang["messages_phone_placeholder"] = "Mobile Number(s) here...";
|
||||
$lang["messages_phone_number_required"] = "Phone number required";
|
||||
$lang["messages_message"] = "Message";
|
||||
$lang["messages_message_placeholder"] = "Your Message here...";
|
||||
$lang["messages_message_required"] = "Message required";
|
||||
$lang["messages_multiple_phones"] = "(In case of multiple recipients, enter mobile numbers separated by commas)";
|
||||
$lang["messages_successfully_sent"] = "Message successfully sent to: ";
|
||||
$lang["messages_unsuccessfully_sent"] = "Message unsuccessfully sent to: ";
|
||||
@@ -21,3 +21,5 @@ $lang["module_sales"] = "Ventes";
|
||||
$lang["module_sales_desc"] = "Ventes et chiffre d'affaire";
|
||||
$lang["module_suppliers"] = "Fournisseurs";
|
||||
$lang["module_suppliers_desc"] = "Ajouter, Éditer, Supprimer, et Chercher des fournisseurs";
|
||||
$lang["module_messages"] = "Messages";
|
||||
$lang["module_messages_desc"] = "Send Messages to Customers, Suppliers, Employees et al.";
|
||||
|
||||
@@ -93,6 +93,15 @@ $lang["config_location"] = "Skladišta";
|
||||
$lang["config_location_configuration"] = "Mjesto skladišta";
|
||||
$lang["config_location_info"] = "Info o lokaciji skladišta";
|
||||
$lang["config_logout"] = "Želite napraviti arhivu prije nego izađete? Pritisnite [OK] za arhivu, [Cancel] to otkazivanje.";
|
||||
$lang["config_message"] = "Message";
|
||||
$lang["config_message_configuration"] = "Message Configuration";
|
||||
$lang["config_msg_msg"] = "Saved Text Message";
|
||||
$lang["config_msg_uid"] = "SMS-API Username";
|
||||
$lang["config_msg_uid_required"] = "SMS-API Username is a required field";
|
||||
$lang["config_msg_pwd"] = "SMS-API Password";
|
||||
$lang["config_msg_pwd_required"] = "SMS-API Password is a required field";
|
||||
$lang["config_msg_src"] = "SMS-API Sender ID";
|
||||
$lang["config_msg_src_required"] = "SMS-API Sender ID is a required field";
|
||||
$lang["config_number_format"] = "Format broja";
|
||||
$lang["config_phone"] = "Telefon tvrtke";
|
||||
$lang["config_phone_required"] = "Telefon tvrtke je potreban";
|
||||
|
||||
14
application/language/hr-HR/messages_lang.php
Normal file
14
application/language/hr-HR/messages_lang.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
$lang["messages_sms_send"] = "Send SMS";
|
||||
$lang["messages_first_name"] = "First name";
|
||||
$lang["messages_last_name"] = "Last name";
|
||||
$lang["messages_phone"] = "Phone number";
|
||||
$lang["messages_phone_placeholder"] = "Mobile Number(s) here...";
|
||||
$lang["messages_phone_number_required"] = "Phone number required";
|
||||
$lang["messages_message"] = "";
|
||||
$lang["messages_message_placeholder"] = "Your Message here...";
|
||||
$lang["messages_message_required"] = "Message required";
|
||||
$lang["messages_multiple_phones"] = "(In case of multiple recipients, enter mobile numbers separated by commas)";
|
||||
$lang["messages_successfully_sent"] = "Message successfully sent to: ";
|
||||
$lang["messages_unsuccessfully_sent"] = "Message unsuccessfully sent to: ";
|
||||
@@ -21,3 +21,5 @@ $lang["module_sales"] = "Prodaja";
|
||||
$lang["module_sales_desc"] = "Procesi prodaje i povrata";
|
||||
$lang["module_suppliers"] = "Dobavljači";
|
||||
$lang["module_suppliers_desc"] = "Dodaj, ažuriraj, obriši ili traži dobavljače";
|
||||
$lang["module_messages"] = "Messages";
|
||||
$lang["module_messages_desc"] = "Send Messages to Customers, Suppliers, Employees et al.";
|
||||
|
||||
@@ -93,6 +93,15 @@ $lang["config_location"] = "Készlet";
|
||||
$lang["config_location_configuration"] = "Készlet helye";
|
||||
$lang["config_location_info"] = "Helyszin konfigurációs információk";
|
||||
$lang["config_logout"] = "Nem szeretne mentést csinálni kilépés előtt? Kattintson az [OK]-ra a mentéshez, [Mégsem] a kilépéshez";
|
||||
$lang["config_message"] = "Message";
|
||||
$lang["config_message_configuration"] = "Message Configuration";
|
||||
$lang["config_msg_msg"] = "Saved Text Message";
|
||||
$lang["config_msg_uid"] = "SMS-API Username";
|
||||
$lang["config_msg_uid_required"] = "SMS-API Username is a required field";
|
||||
$lang["config_msg_pwd"] = "SMS-API Password";
|
||||
$lang["config_msg_pwd_required"] = "SMS-API Password is a required field";
|
||||
$lang["config_msg_src"] = "SMS-API Sender ID";
|
||||
$lang["config_msg_src_required"] = "SMS-API Sender ID is a required field";
|
||||
$lang["config_number_format"] = "Szám formátum";
|
||||
$lang["config_phone"] = "Cég telefonszáma";
|
||||
$lang["config_phone_required"] = "Cég telefonszáma kötelező mező";
|
||||
|
||||
14
application/language/hu-HU/messages_lang.php
Normal file
14
application/language/hu-HU/messages_lang.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
$lang["messages_sms_send"] = "Send SMS";
|
||||
$lang["messages_first_name"] = "First name";
|
||||
$lang["messages_last_name"] = "Last name";
|
||||
$lang["messages_phone"] = "Phone number";
|
||||
$lang["messages_phone_placeholder"] = "Mobile Number(s) here...";
|
||||
$lang["messages_phone_number_required"] = "Phone number required";
|
||||
$lang["messages_message"] = "Message";
|
||||
$lang["messages_message_placeholder"] = "Your Message here...";
|
||||
$lang["messages_message_required"] = "Message required";
|
||||
$lang["messages_multiple_phones"] = "(In case of multiple recipients, enter mobile numbers separated by commas)";
|
||||
$lang["messages_successfully_sent"] = "Message successfully sent to: ";
|
||||
$lang["messages_unsuccessfully_sent"] = "Message unsuccessfully sent to: ";
|
||||
@@ -21,3 +21,5 @@ $lang["module_sales"] = "Értékesítés";
|
||||
$lang["module_sales_desc"] = "Termékek értékesítése és visszavétele";
|
||||
$lang["module_suppliers"] = "Beszállítók";
|
||||
$lang["module_suppliers_desc"] = "Beszállítók hozzáadása, módosítása, törlése és keresése";
|
||||
$lang["module_messages"] = "Messages";
|
||||
$lang["module_messages_desc"] = "Send Messages to Customers, Suppliers, Employees et al.";
|
||||
|
||||
@@ -93,6 +93,15 @@ $lang["config_location"] = "Stock";
|
||||
$lang["config_location_configuration"] = "Stock Locations";
|
||||
$lang["config_location_info"] = "Location Configuration Information";
|
||||
$lang["config_logout"] = "Don't you want to make a backup before logging out?";
|
||||
$lang["config_message"] = "Message";
|
||||
$lang["config_message_configuration"] = "Message Configuration";
|
||||
$lang["config_msg_msg"] = "Saved Text Message";
|
||||
$lang["config_msg_uid"] = "SMS-API Username";
|
||||
$lang["config_msg_uid_required"] = "SMS-API Username is a required field";
|
||||
$lang["config_msg_pwd"] = "SMS-API Password";
|
||||
$lang["config_msg_pwd_required"] = "SMS-API Password is a required field";
|
||||
$lang["config_msg_src"] = "SMS-API Sender ID";
|
||||
$lang["config_msg_src_required"] = "SMS-API Sender ID is a required field";
|
||||
$lang["config_number_format"] = "Format Nomor";
|
||||
$lang["config_phone"] = "Telepon Perusahaan";
|
||||
$lang["config_phone_required"] = "Telepon Perusahaan wajib diisi";
|
||||
|
||||
14
application/language/id/messages_lang.php
Normal file
14
application/language/id/messages_lang.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
$lang["messages_sms_send"] = "Send SMS";
|
||||
$lang["messages_first_name"] = "First name";
|
||||
$lang["messages_last_name"] = "Last name";
|
||||
$lang["messages_phone"] = "Phone number";
|
||||
$lang["messages_phone_placeholder"] = "Mobile Number(s) here...";
|
||||
$lang["messages_phone_number_required"] = "Phone number required";
|
||||
$lang["messages_message"] = "Message";
|
||||
$lang["messages_message_placeholder"] = "Your Message here...";
|
||||
$lang["messages_message_required"] = "Message required";
|
||||
$lang["messages_multiple_phones"] = "(In case of multiple recipients, enter mobile numbers separated by commas)";
|
||||
$lang["messages_successfully_sent"] = "Message successfully sent to: ";
|
||||
$lang["messages_unsuccessfully_sent"] = "Message unsuccessfully sent to: ";
|
||||
@@ -21,3 +21,5 @@ $lang["module_sales"] = "Penjualan";
|
||||
$lang["module_sales_desc"] = "Proses Penjualan dan Retur";
|
||||
$lang["module_suppliers"] = "Pemasok";
|
||||
$lang["module_suppliers_desc"] = "Tambah, Rubah, Hapus, dan Cari Pemasok";
|
||||
$lang["module_messages"] = "Messages";
|
||||
$lang["module_messages_desc"] = "Send Messages to Customers, Suppliers, Employees et al.";
|
||||
|
||||
@@ -93,6 +93,15 @@ $lang["config_location"] = "Stock";
|
||||
$lang["config_location_configuration"] = "Stock Locaties";
|
||||
$lang["config_location_info"] = "Instellingen Locatie";
|
||||
$lang["config_logout"] = "Wilt u een backup maken alvorens uit te loggen?";
|
||||
$lang["config_message"] = "Message";
|
||||
$lang["config_message_configuration"] = "Message Configuration";
|
||||
$lang["config_msg_msg"] = "Saved Text Message";
|
||||
$lang["config_msg_uid"] = "SMS-API Username";
|
||||
$lang["config_msg_uid_required"] = "SMS-API Username is a required field";
|
||||
$lang["config_msg_pwd"] = "SMS-API Password";
|
||||
$lang["config_msg_pwd_required"] = "SMS-API Password is a required field";
|
||||
$lang["config_msg_src"] = "SMS-API Sender ID";
|
||||
$lang["config_msg_src_required"] = "SMS-API Sender ID is a required field";
|
||||
$lang["config_number_format"] = "Number Format";
|
||||
$lang["config_phone"] = "Telefoon";
|
||||
$lang["config_phone_required"] = "De telefoonnummer van het bedrijf moet ingevuld worden";
|
||||
|
||||
14
application/language/nl-BE/messages_lang.php
Normal file
14
application/language/nl-BE/messages_lang.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
$lang["messages_sms_send"] = "Send SMS";
|
||||
$lang["messages_first_name"] = "First name";
|
||||
$lang["messages_last_name"] = "Last name";
|
||||
$lang["messages_phone"] = "Phone number";
|
||||
$lang["messages_phone_placeholder"] = "Mobile Number(s) here...";
|
||||
$lang["messages_phone_number_required"] = "Phone number required";
|
||||
$lang["messages_message"] = "Message";
|
||||
$lang["messages_message_placeholder"] = "Your Message here...";
|
||||
$lang["messages_message_required"] = "Message required";
|
||||
$lang["messages_multiple_phones"] = "(In case of multiple recipients, enter mobile numbers separated by commas)";
|
||||
$lang["messages_successfully_sent"] = "Message successfully sent to: ";
|
||||
$lang["messages_unsuccessfully_sent"] = "Message unsuccessfully sent to: ";
|
||||
@@ -21,3 +21,5 @@ $lang["module_sales"] = "Kassa";
|
||||
$lang["module_sales_desc"] = "Verwerk aankopen en retours";
|
||||
$lang["module_suppliers"] = "Leveranciers";
|
||||
$lang["module_suppliers_desc"] = "Zoek, bewerk, verwijder en voeg leveranciers toe";
|
||||
$lang["module_messages"] = "Messages";
|
||||
$lang["module_messages_desc"] = "Send Messages to Customers, Suppliers, Employees et al.";
|
||||
|
||||
@@ -52,7 +52,7 @@ $lang["common_zip"] = "CEP";
|
||||
$lang["common_import"] = "Importar";
|
||||
$lang["common_download_import_template"] = "Baixar Modelo de importação Excel(CSV)";
|
||||
$lang["common_import_excel"] = "Importar do Excel";
|
||||
$lang["common_import_full_path"] = "Caminho completo para o arquivo do excel é necessário";
|
||||
$lang["common_import_full_path"] = "Caminho completo para o arquivo do Excel é necessário";
|
||||
$lang["common_import_select_file"] = "Selecionar o arquivo";
|
||||
$lang["common_import_change_file"] = "Requerido";
|
||||
$lang["common_import_remove_file"] = "Remover";
|
||||
|
||||
@@ -93,6 +93,15 @@ $lang["config_location"] = "Estoque";
|
||||
$lang["config_location_configuration"] = "Localização do Estoque";
|
||||
$lang["config_location_info"] = "Informações da localizaçãoo";
|
||||
$lang["config_logout"] = "Você não quer fazer uma cópia de segurança antes de sair? Clique [OK] para fazer a cópia de segurança";
|
||||
$lang["config_message"] = "Message";
|
||||
$lang["config_message_configuration"] = "Message Configuration";
|
||||
$lang["config_msg_msg"] = "Saved Text Message";
|
||||
$lang["config_msg_uid"] = "SMS-API Username";
|
||||
$lang["config_msg_uid_required"] = "SMS-API Username is a required field";
|
||||
$lang["config_msg_pwd"] = "SMS-API Password";
|
||||
$lang["config_msg_pwd_required"] = "SMS-API Password is a required field";
|
||||
$lang["config_msg_src"] = "SMS-API Sender ID";
|
||||
$lang["config_msg_src_required"] = "SMS-API Sender ID is a required field";
|
||||
$lang["config_number_format"] = "Formato do número";
|
||||
$lang["config_phone"] = "Telefone";
|
||||
$lang["config_phone_required"] = "Telefone da Empresa é requerido";
|
||||
|
||||
14
application/language/pt-BR/messages_lang.php
Normal file
14
application/language/pt-BR/messages_lang.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
$lang["messages_sms_send"] = "Send SMS";
|
||||
$lang["messages_first_name"] = "First name";
|
||||
$lang["messages_last_name"] = "Last name";
|
||||
$lang["messages_phone"] = "Phone number";
|
||||
$lang["messages_phone_placeholder"] = "Mobile Number(s) here...";
|
||||
$lang["messages_phone_number_required"] = "Phone number required";
|
||||
$lang["messages_message"] = "Message";
|
||||
$lang["messages_message_placeholder"] = "Your Message here...";
|
||||
$lang["messages_message_required"] = "Message required";
|
||||
$lang["messages_multiple_phones"] = "(In case of multiple recipients, enter mobile numbers separated by commas)";
|
||||
$lang["messages_successfully_sent"] = "Message successfully sent to: ";
|
||||
$lang["messages_unsuccessfully_sent"] = "Message unsuccessfully sent to: ";
|
||||
@@ -21,3 +21,5 @@ $lang["module_sales"] = "Vendas";
|
||||
$lang["module_sales_desc"] = "Processar vendas e devoluções";
|
||||
$lang["module_suppliers"] = "Fornecedores";
|
||||
$lang["module_suppliers_desc"] = "Adicionar, atualizar, excluir e Pesquisar fornecedores";
|
||||
$lang["module_messages"] = "Messages";
|
||||
$lang["module_messages_desc"] = "Send Messages to Customers, Suppliers, Employees et al.";
|
||||
|
||||
@@ -93,6 +93,15 @@ $lang["config_location"] = "Stock";
|
||||
$lang["config_location_configuration"] = "Stock Locations";
|
||||
$lang["config_location_info"] = "Location Configuration Information";
|
||||
$lang["config_logout"] = "Don't you want to make a backup before logging out?";
|
||||
$lang["config_message"] = "Message";
|
||||
$lang["config_message_configuration"] = "Message Configuration";
|
||||
$lang["config_msg_msg"] = "Saved Text Message";
|
||||
$lang["config_msg_uid"] = "SMS-API Username";
|
||||
$lang["config_msg_uid_required"] = "SMS-API Username is a required field";
|
||||
$lang["config_msg_pwd"] = "SMS-API Password";
|
||||
$lang["config_msg_pwd_required"] = "SMS-API Password is a required field";
|
||||
$lang["config_msg_src"] = "SMS-API Sender ID";
|
||||
$lang["config_msg_src_required"] = "SMS-API Sender ID is a required field";
|
||||
$lang["config_number_format"] = "Number Format";
|
||||
$lang["config_phone"] = "Телефон Компании";
|
||||
$lang["config_phone_required"] = "Телефон Компании обязательный пробел";
|
||||
|
||||
14
application/language/ru/messages_lang.php
Normal file
14
application/language/ru/messages_lang.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
$lang["messages_sms_send"] = "Send SMS";
|
||||
$lang["messages_first_name"] = "First name";
|
||||
$lang["messages_last_name"] = "Last name";
|
||||
$lang["messages_phone"] = "Phone number";
|
||||
$lang["messages_phone_placeholder"] = "Mobile Number(s) here...";
|
||||
$lang["messages_phone_number_required"] = "Phone number required";
|
||||
$lang["messages_message"] = "Message";
|
||||
$lang["messages_message_placeholder"] = "Your Message here...";
|
||||
$lang["messages_message_required"] = "Message required";
|
||||
$lang["messages_multiple_phones"] = "(In case of multiple recipients, enter mobile numbers separated by commas)";
|
||||
$lang["messages_successfully_sent"] = "Message successfully sent to: ";
|
||||
$lang["messages_unsuccessfully_sent"] = "Message unsuccessfully sent to: ";
|
||||
@@ -21,3 +21,5 @@ $lang["module_sales"] = "Продажа";
|
||||
$lang["module_sales_desc"] = "Процесс продажи и возвращается";
|
||||
$lang["module_suppliers"] = "Поставщики";
|
||||
$lang["module_suppliers_desc"] = "Добавление, обновление, удаление и поиск suppliers";
|
||||
$lang["module_messages"] = "Messages";
|
||||
$lang["module_messages_desc"] = "Send Messages to Customers, Suppliers, Employees et al.";
|
||||
|
||||
@@ -93,6 +93,15 @@ $lang["config_location"] = "Stock";
|
||||
$lang["config_location_configuration"] = "Stock Locations";
|
||||
$lang["config_location_info"] = "Location Configuration Information";
|
||||
$lang["config_logout"] = "Don't you want to make a backup before logging out?";
|
||||
$lang["config_message"] = "Message";
|
||||
$lang["config_message_configuration"] = "Message Configuration";
|
||||
$lang["config_msg_msg"] = "Saved Text Message";
|
||||
$lang["config_msg_uid"] = "SMS-API Username";
|
||||
$lang["config_msg_uid_required"] = "SMS-API Username is a required field";
|
||||
$lang["config_msg_pwd"] = "SMS-API Password";
|
||||
$lang["config_msg_pwd_required"] = "SMS-API Password is a required field";
|
||||
$lang["config_msg_src"] = "SMS-API Sender ID";
|
||||
$lang["config_msg_src_required"] = "SMS-API Sender ID is a required field";
|
||||
$lang["config_number_format"] = "รูปแบบตัวเลข";
|
||||
$lang["config_phone"] = "เบอร์โทรศัพท์";
|
||||
$lang["config_phone_required"] = "เบอร์โทรต้องกรอก";
|
||||
|
||||
14
application/language/th/messages_lang.php
Normal file
14
application/language/th/messages_lang.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
$lang["messages_sms_send"] = "Send SMS";
|
||||
$lang["messages_first_name"] = "First name";
|
||||
$lang["messages_last_name"] = "Last name";
|
||||
$lang["messages_phone"] = "Phone number";
|
||||
$lang["messages_phone_placeholder"] = "Mobile Number(s) here...";
|
||||
$lang["messages_phone_number_required"] = "Phone number required";
|
||||
$lang["messages_message"] = "Message";
|
||||
$lang["messages_message_placeholder"] = "Your Message here...";
|
||||
$lang["messages_message_required"] = "Message required";
|
||||
$lang["messages_multiple_phones"] = "(In case of multiple recipients, enter mobile numbers separated by commas)";
|
||||
$lang["messages_successfully_sent"] = "Message successfully sent to: ";
|
||||
$lang["messages_unsuccessfully_sent"] = "Message unsuccessfully sent to: ";
|
||||
@@ -21,3 +21,5 @@ $lang["module_sales"] = "งานขาย";
|
||||
$lang["module_sales_desc"] = "งานขาย และ รับคืน";
|
||||
$lang["module_suppliers"] = "ผู้ผลิต";
|
||||
$lang["module_suppliers_desc"] = "เพิ่ม, อัพเดท, ลบ, และค้นหา ผู้ผลิต";
|
||||
$lang["module_messages"] = "Messages";
|
||||
$lang["module_messages_desc"] = "Send Messages to Customers, Suppliers, Employees et al.";
|
||||
|
||||
@@ -93,6 +93,15 @@ $lang["config_location"] = "Stock";
|
||||
$lang["config_location_configuration"] = "Stock Locations";
|
||||
$lang["config_location_info"] = "Location Configuration Information";
|
||||
$lang["config_logout"] = "Don't you want to make a backup before logging out?";
|
||||
$lang["config_message"] = "Message";
|
||||
$lang["config_message_configuration"] = "Message Configuration";
|
||||
$lang["config_msg_msg"] = "Saved Text Message";
|
||||
$lang["config_msg_uid"] = "SMS-API Username";
|
||||
$lang["config_msg_uid_required"] = "SMS-API Username is a required field";
|
||||
$lang["config_msg_pwd"] = "SMS-API Password";
|
||||
$lang["config_msg_pwd_required"] = "SMS-API Password is a required field";
|
||||
$lang["config_msg_src"] = "SMS-API Sender ID";
|
||||
$lang["config_msg_src_required"] = "SMS-API Sender ID is a required field";
|
||||
$lang["config_number_format"] = "Number Format";
|
||||
$lang["config_phone"] = "Şirket Telefonu";
|
||||
$lang["config_phone_required"] = "Şirket Telefonu zorunlu alandır";
|
||||
|
||||
14
application/language/tr/messages_lang.php
Normal file
14
application/language/tr/messages_lang.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
$lang["messages_sms_send"] = "Send SMS";
|
||||
$lang["messages_first_name"] = "First name";
|
||||
$lang["messages_last_name"] = "Last name";
|
||||
$lang["messages_phone"] = "Phone number";
|
||||
$lang["messages_phone_placeholder"] = "Mobile Number(s) here...";
|
||||
$lang["messages_phone_number_required"] = "Phone number required";
|
||||
$lang["messages_message"] = "Message";
|
||||
$lang["messages_message_placeholder"] = "Your Message here...";
|
||||
$lang["messages_message_required"] = "Message required";
|
||||
$lang["messages_multiple_phones"] = "(In case of multiple recipients, enter mobile numbers separated by commas)";
|
||||
$lang["messages_successfully_sent"] = "Message successfully sent to: ";
|
||||
$lang["messages_unsuccessfully_sent"] = "Message unsuccessfully sent to: ";
|
||||
@@ -21,3 +21,5 @@ $lang["module_sales"] = "Satış";
|
||||
$lang["module_sales_desc"] = "Satış ve iade";
|
||||
$lang["module_suppliers"] = "Sağlayıcılar";
|
||||
$lang["module_suppliers_desc"] = "Ekleme, değiştirme, silme ve arama";
|
||||
$lang["module_messages"] = "Messages";
|
||||
$lang["module_messages_desc"] = "Send Messages to Customers, Suppliers, Employees et al.";
|
||||
|
||||
@@ -93,6 +93,15 @@ $lang["config_location"] = "Stock";
|
||||
$lang["config_location_configuration"] = "Stock Locations";
|
||||
$lang["config_location_info"] = "Location Configuration Information";
|
||||
$lang["config_logout"] = "Don't you want to make a backup before logging out?";
|
||||
$lang["config_message"] = "Message";
|
||||
$lang["config_message_configuration"] = "Message Configuration";
|
||||
$lang["config_msg_msg"] = "Saved Text Message";
|
||||
$lang["config_msg_uid"] = "SMS-API Username";
|
||||
$lang["config_msg_uid_required"] = "SMS-API Username is a required field";
|
||||
$lang["config_msg_pwd"] = "SMS-API Password";
|
||||
$lang["config_msg_pwd_required"] = "SMS-API Password is a required field";
|
||||
$lang["config_msg_src"] = "SMS-API Sender ID";
|
||||
$lang["config_msg_src_required"] = "SMS-API Sender ID is a required field";
|
||||
$lang["config_number_format"] = "Number Format";
|
||||
$lang["config_phone"] = "電話";
|
||||
$lang["config_phone_required"] = "公司電話為必填";
|
||||
|
||||
14
application/language/zh/messages_lang.php
Normal file
14
application/language/zh/messages_lang.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
$lang["messages_sms_send"] = "Send SMS";
|
||||
$lang["messages_first_name"] = "First name";
|
||||
$lang["messages_last_name"] = "Last name";
|
||||
$lang["messages_phone"] = "Phone number";
|
||||
$lang["messages_phone_placeholder"] = "Mobile Number(s) here...";
|
||||
$lang["messages_phone_number_required"] = "Phone number required";
|
||||
$lang["messages_message"] = "Message";
|
||||
$lang["messages_message_placeholder"] = "Your Message here...";
|
||||
$lang["messages_message_required"] = "Message required";
|
||||
$lang["messages_multiple_phones"] = "(In case of multiple recipients, enter mobile numbers separated by commas)";
|
||||
$lang["messages_successfully_sent"] = "Message successfully sent to: ";
|
||||
$lang["messages_unsuccessfully_sent"] = "Message unsuccessfully sent to: ";
|
||||
@@ -21,3 +21,5 @@ $lang["module_sales"] = "出貨";
|
||||
$lang["module_sales_desc"] = "出貨與退貨";
|
||||
$lang["module_suppliers"] = "供應商";
|
||||
$lang["module_suppliers_desc"] = "添加,更新,刪除,搜索供應商";
|
||||
$lang["module_messages"] = "Messages";
|
||||
$lang["module_messages_desc"] = "Send Messages to Customers, Suppliers, Employees et al.";
|
||||
|
||||
@@ -4,39 +4,45 @@ class Sms
|
||||
{
|
||||
/*
|
||||
* SMS send function
|
||||
* Example of use: $response = sendSMS('myUsername', 'myPassword', '4477777777', 'My test message', 'TextMessage');
|
||||
* Example of use: $response = sendSMS('myUsername', 'myPassword', '4477777777', 'My test message', 'My company');
|
||||
*/
|
||||
function sendSMS($username, $password, $phone, $message, $originator)
|
||||
{
|
||||
$response = FALSE;
|
||||
|
||||
// if any of the parameters is empty return with a FALSE
|
||||
if( empty($username) || empty($password) || empty($phone) || empty($message) || empty($originator) )
|
||||
{
|
||||
//echo $username . ' ' . $password . ' ' . $phone . ' ' . $message . ' ' . $originator;
|
||||
}
|
||||
else
|
||||
{
|
||||
$response = TRUE;
|
||||
|
||||
// add call to send a message via 3rd party API here
|
||||
// Some examples
|
||||
|
||||
return FALSE;
|
||||
/*
|
||||
$url = "https://xxx.xxx.xxx.xxx/send_sms?username=$username&password=$password&src=$originator&dst=$phone&msg=$message&dr=1";
|
||||
|
||||
$c = curl_init();
|
||||
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
|
||||
curl_setopt($c, CURLOPT_URL, $url);
|
||||
$response = curl_exec($c);
|
||||
curl_close($c);
|
||||
*/
|
||||
|
||||
// This is a textmarketer.co.uk API call, see: http://wiki.textmarketer.co.uk/display/DevDoc/Text+Marketer+Developer+Documentation+-+Wiki+Home
|
||||
/*
|
||||
$url = 'https://api.textmarketer.co.uk/gateway/'."?username=$username&password=$password&option=xml";
|
||||
$url .= "&to=$phone&message=".urlencode($message).'&orig='.urlencode($originator);
|
||||
$fp = fopen($url, 'r');
|
||||
$response = fread($fp, 1024);
|
||||
*/
|
||||
}
|
||||
|
||||
// add call to send a message via 3rd party API here
|
||||
|
||||
// EXAMPLE OR URL LINK
|
||||
/*
|
||||
$url="https://xxx.xxx.xxx.xxx/send_sms?username=$uid&password=$pwd&src=$src&dst=$phone&msg=$msg&dr=1";
|
||||
|
||||
$c = curl_init();
|
||||
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
|
||||
curl_setopt($c, CURLOPT_URL, $url);
|
||||
$response = curl_exec($c);
|
||||
curl_close($c);
|
||||
*/
|
||||
|
||||
// This is a textmarketer.co.uk API call example see: http://wiki.textmarketer.co.uk/display/DevDoc/Text+Marketer+Developer+Documentation+-+Wiki+Home
|
||||
/*
|
||||
$url = 'https://api.textmarketer.co.uk/gateway/'."?username=$username&password=$password&option=xml";
|
||||
$url .= "&to=$phone&message=".urlencode($message).'&orig='.urlencode($originator);
|
||||
$fp = fopen($url, 'r');
|
||||
return fread($fp, 1024);
|
||||
*/
|
||||
|
||||
return TRUE;
|
||||
return $response;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
@@ -2,34 +2,38 @@
|
||||
<div id="config_wrapper">
|
||||
<fieldset id="config_message">
|
||||
<div id="required_fields_message"><?php echo $this->lang->line('common_fields_required_message'); ?></div>
|
||||
|
||||
<ul id="general_error_message_box" class="error_message_box"></ul>
|
||||
|
||||
<h5 style="text-align:center; color: red;">Note : If you wish to use SMS template, save your message here. Otherwise keep the 'Saved Text Message' box blank.</h5>
|
||||
|
||||
</br>
|
||||
|
||||
<div class="form-group form-group-sm">
|
||||
<?php echo form_label($this->lang->line('config_msg_uid'), 'msg_uid', array('class'=>'control-label col-xs-2')); ?>
|
||||
<?php echo form_label($this->lang->line('config_msg_uid'), 'msg_uid', array('class'=>'control-label col-xs-2 required')); ?>
|
||||
<div class='col-xs-4'>
|
||||
<?php echo form_input(array(
|
||||
'name'=>'msg_uid',
|
||||
'id'=>'msg_uid',
|
||||
'class'=>'form-control input-sm',
|
||||
'type'=>'password',
|
||||
'value'=>$this->config->item('msg_uid')));?>
|
||||
'class'=>'form-control input-sm required',
|
||||
'value'=>$this->config->item('msg_uid'))); ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group form-group-sm" >
|
||||
<?php echo form_label($this->lang->line('config_msg_pwd'), 'msg_pwd', array('class'=>'control-label col-xs-2')); ?>
|
||||
<div class="form-group form-group-sm">
|
||||
<?php echo form_label($this->lang->line('config_msg_pwd'), 'msg_pwd', array('class'=>'control-label col-xs-2 required')); ?>
|
||||
<div class='col-xs-4'>
|
||||
<?php echo form_input(array(
|
||||
<?php echo form_password(array(
|
||||
'name'=>'msg_pwd',
|
||||
'id'=>'msg_pwd',
|
||||
'class'=>'form-control input-sm',
|
||||
'type'=>'password',
|
||||
'value'=>$this->config->item('msg_pwd')));?>
|
||||
'class'=>'form-control input-sm required',
|
||||
'value'=>$this->config->item('msg_pwd'))); ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group form-group-sm">
|
||||
<?php echo form_label($this->lang->line('config_msg_src'), 'msg_src', array('class'=>'control-label col-xs-2 required')); ?>
|
||||
<div class='col-xs-4'>
|
||||
<?php echo form_input(array(
|
||||
'name'=>'msg_src',
|
||||
'id'=>'msg_src',
|
||||
'class'=>'form-control input-sm required',
|
||||
'value'=>$this->config->item('msg_src') == null ? $this->config->item('company') : $this->config->item('msg_src')));?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -40,7 +44,8 @@
|
||||
'name'=>'msg_msg',
|
||||
'id'=>'msg_msg',
|
||||
'class'=>'form-control input-sm',
|
||||
'value'=>$this->config->item('msg_msg')));?>
|
||||
'value'=>$this->config->item('msg_msg'),
|
||||
'placeholder'=>"If you wish to use a SMS template save your message here. Otherwise leave the box blank."));?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -48,7 +53,7 @@
|
||||
'name'=>'submit_form',
|
||||
'id'=>'submit_form',
|
||||
'value'=>$this->lang->line('common_submit'),
|
||||
'class'=>'btn btn-primary btn-sm pull-right'));?>
|
||||
'class'=>'btn btn-primary btn-sm pull-right')); ?>
|
||||
</fieldset>
|
||||
</div>
|
||||
<?php echo form_close(); ?>
|
||||
@@ -72,6 +77,30 @@ $(document).ready(function()
|
||||
},
|
||||
dataType: 'json'
|
||||
});
|
||||
},
|
||||
|
||||
errorClass: "has-error",
|
||||
errorLabelContainer: "#general_error_message_box",
|
||||
wrapper: "li",
|
||||
highlight: function (e) {
|
||||
$(e).closest('.form-group').addClass('has-error');
|
||||
},
|
||||
unhighlight: function (e) {
|
||||
$(e).closest('.form-group').removeClass('has-error');
|
||||
},
|
||||
|
||||
rules:
|
||||
{
|
||||
msg_uid: "required",
|
||||
msg_pwd: "required",
|
||||
msg_src: "required"
|
||||
},
|
||||
|
||||
messages:
|
||||
{
|
||||
msg_uid: "<?php echo $this->lang->line('config_msg_uid_required'); ?>",
|
||||
msg_pwd: "<?php echo $this->lang->line('config_msg_pwd_required'); ?>",
|
||||
msg_src: "<?php echo $this->lang->line('config_msg_src_required'); ?>"
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
@@ -17,15 +17,15 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group form-group-sm">
|
||||
<?php echo form_label($this->lang->line('messages_mobile'), 'last_name_label', array('for'=>'phone', 'class'=>'control-label col-xs-2')); ?>
|
||||
<?php echo form_label($this->lang->line('messages_phone'), 'phone_label', array('for'=>'phone', 'class'=>'control-label col-xs-2')); ?>
|
||||
<div class="col-xs-10">
|
||||
<?php echo form_input(array('class'=>'form-control input-sm', 'type'=>'text', 'name'=>'phone', 'value'=>$person_info->phone_number));?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group form-group-sm">
|
||||
<?php echo form_label($this->lang->line('messages_mesage'), 'last_name_label', array('for'=>'msg', 'class'=>'control-label col-xs-2')); ?>
|
||||
<?php echo form_label($this->lang->line('messages_message'), 'message_label', array('for'=>'message', 'class'=>'control-label col-xs-2')); ?>
|
||||
<div class="col-xs-10">
|
||||
<?php echo form_textarea(array('name'=>'msg', 'value'=>$this->config->item('msg_msg'), 'id'=>'msg', 'class'=>'form-control input-sm'));?>
|
||||
<?php echo form_textarea(array('class'=>'form-control input-sm', 'name'=>'message', 'id'=>'message', 'value'=>$this->config->item('msg_msg')));?>
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
|
||||
@@ -1,48 +1,55 @@
|
||||
<?php $this->load->view("partial/header"); ?>
|
||||
|
||||
<?php
|
||||
if (isset($error))
|
||||
{
|
||||
echo "<div class='alert alert-dismissible alert-danger'>".$error."</div>";
|
||||
}
|
||||
|
||||
if (!empty($warning))
|
||||
{
|
||||
echo "<div class='alert alert-dismissible alert-warning'>".$warning."</div>";
|
||||
}
|
||||
|
||||
if (isset($success))
|
||||
{
|
||||
echo "<div class='alert alert-dismissible alert-success'>".$success."</div>";
|
||||
}
|
||||
?>
|
||||
|
||||
<div class="jumbotron" style="max-width: 57%; margin:0 auto">
|
||||
<div class="jumbotron" style="max-width: 60%; margin:auto">
|
||||
<?php echo form_open("messages/send/", array('id'=>'send_sms_form', 'enctype'=>'multipart/form-data', 'method'=>'post', 'class'=>'form-horizontal')); ?>
|
||||
<fieldset>
|
||||
<legend style="text-align: center;">SEND SMS</legend>
|
||||
<div class="form-group">
|
||||
<div class="form-group">
|
||||
<label for="inputPhone" class="col-lg-2 control-label">Mobile:</label>
|
||||
<div class="col-lg-10">
|
||||
<input class="form-control", type="text", name="phone", placeholder="Put Mobile No(s) Here !"></input>
|
||||
<span class="help-block" style="text-align:center;">( In case of multiple recipients, enter mobile numbers separated with comma )</span>
|
||||
</div>
|
||||
</div></br>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="textArea" class="col-lg-2 control-label">Message:</label>
|
||||
<div class="col-lg-10">
|
||||
<textarea class="form-control" rows="3" id="textArea" name="msg" placeholder="Put Your Message Here !"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-lg-10 col-lg-offset-2">
|
||||
<button type="submit" name="submit" class="btn btn-primary btn-md pull-right" value="submit">Submit</button>
|
||||
<legend style="text-align: center;"><?php echo $this->lang->line('messages_sms_send'); ?></legend>
|
||||
<div class="form-group form-group-sm">
|
||||
<label for="phone" class="col-xs-3 control-label"><?php echo $this->lang->line('messages_phone'); ?></label>
|
||||
<div class="col-xs-9">
|
||||
<input class="form-control input-sm", type="text", name="phone", placeholder="<?php echo $this->lang->line('messages_phone_placeholder'); ?>"></input>
|
||||
<span class="help-block" style="text-align:center;"><?php echo $this->lang->line('messages_multiple_phones'); ?></span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group form-group-sm">
|
||||
<label for="message" class="col-xs-3 control-label"><?php echo $this->lang->line('messages_message'); ?></label>
|
||||
<div class="col-xs-9">
|
||||
<textarea class="form-control input-sm" rows="3" id="message" name="message" placeholder="<?php echo $this->lang->line('messages_message_placeholder'); ?>"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php echo form_submit(array(
|
||||
'name'=>'submit_form',
|
||||
'id'=>'submit_form',
|
||||
'value'=>$this->lang->line('common_submit'),
|
||||
'class'=>'btn btn-primary btn-sm pull-right'));?>
|
||||
</fieldset>
|
||||
<?php echo form_close(); ?>
|
||||
</div>
|
||||
|
||||
<?php $this->load->view("partial/footer"); ?>
|
||||
|
||||
<script type='text/javascript'>
|
||||
//validation and submit handling
|
||||
$(document).ready(function()
|
||||
{
|
||||
$('#send_sms_form').validate({
|
||||
submitHandler: function(form) {
|
||||
$(form).ajaxSubmit({
|
||||
success: function(response) {
|
||||
if(response.success)
|
||||
{
|
||||
set_feedback(response.message, 'alert alert-dismissible alert-success', false);
|
||||
}
|
||||
else
|
||||
{
|
||||
set_feedback(response.message, 'alert alert-dismissible alert-danger', true);
|
||||
}
|
||||
},
|
||||
dataType: 'json'
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
@@ -92,6 +92,15 @@ config_location,Készlet,Lagerort,Stock,Inventario,Stock,Stock,Stock,Stock,Stock
|
||||
config_location_configuration,Készlet helye,Lagerort,Stock Locaties,Ubicación de Inventario,Stock Locations,Stock Locations,Stock Locations,Stock Locations,Stock Locations,Stock Locations,Stock Locations,Localização do Estoque,Mjesto skladišta
|
||||
config_location_info,Helyszin konfigurációs információk,Lagerort-Information,Instellingen Locatie,Información de Configuración de Ubicación,Location Configuration Information,Location Configuration Information,Location Configuration Information,Location Configuration Information,Location Configuration Information,Location Configuration Information,Location Configuration Information,Informações da localizaçãoo,Info o lokaciji skladišta
|
||||
config_logout,"Nem szeretne mentést csinálni kilépés előtt? Kattintson az [OK]-ra a mentéshez, [Mégsem] a kilépéshez",Wollen Sie eine Sicherung machen vor dem Beenden? Klicke [OK] für Sicherung,Wilt u een backup maken alvorens uit te loggen?,Desea hacer un respaldo antes de salir?,"Don't you want to make a backup before logging out? Click [OK] to backup, [Cancel] to logout",Don't you want to make a backup before logging out?,Don't you want to make a backup before logging out?,Don't you want to make a backup before logging out?,Don't you want to make a backup before logging out?,Don't you want to make a backup before logging out?,Don't you want to make a backup before logging out?,Você não quer fazer uma cópia de segurança antes de sair? Clique [OK] para fazer a cópia de segurança,"Želite napraviti arhivu prije nego izađete? Pritisnite [OK] za arhivu, [Cancel] to otkazivanje."
|
||||
config_message,Message,Message,Message,Message,Message,Message,Message,Message,Message,Message,Message,Message,Message
|
||||
config_message_configuration,Message Configuration,Message Configuration,Message Configuration,Message Configuration,Message Configuration,Message Configuration,Message Configuration,Message Configuration,Message Configuration,Message Configuration,Message Configuration,Message Configuration,Message Configuration
|
||||
config_msg_msg,Saved Text Message,Saved Text Message,Saved Text Message,Saved Text Message,Saved Text Message,Saved Text Message,Saved Text Message,Saved Text Message,Saved Text Message,Saved Text Message,Saved Text Message,Saved Text Message,Saved Text Message
|
||||
config_msg_uid,"SMS-API Username","SMS-API Username","SMS-API Username","SMS-API Username","SMS-API Username","SMS-API Username","SMS-API Username","SMS-API Username","SMS-API Username","SMS-API Username","SMS-API Username","SMS-API Username","SMS-API Username"
|
||||
config_msg_uid_required,"SMS-API Username is a required field","SMS-API Username is a required field","SMS-API Username is a required field","SMS-API Username is a required field","SMS-API Username is a required field","SMS-API Username is a required field","SMS-API Username is a required field","SMS-API Username is a required field","SMS-API Username is a required field","SMS-API Username is a required field","SMS-API Username is a required field","SMS-API Username is a required field","SMS-API Username is a required field"
|
||||
config_msg_pwd,"SMS-API Password","SMS-API Password","SMS-API Password","SMS-API Password","SMS-API Password","SMS-API Password","SMS-API Password","SMS-API Password","SMS-API Password","SMS-API Password","SMS-API Password","SMS-API Password","SMS-API Password"
|
||||
config_msg_pwd_required,"SMS-API Password is a required field","SMS-API Password is a required field","SMS-API Password is a required field","SMS-API Password is a required field","SMS-API Password is a required field","SMS-API Password is a required field","SMS-API Password is a required field","SMS-API Password is a required field","SMS-API Password is a required field","SMS-API Password is a required field","SMS-API Password is a required field","SMS-API Password is a required field","SMS-API Password is a required field"
|
||||
config_msg_src,"SMS-API Sender ID","SMS-API Sender ID","SMS-API Sender ID","SMS-API Sender ID","SMS-API Sender ID","SMS-API Sender ID","SMS-API Sender ID","SMS-API Sender ID","SMS-API Sender ID","SMS-API Sender ID","SMS-API Sender ID","SMS-API Sender ID","SMS-API Sender ID"
|
||||
config_msg_src_required,"SMS-API Sender ID is a required field","SMS-API Sender ID is a required field","SMS-API Sender ID is a required field","SMS-API Sender ID is a required field","SMS-API Sender ID is a required field","SMS-API Sender ID is a required field","SMS-API Sender ID is a required field","SMS-API Sender ID is a required field","SMS-API Sender ID is a required field","SMS-API Sender ID is a required field","SMS-API Sender ID is a required field","SMS-API Sender ID is a required field","SMS-API Sender ID is a required field"
|
||||
config_number_format,Szám formátum,Zahlenformat,Number Format,Formato de número,Number Format,Number Format,Number Format,Number Format,รูปแบบตัวเลข,Number Format,Format Nomor,Formato do número,Format broja
|
||||
config_phone,Cég telefonszáma,Telefon,Telefoon,Teléfono del Comercio,Company Phone,Téléphone,電話,Телефон Компании,เบอร์โทรศัพท์,Şirket Telefonu,Telepon Perusahaan,Telefone,Telefon tvrtke
|
||||
config_phone_required,Cég telefonszáma kötelező mező,Telefon ist erforderlich,De telefoonnummer van het bedrijf moet ingevuld worden,Teléfono del Comercio es requerido,Company phone is a required field,Le numéro de téléphone est requis,公司電話為必填,Телефон Компании обязательный пробел,เบอร์โทรต้องกรอก,Şirket Telefonu zorunlu alandır,Telepon Perusahaan wajib diisi,Telefone da Empresa é requerido,Telefon tvrtke je potreban
|
||||
|
||||
|
13
translations/messages_lang.csv
Normal file
13
translations/messages_lang.csv
Normal file
@@ -0,0 +1,13 @@
|
||||
label,hu-HU,de-CH,nl-BE,es,en,fr,zh,ru,th,tr,id,pt-BR,hr-HR
|
||||
messages_sms_send,Send SMS,Send SMS,Send SMS,Send SMS,Send SMS,Send SMS,Send SMS,Send SMS,Send SMS,Send SMS,Send SMS,Send SMS,Send SMS
|
||||
messages_first_name,First name,First name,First name,First name,First name,First name,First name,First name,First name,First name,First name,First name,First name
|
||||
messages_last_name,Last name,Last name,Last name,Last name,Last name,Last name,Last name,Last name,Last name,Last name,Last name,Last name,Last name
|
||||
messages_phone,Phone number,Phone number,Phone number,Phone number,Phone number,Phone number,Phone number,Phone number,Phone number,Phone number,Phone number,Phone number,Phone number
|
||||
messages_phone_placeholder,"Mobile Number(s) here...","Mobile Number(s) here...","Mobile Number(s) here...","Mobile Number(s) here...","Mobile Number(s) here...","Mobile Number(s) here...","Mobile Number(s) here...","Mobile Number(s) here...","Mobile Number(s) here...","Mobile Number(s) here...","Mobile Number(s) here...","Mobile Number(s) here...","Mobile Number(s) here..."
|
||||
messages_phone_number_required,Phone number required,Phone number required,Phone number required,Phone number required,Phone number required,Phone number required,Phone number required,Phone number required,Phone number required,Phone number required,Phone number required,Phone number required,Phone number required
|
||||
messages_message,Message,Message,Message,Message,Message,Message,Message,Message,Message,Message,Message,Message
|
||||
messages_message_placeholder,"Your Message here...","Your Message here...","Your Message here...","Your Message here...","Your Message here...","Your Message here...","Your Message here...","Your Message here...","Your Message here...","Your Message here...","Your Message here...","Your Message here...","Your Message here..."
|
||||
messages_message_required,Message required,Message required,Message required,Message required,Message required,Message required,Message required,Message required,Message required,Message required,Message required,Message required,Message required
|
||||
messages_multiple_phones,"(In case of multiple recipients, enter mobile numbers separated by commas)","(In case of multiple recipients, enter mobile numbers separated by commas)","(In case of multiple recipients, enter mobile numbers separated by commas)","(In case of multiple recipients, enter mobile numbers separated by commas)","(In case of multiple recipients, enter mobile numbers separated by commas)","(In case of multiple recipients, enter mobile numbers separated by commas)","(In case of multiple recipients, enter mobile numbers separated by commas)","(In case of multiple recipients, enter mobile numbers separated by commas)","(In case of multiple recipients, enter mobile numbers separated by commas)","(In case of multiple recipients, enter mobile numbers separated by commas)","(In case of multiple recipients, enter mobile numbers separated by commas)","(In case of multiple recipients, enter mobile numbers separated by commas)","(In case of multiple recipients, enter mobile numbers separated by commas)"
|
||||
messages_successfully_sent,"Message successfully sent to: ","Message successfully sent to: ","Message successfully sent to: ","Message successfully sent to: ","Message successfully sent to: ","Message successfully sent to: ","Message successfully sent to: ","Message successfully sent to: ","Message successfully sent to: ","Message successfully sent to: ","Message successfully sent to: ","Message successfully sent to: ","Message successfully sent to: "
|
||||
messages_unsuccessfully_sent,"Message unsuccessfully sent to: ","Message unsuccessfully sent to: ","Message unsuccessfully sent to: ","Message unsuccessfully sent to: ","Message unsuccessfully sent to: ","Message unsuccessfully sent to: ","Message unsuccessfully sent to: ","Message unsuccessfully sent to: ","Message unsuccessfully sent to: ","Message unsuccessfully sent to: ","Message unsuccessfully sent to: ","Message unsuccessfully sent to: ","Message unsuccessfully sent to: "
|
||||
|
@@ -20,3 +20,5 @@ module_sales,Értékesítés,Verkauf,Kassa,Ventas,Sales,Ventes,出貨,Прода
|
||||
module_sales_desc,Termékek értékesítése és visszavétele,"Hinzufügen, Ändern, Löschen und Suchen",Verwerk aankopen en retours,Procesar ventas y devoluciones,Process sales and returns,Ventes et chiffre d'affaire,出貨與退貨,Процесс продажи и возвращается,งานขาย และ รับคืน,Satış ve iade,Proses Penjualan dan Retur,Processar vendas e devoluções,Procesi prodaje i povrata
|
||||
module_suppliers,Beszállítók,Lieferanten,Leveranciers,Proveedores,Suppliers,Fournisseurs,供應商,Поставщики,ผู้ผลิต,Sağlayıcılar,Pemasok,Fornecedores,Dobavljači
|
||||
module_suppliers_desc,"Beszállítók hozzáadása, módosítása, törlése és keresése","Hinzufügen, Ändern, Löschen und Suchen","Zoek, bewerk, verwijder en voeg leveranciers toe","Agregar, Actualizar, Borrar y Buscar proveedores","Add, Update, Delete, and Search suppliers","Ajouter, Éditer, Supprimer, et Chercher des fournisseurs",添加,更新,刪除,搜索供應商,"Добавление, обновление, удаление и поиск suppliers","เพิ่ม, อัพเดท, ลบ, และค้นหา ผู้ผลิต","Ekleme, değiştirme, silme ve arama","Tambah, Rubah, Hapus, dan Cari Pemasok","Adicionar, atualizar, excluir e Pesquisar fornecedores","Dodaj, ažuriraj, obriši ili traži dobavljače"
|
||||
module_messages,Messages,Messages,Messages,Messages,Messages,Messages,Messages,Messages,Messages,Messages,Messages,Messages,Messages
|
||||
module_messages_desc,"Send Messages to Customers, Suppliers, Employees et al.","Send Messages to Customers, Suppliers, Employees et al.","Send Messages to Customers, Suppliers, Employees et al.","Send Messages to Customers, Suppliers, Employees et al.","Send Messages to Customers, Suppliers, Employees et al.","Send Messages to Customers, Suppliers, Employees et al.","Send Messages to Customers, Suppliers, Employees et al.","Send Messages to Customers, Suppliers, Employees et al.","Send Messages to Customers, Suppliers, Employees et al.","Send Messages to Customers, Suppliers, Employees et al.","Send Messages to Customers, Suppliers, Employees et al.","Send Messages to Customers, Suppliers, Employees et al.","Send Messages to Customers, Suppliers, Employees et al."
|
||||
|
||||
|
Reference in New Issue
Block a user