Added confirm box to first page overwrite
This commit is contained in:
parent
da23179673
commit
4f9ef7198d
|
|
@ -1,39 +1,48 @@
|
|||
<?
|
||||
|
||||
App::import('Vendor','pagecounter');
|
||||
$pagecounter = new PageCounter();
|
||||
App::import('Vendor','pagecounter');
|
||||
$pagecounter = new PageCounter();
|
||||
?>
|
||||
|
||||
<p>Dear <?=$enquiry['Contact']['first_name']?>,</p>
|
||||
|
||||
<p>Thank you for your enquiry. The following quotation is for:</p>
|
||||
<table>
|
||||
<tr>
|
||||
<tr>
|
||||
<td width="10%"><u><b>Item</b></u></td>
|
||||
<td width="80%"><u><b>Description</b></u></td>
|
||||
<td width="10%"><u><b>Quantity</b></u></td>
|
||||
</tr>
|
||||
<? foreach($document['LineItem'] as $li):?>
|
||||
<tr>
|
||||
</tr>
|
||||
<? foreach($document['LineItem'] as $li):?>
|
||||
<tr>
|
||||
<td valign="top" width="10%"><? if($li['option'] == 1) {
|
||||
echo 'Option<br>';
|
||||
}
|
||||
?><?=$li['item_number']?></td>
|
||||
echo 'Option<br>';
|
||||
}
|
||||
?><?=$li['item_number']?></td>
|
||||
<td width="80%"><?=$li['title'];?></td>
|
||||
<td valign="top" width="10%"><?=$decimal->formatDecimal($li['quantity']);?></td>
|
||||
</tr>
|
||||
<? endforeach;?>
|
||||
</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
|
||||
} ?>
|
||||
|
|
|
|||
|
|
@ -16,10 +16,12 @@ 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>
|
||||
<?=$html->link('Generate PDF of this Quote', '/documents/pdf/'.$document['Document']['id']);?>
|
||||
<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>
|
||||
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue