4157-send-sms-to-routes #1106

Merged
pau merged 16 commits from 4157-send-sms-to-routes into dev 2022-11-16 08:09:29 +00:00
1 changed files with 27 additions and 23 deletions
Showing only changes of commit 2c98563cfa - Show all commits

View File

@ -7,29 +7,6 @@
model="model" model="model"
options="$ctrl.smartTableOptions" options="$ctrl.smartTableOptions"
expr-builder="$ctrl.exprBuilder(param, value)"> expr-builder="$ctrl.exprBuilder(param, value)">
<slot-actions>
<section class="header">
<vn-tool-bar class="vn-mb-md">
<vn-button
icon="icon-clone"
ng-show="$ctrl.totalChecked > 0"
ng-click="$ctrl.openClonationDialog()"
vn-tooltip="Clone selected routes">
</vn-button>
<vn-button
icon="cloud_download"
ng-show="$ctrl.totalChecked > 0"
ng-click="$ctrl.showRouteReport()"
vn-tooltip="Download selected routes as PDF">
</vn-button>
<vn-button
icon="check"
ng-show="$ctrl.totalChecked > 0"
ng-click="$ctrl.markAsServed()"
vn-tooltip="Mark as served">
</vn-button>
</section>
</slot-actions>
<slot-table> <slot-table>
<table model="model"> <table model="model">
<thead> <thead>
@ -190,6 +167,33 @@
tooltip-position="left"> tooltip-position="left">
</vn-button> </vn-button>
</a> </a>
<a vn-bind="+">
<vn-button class="round md vn-mb-sm"
icon="icon-clone"
vn-tooltip="Clone selected routes"
ng-click="$ctrl.openClonationDialog()"
ng-show="$ctrl.totalChecked > 0"
tooltip-position="left">
</vn-button>
</a>
<a vn-bind="+">
<vn-button class="round md vn-mb-sm"
icon="cloud_download"
vn-tooltip="Download selected routes as PDF"
ng-click="$ctrl.openClonationDialog()"
ng-show="$ctrl.totalChecked > 0"
tooltip-position="left">
</vn-button>
</a>
<a vn-bind="+">
<vn-button class="round md vn-mb-sm"
icon="check"
vn-tooltip="Mark as served"
ng-click="$ctrl.markAsServed()"
ng-show="$ctrl.totalChecked > 0"
tooltip-position="left">
</vn-button>
</a>
</vn-vertical> </vn-vertical>
</div> </div>