mirror of
https://github.com/itflow-org/itflow
synced 2026-09-21 06:01:15 +00:00
Send Email and Mark Sent modals for invoices and quotes (db 2.7.7)
Send Email opens a contact picker instead of hardcoding the primary contact; Mark Sent asks how it went out and takes a note. Both log recipients / method / note to the document history. Handlers moved GET -> POST. Fixes two pre-existing bugs in the email path: archived contacts were still receiving billing copies, and every copy was addressed to the primary contact by name.
This commit is contained in:
131
agent/modals/invoice/invoice_email.php
Normal file
131
agent/modals/invoice/invoice_email.php
Normal file
@@ -0,0 +1,131 @@
|
||||
<?php
|
||||
|
||||
require_once '../../../includes/modal_header.php';
|
||||
|
||||
enforceUserPermission('module_sales', 2);
|
||||
|
||||
$invoice_id = intval($_GET['invoice_id']);
|
||||
|
||||
$sql = mysqli_query($mysqli, "SELECT invoice_client_id, invoice_number, invoice_prefix, invoice_status
|
||||
FROM invoices WHERE invoice_id = $invoice_id LIMIT 1");
|
||||
$row = mysqli_fetch_assoc($sql);
|
||||
$invoice_prefix = escapeHtml($row['invoice_prefix']);
|
||||
$invoice_number = intval($row['invoice_number']);
|
||||
$invoice_status = escapeHtml($row['invoice_status']);
|
||||
$client_id = intval($row['invoice_client_id']);
|
||||
|
||||
enforceClientAccess();
|
||||
|
||||
// Everyone at the client who can actually receive mail. Primary and billing
|
||||
// contacts lead because they are the ones checked by default below - that
|
||||
// pairing is the behaviour the old one-click Send Email link had baked in.
|
||||
$sql_contacts = mysqli_query(
|
||||
$mysqli,
|
||||
"SELECT contact_billing, contact_email, contact_id, contact_name, contact_primary, contact_title
|
||||
FROM contacts
|
||||
WHERE contact_client_id = $client_id
|
||||
AND contact_archived_at IS NULL
|
||||
AND contact_email IS NOT NULL
|
||||
AND contact_email != ''
|
||||
ORDER BY contact_primary DESC, contact_billing DESC, contact_name ASC"
|
||||
);
|
||||
|
||||
$contact_count = mysqli_num_rows($sql_contacts);
|
||||
|
||||
ob_start();
|
||||
|
||||
?>
|
||||
|
||||
<div class="modal-header bg-dark">
|
||||
<h5 class="modal-title text-white">
|
||||
<i class="fa fa-fw fa-paper-plane me-2"></i>Email Invoice <?= "$invoice_prefix$invoice_number" ?>
|
||||
</h5>
|
||||
<button type="button" class="btn-close btn-close-white" data-bs-dismiss="modal"></button>
|
||||
</div>
|
||||
<form action="post.php" method="post" autocomplete="off">
|
||||
<input type="hidden" name="csrf_token" value="<?= $_SESSION['csrf_token'] ?>">
|
||||
<input type="hidden" name="invoice_id" value="<?= $invoice_id ?>">
|
||||
|
||||
<div class="modal-body">
|
||||
|
||||
<?php if ($contact_count == 0) { ?>
|
||||
|
||||
<p class="text-muted mb-0">
|
||||
This client has no contacts with an email address, so there is nobody to send to.
|
||||
Add a contact with an email address, or use Mark Sent to record that the invoice
|
||||
went out some other way.
|
||||
</p>
|
||||
|
||||
<?php } else { ?>
|
||||
|
||||
<label class="mb-2">Send to <strong class="text-danger">*</strong></label>
|
||||
|
||||
<div class="list-group mb-3">
|
||||
|
||||
<?php
|
||||
|
||||
while ($row = mysqli_fetch_assoc($sql_contacts)) {
|
||||
$contact_id = intval($row['contact_id']);
|
||||
$contact_name = escapeHtml($row['contact_name']);
|
||||
$contact_email = escapeHtml($row['contact_email']);
|
||||
$contact_title = escapeHtml($row['contact_title']);
|
||||
$contact_primary = intval($row['contact_primary']);
|
||||
$contact_billing = intval($row['contact_billing']);
|
||||
|
||||
// Default selection reproduces the old link exactly: the
|
||||
// primary contact was the recipient and every billing
|
||||
// contact got a copy
|
||||
$contact_checked = ($contact_primary == 1 || $contact_billing == 1);
|
||||
|
||||
?>
|
||||
|
||||
<label class="list-group-item" for="invoiceEmailContact<?= $contact_id ?>">
|
||||
<input type="checkbox" class="form-check-input me-2" name="contacts[]"
|
||||
id="invoiceEmailContact<?= $contact_id ?>" value="<?= $contact_id ?>"
|
||||
<?php if ($contact_checked) { echo "checked"; } ?>>
|
||||
<strong><?= $contact_name ?></strong>
|
||||
<?php if ($contact_primary == 1) { ?>
|
||||
<span class="badge text-bg-primary ms-1">Primary</span>
|
||||
<?php } ?>
|
||||
<?php if ($contact_billing == 1) { ?>
|
||||
<span class="badge text-bg-success ms-1">Billing</span>
|
||||
<?php } ?>
|
||||
<?php if (!empty($contact_title)) { ?>
|
||||
<span class="text-muted ms-1"><?= $contact_title ?></span>
|
||||
<?php } ?>
|
||||
<br>
|
||||
<span class="text-muted ms-4"><?= $contact_email ?></span>
|
||||
</label>
|
||||
|
||||
<?php
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
</div>
|
||||
|
||||
<?php if ($invoice_status !== 'Draft') { ?>
|
||||
<p class="text-muted mb-0">
|
||||
<i class="fa fa-fw fa-info-circle me-1"></i>This invoice is
|
||||
<strong><?= $invoice_status ?></strong>, so sending it will not change its status.
|
||||
</p>
|
||||
<?php } ?>
|
||||
|
||||
<?php } ?>
|
||||
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<?php if ($contact_count > 0) { ?>
|
||||
<button type="submit" name="email_invoice" class="btn btn-primary text-bold">
|
||||
<i class="fa fa-fw fa-paper-plane me-2"></i>Send
|
||||
</button>
|
||||
<?php } ?>
|
||||
<button type="button" class="btn btn-light" data-bs-dismiss="modal">
|
||||
<i class="fa fa-fw fa-times me-2"></i>Cancel
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<?php
|
||||
require_once '../../../includes/modal_footer.php';
|
||||
Reference in New Issue
Block a user