mirror of https://github.com/itflow-org/itflow
85 lines
3.6 KiB
PHP
85 lines
3.6 KiB
PHP
<?php
|
|
|
|
require_once '../includes/ajax_header.php';
|
|
|
|
$client_id = intval($_GET['id']);
|
|
|
|
$sql = mysqli_query($mysqli, "SELECT * FROM clients WHERE client_id = $client_id LIMIT 1");
|
|
|
|
$row = mysqli_fetch_array($sql);
|
|
$client_name = nullable_htmlentities($row['client_name']);
|
|
$client_is_lead = intval($row['client_lead']);
|
|
$client_type = nullable_htmlentities($row['client_type']);
|
|
$client_website = nullable_htmlentities($row['client_website']);
|
|
$client_referral = nullable_htmlentities($row['client_referral']);
|
|
$client_currency_code = nullable_htmlentities($row['client_currency_code']);
|
|
$client_net_terms = intval($row['client_net_terms']);
|
|
$client_tax_id_number = nullable_htmlentities($row['client_tax_id_number']);
|
|
$client_abbreviation = nullable_htmlentities($row['client_abbreviation']);
|
|
$client_rate = floatval($row['client_rate']);
|
|
$client_notes = nullable_htmlentities($row['client_notes']);
|
|
$client_created_at = nullable_htmlentities($row['client_created_at']);
|
|
$client_archived_at = nullable_htmlentities($row['client_archived_at']);
|
|
|
|
// Client Tags
|
|
$client_tag_id_array = array();
|
|
$sql_client_tags = mysqli_query($mysqli, "SELECT tag_id FROM client_tags WHERE client_id = $client_id");
|
|
while ($row = mysqli_fetch_array($sql_client_tags)) {
|
|
$client_tag_id = intval($row['tag_id']);
|
|
$client_tag_id_array[] = $client_tag_id;
|
|
}
|
|
|
|
// Generate the HTML form content using output buffering.
|
|
ob_start();
|
|
?>
|
|
|
|
<div class="modal-header">
|
|
<h5 class="modal-title"><i class='fa fa-fw fa-user-check mr-2'></i>Assigning Ticket: <strong><?php echo "$ticket_prefix$ticket_number"; ?></strong> - <?php echo $client_name; ?></h5>
|
|
<button type="button" class="close text-white" data-dismiss="modal">
|
|
<span>×</span>
|
|
</button>
|
|
</div>
|
|
|
|
<form action="post.php" method="post" autocomplete="off">
|
|
<input type="hidden" name="ticket_id" value="<?php echo $ticket_id; ?>">
|
|
<input type="hidden" name="ticket_status" value="<?php echo $ticket_status_id; ?>">
|
|
<div class="modal-body bg-white">
|
|
|
|
<div class="form-group">
|
|
<label>Assign to</label>
|
|
<div class="input-group">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text"><i class="fa fa-fw fa-user-check"></i></span>
|
|
</div>
|
|
<select class="form-control select2" name="assigned_to">
|
|
<option value="0">Not Assigned</option>
|
|
<?php
|
|
$sql_users_select = mysqli_query($mysqli, "SELECT users.user_id, user_name FROM users
|
|
LEFT JOIN user_settings on users.user_id = user_settings.user_id
|
|
WHERE user_type = 1
|
|
AND user_archived_at IS NULL
|
|
ORDER BY user_name DESC"
|
|
);
|
|
while ($row = mysqli_fetch_array($sql_users_select)) {
|
|
$user_id_select = intval($row['user_id']);
|
|
$user_name_select = nullable_htmlentities($row['user_name']);
|
|
|
|
?>
|
|
<option value="<?php echo $user_id_select; ?>" <?php if ($user_id_select == $ticket_assigned_to) { echo "selected"; } ?>><?php echo $user_name_select; ?></option>
|
|
<?php } ?>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer bg-white">
|
|
<button type="submit" name="assign_ticket" class="btn btn-primary text-bold"><i class="fa fa-check mr-2"></i>Assign</button>
|
|
<button type="button" class="btn btn-light" data-dismiss="modal"><i class="fa fa-times mr-2"></i>Cancel</button>
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<?php
|
|
require_once "../includes/ajax_footer.php";
|