2863 - Added monitor module #618
|
@ -2,7 +2,6 @@ export * from './module';
|
||||||
|
|
||||||
import './main';
|
import './main';
|
||||||
import './index/';
|
import './index/';
|
||||||
import './search-panel';
|
|
||||||
import './index/tickets';
|
import './index/tickets';
|
||||||
import './index/clients';
|
import './index/clients';
|
||||||
import './index/orders';
|
import './index/orders';
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
FREE: Free
|
|
||||||
DELIVERED: Delivered
|
|
||||||
ON_PREPARATION: On preparation
|
|
||||||
PACKED: Packed
|
|
|
@ -1,21 +0,0 @@
|
||||||
Ticket id: Id ticket
|
|
||||||
Client id: Id cliente
|
|
||||||
Nickname: Alias
|
|
||||||
From: Desde
|
|
||||||
To: Hasta
|
|
||||||
Agency: Agencia
|
|
||||||
Warehouse: Almacén
|
|
||||||
Sales person: Comercial
|
|
||||||
Province: Provincia
|
|
||||||
My team: Mi equipo
|
|
||||||
Order id: Id cesta
|
|
||||||
Grouped States: Estado agrupado
|
|
||||||
Days onward: Días adelante
|
|
||||||
With problems: Con problemas
|
|
||||||
Pending: Pendiente
|
|
||||||
FREE: Libre
|
|
||||||
DELIVERED: Servido
|
|
||||||
ON_PREPARATION: En preparacion
|
|
||||||
PACKED: Encajado
|
|
||||||
Cannot choose a range of dates and days onward at the same time: No se puede selecionar un rango de fechas y días en adelante a la vez
|
|
||||||
Or: O
|
|
|
@ -1,46 +0,0 @@
|
||||||
<div class="search-panel">
|
|
||||||
<form ng-submit="$ctrl.onSearch()">
|
|
||||||
<vn-horizontal>
|
|
||||||
<vn-textfield
|
|
||||||
vn-one
|
|
||||||
label="General search"
|
|
||||||
ng-model="filter.search"
|
|
||||||
info="Search suppliers by id, name or alias"
|
|
||||||
vn-focus>
|
|
||||||
</vn-textfield>
|
|
||||||
</vn-horizontal>
|
|
||||||
<vn-horizontal>
|
|
||||||
<vn-textfield
|
|
||||||
vn-one
|
|
||||||
label="Alias"
|
|
||||||
ng-model="filter.nickname">
|
|
||||||
</vn-textfield>
|
|
||||||
<vn-textfield
|
|
||||||
vn-one
|
|
||||||
label="Tax number"
|
|
||||||
ng-model="filter.nif">
|
|
||||||
</vn-textfield>
|
|
||||||
</vn-horizontal>
|
|
||||||
<vn-horizontal>
|
|
||||||
<vn-autocomplete
|
|
||||||
vn-one
|
|
||||||
label="Province"
|
|
||||||
ng-model="filter.provinceFk"
|
|
||||||
url="Provinces"
|
|
||||||
show-field="name"
|
|
||||||
value-field="id">
|
|
||||||
</vn-autocomplete>
|
|
||||||
<vn-autocomplete
|
|
||||||
vn-one
|
|
||||||
label="Country"
|
|
||||||
ng-model="filter.countryFk"
|
|
||||||
url="countries"
|
|
||||||
show-field="country"
|
|
||||||
value-field="id">
|
|
||||||
</vn-autocomplete>
|
|
||||||
</vn-horizontal>
|
|
||||||
<vn-horizontal class="vn-mt-lg">
|
|
||||||
<vn-submit label="Search"></vn-submit>
|
|
||||||
</vn-horizontal>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
|
@ -1,7 +0,0 @@
|
||||||
import ngModule from '../module';
|
|
||||||
import SearchPanel from 'core/components/searchbar/search-panel';
|
|
||||||
|
|
||||||
ngModule.vnComponent('vnSupplierSearchPanel', {
|
|
||||||
template: require('./index.html'),
|
|
||||||
controller: SearchPanel
|
|
||||||
});
|
|
|
@ -1,4 +0,0 @@
|
||||||
Province: Provincia
|
|
||||||
Country: País
|
|
||||||
Tax number: NIF / CIF
|
|
||||||
Search suppliers by id, name or alias: Busca proveedores por id, nombre o alias
|
|
Loading…
Reference in New Issue