This repository has been archived by the owner on Feb 23, 2020. It is now read-only.
forked from WHMCS/templates-six
-
Notifications
You must be signed in to change notification settings - Fork 2
/
viewquote.tpl
216 lines (187 loc) · 9.78 KB
/
viewquote.tpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="{$charset}" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{$companyname} - {$LANG.quotenumber}{$id}</title>
<!-- Bootstrap -->
<link href="{$BASE_PATH_CSS}/bootstrap.min.css" rel="stylesheet">
<link href="{$BASE_PATH_CSS}/font-awesome.min.css" rel="stylesheet">
<!-- Styling -->
<link href="templates/{$template}/css/overrides.css" rel="stylesheet">
<link href="templates/{$template}/css/styles.css" rel="stylesheet">
<link href="templates/{$template}/css/invoice.css" rel="stylesheet">
</head>
<body>
<div class="container-fluid invoice-container">
{if $invalidQuoteIdRequested}
{include file="$template/includes/panel.tpl" type="danger" headerTitle=$LANG.error bodyContent=$LANG.invoiceserror bodyTextCenter=true}
{else}
<div class="row">
<div class="col-sm-7">
{if $logo}
<p><img src="{$logo}" title="{$companyname}" /></p>
{else}
<h2>{$companyname}</h2>
{/if}
<h3>{$LANG.quotenumber}{$id}</h3>
</div>
<div class="col-sm-5 text-center">
<div class="invoice-status">
{if $stage eq "Delivered"}
<span class="unpaid">{$LANG.quotestagedelivered}</span>
{elseif $stage eq "Accepted"}
<span class="paid">{$LANG.quotestageaccepted}</span>
{elseif $stage eq "On Hold"}
<span class="refunded">{$LANG.quotestageonhold}</span>
{elseif $stage eq "Lost"}
<span class="cancelled">{$LANG.quotestagelost}</span>
{elseif $stage eq "Dead"}
<span class="collections">{$LANG.quotestagedead}</span>
{/if}
</div>
{if $stage eq "Delivered" || $stage eq "On Hold"}
<div class="payment-btn-container" align="center">
<button type="button" class="btn btn-success" data-toggle="modal" data-target="#acceptQuoteModal"><i class="fa fa-check-circle"></i> {$LANG.quoteacceptbtn}</button>
</div>
{/if}
</div>
</div>
<hr>
{if $agreetosrequired}
{include file="$template/includes/panel.tpl" type="danger" headerTitle=$LANG.error bodyContent=$LANG.ordererroraccepttos bodyTextCenter=true}
{/if}
<div class="row">
<div class="col-xs-6">
<strong>{$LANG.quoterecipient}:</strong>
<address class="small-text">
{if $clientsdetails.companyname}{$clientsdetails.companyname}<br />{/if}
{$clientsdetails.firstname} {$clientsdetails.lastname}<br />
{$clientsdetails.address1}, {$clientsdetails.address2}<br />
{$clientsdetails.city}, {$clientsdetails.state}, {$clientsdetails.postcode}<br />
{$clientsdetails.country}
{if $customfields}
<br /><br />
{foreach from=$customfields item=customfield}
{$customfield.fieldname}: {$customfield.value}<br />
{/foreach}
{/if}
</address>
</div>
<div class="col-xs-6 text-right">
<strong>{$LANG.invoicespayto}:</strong>
<address class="small-text">
{$payto}
</address>
</div>
</div>
<div class="row">
<div class="col-xs-6">
<strong>{$LANG.quotedatecreated}:</strong><br>
<span class="small-text">
{$datecreated}<br /><br />
</span>
</div>
<div class="col-xs-6 text-right">
<strong>{$LANG.quotevaliduntil}:</strong><br>
<span class="small-text">
{$validuntil}<br /><br />
</span>
</div>
</div>
<br />
{if $proposal}
{include file="$template/includes/panel.tpl" type="warning" headerTitle=$LANG.quoteproposal bodyContent=$proposal}
{/if}
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title"><strong>{$LANG.quotelineitems}</strong></h3>
</div>
<div class="panel-body">
<div class="table-responsive">
<table class="table table-condensed">
<thead>
<tr>
<td><strong>{$LANG.invoicesdescription}</strong></td>
<td class="text-center"><strong>{$LANG.quotediscountheading}</strong></td>
<td width="20%" class="text-center"><strong>{$LANG.invoicesamount}</strong></td>
</tr>
</thead>
<tbody>
{foreach from=$quoteitems item=item}
<tr>
<td>{$item.description}{if $item.taxed} *{/if}</td>
<td class="text-center">{if $item.discountpc > 0}{$item.discount} ({$item.discountpc}%){else} - {/if}</td>
<td class="text-center">{$item.amount}</td>
</tr>
{/foreach}
<tr>
<td colspan="2" class="total-row text-right"><strong>{$LANG.invoicessubtotal}</strong></td>
<td class="total-row text-center">{$subtotal}</td>
</tr>
{if $taxrate}
<tr>
<td colspan="2" class="total-row text-right"><strong>{$taxrate}% {$taxname}</strong></td>
<td class="total-row text-center">{$tax}</td>
</tr>
{/if}
{if $taxrate2}
<tr>
<td colspan="2" class="total-row text-right"><strong>{$taxrate2}% {$taxname2}</strong></td>
<td class="total-row text-center">{$tax2}</td>
</tr>
{/if}
<tr>
<td colspan="2" class="total-row text-right"><strong>{$LANG.quotelinetotal}</strong></td>
<td class="total-row text-center">{$total}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
{if $notes}
{include file="$template/includes/panel.tpl" type="info" headerTitle=$LANG.invoicesnotes bodyContent=$notes}
{/if}
{if $taxrate}
<p>* {$LANG.invoicestaxindicator}</p>
{/if}
<div class="pull-right btn-group btn-group-sm hidden-print">
<a href="javascript:window.print()" class="btn btn-default"><i class="fa fa-print"></i> {$LANG.print}</a>
<a href="dl.php?type=q&id={$quoteid}" class="btn btn-default"><i class="fa fa-download"></i> {$LANG.invoicesdownload}</a>
</div>
{/if}
</div>
<p class="text-center hidden-print"><a href="clientarea.php">{$LANG.invoicesbacktoclientarea}</a></a></p>
<form method="post" action="viewquote.php?id={$quoteid}&action=accept">
<div class="modal fade" id="acceptQuoteModal">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title">{$LANG.quoteacceptbtn}</h4>
</div>
<div class="modal-body">
<p>{$LANG.quoteacceptagreetos}</p>
<p class="text-center">
<label class="checkbox-inline">
<input type="checkbox" name="agreetos" />
{$LANG.ordertosagreement} <a href="{$tosurl}" target="_blank">{$LANG.ordertos}</a>
</label>
</p>
<small>{$LANG.quoteacceptcontractwarning}</small>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">{$LANG.cancel}</button>
<button type="submit" class="btn btn-primary">{$LANG.quoteacceptbtn}</button>
</div>
</div>
</div>
</div>
</form>
<!-- Javascript -->
<script src="{$BASE_PATH_JS}/jquery.min.js"></script>
<script src="{$BASE_PATH_JS}/bootstrap.min.js"></script>
</body>
</html>