#756 ticket.sale-tracking
This commit is contained in:
parent
11787ec2e1
commit
2a9dd98e6a
|
@ -1,6 +1,6 @@
|
|||
<vn-horizontal>
|
||||
<vn-one>{{::$ctrl.concept}}</vn-one>
|
||||
<vn-two>
|
||||
<vn-one>
|
||||
<section
|
||||
class="inline-tag ellipsize" ng-class="{'empty': !fetchedTag.value}"
|
||||
ng-repeat="fetchedTag in $ctrl.tags track by $index"
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
import ngModule from '../module';
|
||||
import './style.scss';
|
||||
|
||||
class Controller {
|
||||
constructor($scope, $stateParams) {
|
||||
|
@ -15,8 +16,8 @@ class Controller {
|
|||
warehouseFk: ${this.ticket.warehouseFk},
|
||||
ticketFk: ${this.ticket.id}
|
||||
})`,
|
||||
tooltip: 'Item diary'
|
||||
}
|
||||
tooltip: 'Item diary',
|
||||
},
|
||||
};
|
||||
this.$scope.descriptor.itemFk = itemFk;
|
||||
this.$scope.descriptor.parent = event.target;
|
||||
|
@ -34,6 +35,6 @@ ngModule.component('vnTicketSaleTracking', {
|
|||
template: require('./index.html'),
|
||||
controller: Controller,
|
||||
bindings: {
|
||||
ticket: '<'
|
||||
}
|
||||
ticket: '<',
|
||||
},
|
||||
});
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
@import "colors";
|
||||
|
||||
vn-table {
|
||||
@media screen and (max-width: 1200px){
|
||||
font-size: 0.9em;
|
||||
padding: 0.2em
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue