Added confirm box to first page overwrite

This commit is contained in:
Karl Cordes 2013-03-29 18:20:00 +11:00
parent da23179673
commit 4f9ef7198d
3 changed files with 439 additions and 421 deletions

View file

@ -1,7 +1,7 @@
<?
App::import('Vendor','pagecounter');
$pagecounter = new PageCounter();
App::import('Vendor','pagecounter');
$pagecounter = new PageCounter();
?>
<p>Dear <?=$enquiry['Contact']['first_name']?>,</p>
@ -18,22 +18,31 @@
<td valign="top" width="10%"><? if($li['option'] == 1) {
echo 'Option<br>';
}
?><?=$li['item_number']?></td>
?><?=$li['item_number']?></td>
<td width="80%"><?=$li['title'];?></td>
<td valign="top" width="10%"><?=$decimal->formatDecimal($li['quantity']);?></td>
</tr>
<? endforeach;?>
</table>
<p></p>
<p>If you have any further queries, please contact us at our office for assistance.</p>
<p>We look forward to your reply.</p>
<p></p>
<p>If you have any further queries, please contact us at our office for assistance.</p>
<p>We look forward to your reply.</p>
<p>Regards,</p>
<?=$enquiry['User']['first_name'].' '.$enquiry['User']['last_name'];?><br />
<?=$enquiry['User']['job_title'];?><br />
<br />
<u><b>Attachments:</b></u><br />
CMC Technologies Terms & Conditions of Sale 1/7/06 (attached)<br>
<?php foreach($attachments as $attachment) {; ?>
<?php echo $attachment['Attachment']['name']; ?> (<?=$pagecounter->count($attachment['Attachment']['file']); ?> pages)<br>
<?php } ?>
<p>Regards,</p>
<?=$enquiry['User']['first_name'].' '.$enquiry['User']['last_name'];?><br />
<?=$enquiry['User']['job_title'];?><br />
<br />
<u><b>Attachments:</b></u><br />
CMC Technologies Terms & Conditions of Sale 1/7/06 (attached)<br>
<?php foreach($attachments as $attachment) { ?>
<?php
$pagecount = '';
if($attachment['Attachment']['type'] == 'application/pdf') {
$pagecount = '('.$pagecounter->count($attachment['Attachment']['file']).') pages';
}
?>
<?= $attachment['Attachment']['name']; ?> <?= $pagecount ?><br>
<?php
} ?>

View file

@ -16,9 +16,11 @@ echo $form->input('Document.id');
?>
<div class="docButtons">
<button id="generateFirstPage">(re)Generate First Page</button>
<button id="generateFirstPage">Generate first fage</button>
<button id="addPage">Add Content Page</button>
<button id="editQuoteDetails">View/Edit Quote Details</button>
<button id="editQuoteDetails">View/Edit Quote details</button>
<button id="pdfDocButton">Generate PDF</button>
<button id="emailDocButton">Email Quote to customer</button>
<?=$html->link('Generate PDF of this Quote', '/documents/pdf/'.$document['Document']['id']);?>
<?=$html->link('Email this Quote', '/documents/email_pdf/'.$document['Document']['id']);?>
</div>

View file

@ -352,13 +352,20 @@ $(function() {
if($(".firstPage").length == 0) {
newPage(true);
}
else {
var confirmed = confirm("This will overwrite any changes you have made to the first page");
}
if(confirmed) {
$.get('/documents/generateFirstPage/'+docID, function(data) {
$(".firstPage").val(data);
savePages();
});
}
});
$("#pdfDocButton").click(function() {
});