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
<div class="popover">
<div class="arrow"></div>
<div class="popover-content">
<div>
<table class="table table-responsive">
<tr>
<td>
<span translate="CustomsIssueDate"></span>
<input class="form-control input-width-small" id="customInvoiceDateStart" ng-model="filterData.invoiceStartDate" />
-
<input class="form-control input-width-small" id="customInvoiceDateEnd" ng-model="filterData.invoiceEndDate" />
</td>
</tr>
<tr>
<td>
<span translate="CustomsPayNum"></span>
<input class="form-control input-width-middle" type="text" ng-model="filterData.payNum" placeholder=""></td>
</tr>
<tr>
<td>
<span translate="InvoiceSE"></span>
<input class="form-control input-width-middle" style="width:115px;text-align:right;" ng-model="filterData.taxAmountFrom" type="text" ng-keyup="PWC.inputNumberFormat(this);" placeholder="">
-
<input class="form-control input-width-middle" style="width: 115px; text-align: right;" ng-model="filterData.taxAmountTo" type="text" ng-keyup="PWC.inputNumberFormat(this);" placeholder="">
</td>
</tr>
<tr>
<td>
<span translate="Amount"></span>
<input class="form-control input-width-middle" style="width: 115px; text-align: right;" ng-model="filterData.invoiceAmountFrom" type="text" ng-keyup="PWC.inputNumberFormat(this);" placeholder="">
-
<input class="form-control input-width-middle" style="width: 115px; text-align: right;" ng-model="filterData.invoiceAmountTo" type="text" ng-keyup="PWC.inputNumberFormat(this);" placeholder="">
</td>
</tr>
</table>
</div>
<div class="row">
<div style="float:right">
<button class="btn btn-default btn-primary" ng-click="doDataFilter()">
<span class="fa fa-chevron-down" aria-hidden="true"> </span> <span translate="Confirm"></span>
</button>
<button class="btn btn-default" style="margin-right:15px" type="button" ng-click="doDataFilterReset()">
<span class="fa fa-times" aria-hidden="true"> </span> <span translate="Reset"></span>
</button>
</div>
</div>
</div>
</div>