Merge branch 'dev' of http://git.verdnatura.es/salix into dev
This commit is contained in:
commit
b068abc101
|
@ -46,14 +46,14 @@
|
|||
"icon": "folder"
|
||||
}
|
||||
},{
|
||||
"url" : "/historic",
|
||||
"state": "item.card.historic",
|
||||
"component": "vn-item-historic",
|
||||
"url" : "/history",
|
||||
"state": "item.card.history",
|
||||
"component": "vn-item-history",
|
||||
"params": {
|
||||
"item": "$ctrl.item"
|
||||
},
|
||||
"menu": {
|
||||
"description": "Historic",
|
||||
"description": "History",
|
||||
"icon": "folder"
|
||||
}
|
||||
},{
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
<vn-card>
|
||||
<vn-vertical pad-large>
|
||||
<vn-title>Item barcode</vn-title>
|
||||
</vn-vertical>
|
||||
</vn-card>
|
|
@ -0,0 +1,5 @@
|
|||
import ngModule from '../module';
|
||||
|
||||
ngModule.component('vnItemBarcode', {
|
||||
template: require('./item-barcode.html')
|
||||
});
|
|
@ -0,0 +1,5 @@
|
|||
<vn-card>
|
||||
<vn-vertical pad-large>
|
||||
<vn-title>Botanical</vn-title>
|
||||
</vn-vertical>
|
||||
</vn-card>
|
|
@ -0,0 +1,5 @@
|
|||
import ngModule from '../module';
|
||||
|
||||
ngModule.component('vnItemBotanical', {
|
||||
template: require('./item-botanical.html')
|
||||
});
|
|
@ -2,7 +2,7 @@
|
|||
<mg-ajax
|
||||
path="/item/api/Items/{{patch.params.id}}"
|
||||
options="vnPatch"
|
||||
override="{filter: {include: [{relation: 'itemType'}, {relation: 'origin'}, {relation: 'ink'}, {relation: 'producer'}]}}"
|
||||
override="{filter: {include: [{relation: 'itemType'}, {relation: 'origin'}, {relation: 'ink'}, {relation: 'producer'}, {relation: 'expence'}]}}"
|
||||
>
|
||||
</mg-ajax>
|
||||
<vn-watcher
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
<vn-card>
|
||||
<vn-vertical pad-large>
|
||||
<vn-title>Item history</vn-title>
|
||||
</vn-vertical>
|
||||
</vn-card>
|
|
@ -0,0 +1,5 @@
|
|||
import ngModule from '../module';
|
||||
|
||||
ngModule.component('vnItemHistory', {
|
||||
template: require('./item-history.html')
|
||||
});
|
|
@ -5,3 +5,10 @@ import './filter-panel/filter-panel';
|
|||
import './create/item-create';
|
||||
import './card/item-card';
|
||||
import './data/item-data';
|
||||
import './tags/item-tags';
|
||||
import './history/item-history';
|
||||
import './niche/item-niche';
|
||||
import './botanical/item-botanical';
|
||||
import './picture/item-picture';
|
||||
import './barcode/item-barcode';
|
||||
|
||||
|
|
|
@ -7,5 +7,14 @@
|
|||
"Type": "Tipo",
|
||||
"Name": "Nombre",
|
||||
"Relevancy": "Relevancia",
|
||||
"New item": "Nuevo artículo"
|
||||
"New item": "Nuevo artículo",
|
||||
"Basic data": "Datos básicos",
|
||||
"History" : "Historial",
|
||||
"Item history" : "Historial del artículo",
|
||||
"Item tags" : "Tags del artículo",
|
||||
"Niche": "Nicho",
|
||||
"Picture": "Foto",
|
||||
"Item pictures": "Fotos del artículo",
|
||||
"Barcode": "Código barras",
|
||||
"Item barcode": "Código de barras del artículo"
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
<vn-card>
|
||||
<vn-vertical pad-large>
|
||||
<vn-title>Niche</vn-title>
|
||||
</vn-vertical>
|
||||
</vn-card>
|
|
@ -0,0 +1,5 @@
|
|||
import ngModule from '../module';
|
||||
|
||||
ngModule.component('vnItemNiche', {
|
||||
template: require('./item-niche.html')
|
||||
});
|
|
@ -0,0 +1,5 @@
|
|||
<vn-card>
|
||||
<vn-vertical pad-large>
|
||||
<vn-title>Item pictures</vn-title>
|
||||
</vn-vertical>
|
||||
</vn-card>
|
|
@ -0,0 +1,5 @@
|
|||
import ngModule from '../module';
|
||||
|
||||
ngModule.component('vnItemPicture', {
|
||||
template: require('./item-picture.html')
|
||||
});
|
|
@ -0,0 +1,5 @@
|
|||
<vn-card>
|
||||
<vn-vertical pad-large>
|
||||
<vn-title>Item tags</vn-title>
|
||||
</vn-vertical>
|
||||
</vn-card>
|
|
@ -0,0 +1,5 @@
|
|||
import ngModule from '../module';
|
||||
|
||||
ngModule.component('vnItemTags', {
|
||||
template: require('./item-tags.html')
|
||||
});
|
Loading…
Reference in New Issue