mirror of
https://github.com/itflow-org/itflow
synced 2026-03-22 13:35:37 +00:00
Update contact API to support contact_import, contact_billing, contact_technical
This commit is contained in:
@@ -4,10 +4,13 @@ define('number_regex', '/[^0-9]/');
|
|||||||
$name = trim(strip_tags(mysqli_real_escape_string($mysqli, $_POST['contact_name'])));
|
$name = trim(strip_tags(mysqli_real_escape_string($mysqli, $_POST['contact_name'])));
|
||||||
$title = trim(strip_tags(mysqli_real_escape_string($mysqli, $_POST['contact_title'])));
|
$title = trim(strip_tags(mysqli_real_escape_string($mysqli, $_POST['contact_title'])));
|
||||||
$department = trim(strip_tags(mysqli_real_escape_string($mysqli, $_POST['contact_department'])));
|
$department = trim(strip_tags(mysqli_real_escape_string($mysqli, $_POST['contact_department'])));
|
||||||
|
$email = trim(strip_tags(mysqli_real_escape_string($mysqli, $_POST['contact_email'])));
|
||||||
$phone = preg_replace(number_regex, '', $_POST['contact_phone']);
|
$phone = preg_replace(number_regex, '', $_POST['contact_phone']);
|
||||||
$extension = preg_replace(number_regex, '', $_POST['contact_extension']);
|
$extension = preg_replace(number_regex, '', $_POST['contact_extension']);
|
||||||
$mobile = preg_replace(number_regex, '', $_POST['contact_mobile']);
|
$mobile = preg_replace(number_regex, '', $_POST['contact_mobile']);
|
||||||
$email = trim(strip_tags(mysqli_real_escape_string($mysqli, $_POST['contact_email'])));
|
|
||||||
$notes = trim(strip_tags(mysqli_real_escape_string($mysqli, $_POST['contact_notes'])));
|
$notes = trim(strip_tags(mysqli_real_escape_string($mysqli, $_POST['contact_notes'])));
|
||||||
$auth_method = trim(strip_tags(mysqli_real_escape_string($mysqli, $_POST['contact_auth_method'])));
|
$auth_method = trim(strip_tags(mysqli_real_escape_string($mysqli, $_POST['contact_auth_method'])));
|
||||||
$location_id = intval($_POST['contact_location_id']);
|
$important = intval($_POST['contact_important']);
|
||||||
|
$billing = intval($_POST['contact_billing']);
|
||||||
|
$technical = intval($_POST['contact_technical']);
|
||||||
|
$location_id = intval($_POST['contact_location_id']);
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ if (!empty($name) && !empty($email) && !empty($client_id)) {
|
|||||||
if (mysqli_num_rows($email_duplication_sql) == 0) {
|
if (mysqli_num_rows($email_duplication_sql) == 0) {
|
||||||
|
|
||||||
// Insert contact
|
// Insert contact
|
||||||
$insert_sql = mysqli_query($mysqli, "INSERT INTO contacts SET contact_name = '$name', contact_title = '$title', contact_phone = '$phone', contact_extension = '$extension', contact_mobile = '$mobile', contact_email = '$email', contact_notes = '$notes', contact_auth_method = '$auth_method', contact_created_at = NOW(), contact_department = '$department', contact_location_id = $location_id, contact_client_id = $client_id, company_id = $company_id");
|
$insert_sql = mysqli_query($mysqli, "INSERT INTO contacts SET contact_name = '$name', contact_title = '$title', contact_department = '$department', contact_email = '$email', contact_phone = '$phone', contact_extension = '$extension', contact_mobile = '$mobile', contact_notes = '$notes', contact_auth_method = '$auth_method', contact_important = '$important', contact_billing = '$billing', contact_technical = '$technical', contact_created_at = NOW(), contact_location_id = $location_id, contact_client_id = $client_id, company_id = $company_id");
|
||||||
|
|
||||||
// Check insert & get insert ID
|
// Check insert & get insert ID
|
||||||
if ($insert_sql) {
|
if ($insert_sql) {
|
||||||
@@ -31,4 +31,4 @@ if (!empty($name) && !empty($email) && !empty($client_id)) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Output
|
// Output
|
||||||
require_once('../create_output.php');
|
require_once('../create_output.php');
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ $update_count = FALSE;
|
|||||||
|
|
||||||
if (!empty($name) && !empty($email)) {
|
if (!empty($name) && !empty($email)) {
|
||||||
|
|
||||||
$update_sql = mysqli_query($mysqli, "UPDATE contacts SET contact_name = '$name', contact_title = '$title', contact_phone = '$phone', contact_extension = '$extension', contact_mobile = '$mobile', contact_email = '$email', contact_notes = '$notes', contact_auth_method = '$auth_method', contact_updated_at = NOW(), contact_department_id = $department, contact_location_id = $location_id, contact_client_id = $client_id, company_id = $company_id WHERE contact_id = $contact_id LIMIT 1");
|
$update_sql = mysqli_query($mysqli, "UPDATE contacts SET contact_name = '$name', contact_title = '$title', contact_department = '$department', contact_email = '$email', contact_phone = '$phone', contact_extension = '$extension', contact_mobile = '$mobile', contact_notes = '$notes', contact_auth_method = '$auth_method', contact_important = '$important', contact_billing = '$billing', contact_technical = '$technical', contact_updated_at = NOW(), contact_location_id = $location_id, contact_client_id = $client_id, company_id = $company_id WHERE contact_id = $contact_id LIMIT 1");
|
||||||
|
|
||||||
// Check insert & get insert ID
|
// Check insert & get insert ID
|
||||||
if ($update_sql) {
|
if ($update_sql) {
|
||||||
@@ -21,8 +21,8 @@ if (!empty($name) && !empty($email)) {
|
|||||||
//Logging
|
//Logging
|
||||||
mysqli_query($mysqli, "INSERT INTO logs SET log_type = 'Contact', log_action = 'Updated', log_description = '$name via API ($api_key_name)', log_ip = '$ip', log_created_at = NOW(), log_client_id = $client_id, company_id = $company_id");
|
mysqli_query($mysqli, "INSERT INTO logs SET log_type = 'Contact', log_action = 'Updated', log_description = '$name via API ($api_key_name)', log_ip = '$ip', log_created_at = NOW(), log_client_id = $client_id, company_id = $company_id");
|
||||||
mysqli_query($mysqli, "INSERT INTO logs SET log_type = 'API', log_action = 'Success', log_description = 'Updated contact $name via API ($api_key_name)', log_ip = '$ip', log_created_at = NOW(), log_client_id = $client_id, company_id = $company_id");
|
mysqli_query($mysqli, "INSERT INTO logs SET log_type = 'API', log_action = 'Success', log_description = 'Updated contact $name via API ($api_key_name)', log_ip = '$ip', log_created_at = NOW(), log_client_id = $client_id, company_id = $company_id");
|
||||||
}
|
} else {var_dump( $update_sql);}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Output
|
// Output
|
||||||
require_once('../update_output.php');
|
require_once('../update_output.php');
|
||||||
|
|||||||
@@ -68,7 +68,7 @@ if (isset($_GET['contact_id'])) {
|
|||||||
<div class="text-secondary"><?php echo $contact_title; ?></div>
|
<div class="text-secondary"><?php echo $contact_title; ?></div>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
||||||
<div class="text-center">
|
<div class="text-center">
|
||||||
<?php if (!empty($contact_photo)) { ?>
|
<?php if (!empty($contact_photo)) { ?>
|
||||||
<img class="img-fluid img-circle p-3" alt="contact_photo" src="<?php echo "uploads/clients/$session_company_id/$client_id/$contact_photo"; ?>">
|
<img class="img-fluid img-circle p-3" alt="contact_photo" src="<?php echo "uploads/clients/$session_company_id/$client_id/$contact_photo"; ?>">
|
||||||
<?php } else { ?>
|
<?php } else { ?>
|
||||||
@@ -86,7 +86,7 @@ if (isset($_GET['contact_id'])) {
|
|||||||
<div><i class="fa fa-fw fa-envelope text-secondary mr-3"></i><a href='mailto:<?php echo $contact_email; ?>'><?php echo $contact_email; ?></a><button class='btn btn-sm clipboardjs' data-clipboard-text='<?php echo $contact_email; ?>'><i class='far fa-copy text-secondary'></i></button></div>
|
<div><i class="fa fa-fw fa-envelope text-secondary mr-3"></i><a href='mailto:<?php echo $contact_email; ?>'><?php echo $contact_email; ?></a><button class='btn btn-sm clipboardjs' data-clipboard-text='<?php echo $contact_email; ?>'><i class='far fa-copy text-secondary'></i></button></div>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<?php if (!empty($contact_phone)) { ?>
|
<?php if (!empty($contact_phone)) { ?>
|
||||||
<div class="mb-2"><i class="fa fa-fw fa-phone text-secondary mr-3"></i><?php echo "$contact_phone $contact_phone_extention"; ?></div>
|
<div class="mb-2"><i class="fa fa-fw fa-phone text-secondary mr-3"></i><?php echo "$contact_phone $contact_extension"; ?></div>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<?php if (!empty($contact_mobile)) { ?>
|
<?php if (!empty($contact_mobile)) { ?>
|
||||||
<div class="mb-2"><i class="fa fa-fw fa-mobile-alt text-secondary mr-3"></i><?php echo $contact_mobile; ?></div>
|
<div class="mb-2"><i class="fa fa-fw fa-mobile-alt text-secondary mr-3"></i><?php echo $contact_mobile; ?></div>
|
||||||
@@ -381,7 +381,7 @@ if (isset($_GET['contact_id'])) {
|
|||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
while ($row = mysqli_fetch_array($sql_related_software)) {
|
while ($row = mysqli_fetch_array($sql_related_software)) {
|
||||||
$software_id = $row['software_id'];
|
$software_id = $row['software_id'];
|
||||||
$software_name = htmlentities($row['software_name']);
|
$software_name = htmlentities($row['software_name']);
|
||||||
@@ -432,7 +432,7 @@ if (isset($_GET['contact_id'])) {
|
|||||||
<a class="dropdown-item text-danger" href="post.php?delete_software=<?php echo $software_id; ?>">Delete</a>
|
<a class="dropdown-item text-danger" href="post.php?delete_software=<?php echo $software_id; ?>">Delete</a>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
@@ -440,11 +440,11 @@ if (isset($_GET['contact_id'])) {
|
|||||||
|
|
||||||
include("client_software_edit_modal.php");
|
include("client_software_edit_modal.php");
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user