cit-preview-journal-merge-search.html 3.87 KB
Newer Older
1 2 3 4 5 6 7
<div class="popover">
    <div class="arrow"></div>
    <div class="popover-content">
        <div>
            <table class="table table-responsive">
                <tr>
                    <td>
8 9
                        <span translate="AccountCode"></span>
                        <input class="form-control input-width-middle" type="text" id="subjectCode" ng-model="queryParams.subjectCode" />
10 11 12 13 14
                    </td>
                </tr>
                <tr>
                    <td>
                        <span translate="AccountName"></span>
15
                        <input class="form-control input-width-middle" type="text" id="subjectName" ng-model="queryParams.subjectName" />
16 17
                    </td>
                </tr>
18
                <tr style="display: none">
19
                    <td>
20 21
                        <span translate="orgCode"></span>
                        <input class="form-control input-width-middle" type="text" id="orgCode" ng-model="queryParams.orgCode" />
22 23
                    </td>
                </tr>
24
                <tr style="display: none">
25
                    <td>
26 27
                        <span translate="orgName"></span>
                        <input class="form-control input-width-middle" type="text" id="orgName" ng-model="queryParams.orgName" />
28 29
                    </td>
                </tr>
30
                <tr style="display: none">
31
                    <td>
32 33
                        <span translate="DocumentDate"></span>
                        <input class="form-control input-width-middle" type="text" id="documentDate" ng-model="queryParams.documentDate" />
34 35
                    </td>
                </tr>
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
                <!--<tr>
                    <td>
                        <span translate="InvoiceFPLXQuery"></span>
                        <div class="ui-select-has-border input-width-middle">
                            <ui-select ng-model="InvoiceType.selected" search-enabled="false" style="text-align:left;" class="input-width-middle">
                                <ui-select-match>{{$select.selected.name}}</ui-select-match>
                                <ui-select-choices repeat="item in invoiceTypeList | propsFilter: {name: $select.search}">
                                    <div title="{{item.name}}" ng-bind-html="item.name"></div>
                                </ui-select-choices>
                            </ui-select>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td>
                        <span translate="InvoiceRZJGQuery"></span>
                        <div class="ui-select-has-border input-width-middle">
                            <ui-select ng-model="CertificationStatus.selected" search-enabled="false" style="text-align: left; " class="input-width-middle">
                                <ui-select-match>{{$select.selected.name}}</ui-select-match>
                                <ui-select-choices repeat="item in cetificationResultList | propsFilter: {name: $select.search}">
                                    <div title="{{item.name}}" ng-bind-html="item.name"></div>
                                </ui-select-choices>
                            </ui-select>
                        </div>
                    </td>
                </tr>-->
            </table>
        </div>
        <div class="row">
            <div style="float:right;margin-right:10px;">
                <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 margin-right10" ng-click="doDataFilterReset()">
                    <span class="fa fa-times" aria-hidden="true"> </span> <span translate="Reset"></span>
                </button>
            </div>
        </div>
    </div>
</div>