Commit 6dc1b8b81353c21761ee7da79a3fe25a73884e4c
1 parent
7f6e3b1df9
Exists in
master
hide attachement, solved issue of pie chart and calender starts from monday
Showing
3 changed files
with
5 additions
and
3 deletions
Show diff stats
app/partials/analytics/analytics.controller.js
app/partials/fuelOrders/fuelOrders.html
... | ... | @@ -95,7 +95,7 @@ |
95 | 95 | <td data-title="'Company Name'" filter="{companyName: 'text'}" sortable="'companyName'" ng-click="editTableRow(row)"> |
96 | 96 | {{row.companyName}} |
97 | 97 | </td> |
98 | - <td data-title="'Fueling Date'" filter="{fuelingDate: 'text'}" sortable="'fuelingDate'" ng-click="editTableRow(row)"> | |
98 | + <td data-title="'Fueling Date'" filter="{'fuelingDate': 'text'}" sortable="'fuelingDate'" ng-click="editTableRow(row)"> | |
99 | 99 | {{row.fuelingDate |date:'MM/dd/yyyy'}} |
100 | 100 | </td> |
101 | 101 | <td data-title="'Tail #'" filter="{aircraftName: 'text'}" sortable="'aircraftName'" ng-click="editTableRow(row)"> |
... | ... | @@ -129,7 +129,7 @@ |
129 | 129 | </select> |
130 | 130 | |
131 | 131 | </td> |
132 | - <td data-title="'Attachments'" filter="{orderInvoice : 'select'}" filter-data="attachmentFilterOptions" sortable="'orderInvoice '"> | |
132 | + <!-- <td data-title="'Attachments'" filter="{orderInvoice : 'select'}" filter-data="attachmentFilterOptions" sortable="'orderInvoice '"> | |
133 | 133 | <select class="btn btn-regular" ng-model="attachOptionSelected" ng-change="attachment(row.id,attachOptionSelected,row.orderInvoice.link, row)" > |
134 | 134 | <option value="" disabled selected="selected" >Invoice</option> |
135 | 135 | <option value="viewAttachment" ng-if="row.orderInvoice !== null" >View</option> |
... | ... | @@ -138,7 +138,7 @@ |
138 | 138 | <option value="uploadAttachment" >Upload</option> |
139 | 139 | </select> |
140 | 140 | <i class="fa fa-paperclip" ng-if="row.orderInvoice !== null"></i> |
141 | - </td> | |
141 | + </td> --> | |
142 | 142 | </tr> |
143 | 143 | </table> |
144 | 144 | ... | ... |
app/partials/scheduler/scheduler.controller.js