Updated fonts & changed icons
gitea/salix/pipeline/head Something is wrong with the build of this commit Details

This commit is contained in:
Joan Sanchez 2020-03-11 08:02:58 +01:00
parent 98e82ca91d
commit 7496bc923e
11 changed files with 54 additions and 18 deletions

View File

@ -30,7 +30,7 @@
ng-click="$ctrl.onClear($event)"> ng-click="$ctrl.onClear($event)">
</vn-icon> </vn-icon>
<vn-icon <vn-icon
icon="attach_file" icon="icon-attach"
vn-tooltip="Select a file" vn-tooltip="Select a file"
ng-click="$ctrl.openFileSelector()"> ng-click="$ctrl.openFileSelector()">
</vn-icon> </vn-icon>

View File

@ -23,6 +23,21 @@
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
} }
.icon-zone:before {
content: "\e95d";
}
.icon-inventory:before {
content: "\e95e";
}
.icon-wiki:before {
content: "\e968";
}
.icon-attach:before {
content: "\e96c";
}
.icon-zone2:before {
content: "\e96d";
}
.icon-net:before { .icon-net:before {
content: "\e95b"; content: "\e95b";
} }
@ -301,4 +316,4 @@
} }
.icon-worker:before { .icon-worker:before {
content: "\e943"; content: "\e943";
} }

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 96 KiB

After

Width:  |  Height:  |  Size: 108 KiB

View File

@ -150,7 +150,6 @@ module.exports = Self => {
JOIN vn.currency cu ON cu.id = e.currencyFk` JOIN vn.currency cu ON cu.id = e.currencyFk`
); );
stmt.merge(conn.makeSuffix(filter)); stmt.merge(conn.makeSuffix(filter));
let itemsIndex = stmts.push(stmt) - 1; let itemsIndex = stmts.push(stmt) - 1;

View File

@ -11,7 +11,7 @@
}, },
"properties": { "properties": {
"id": { "id": {
"type": "Number", "type": "number",
"id": true, "id": true,
"description": "Identifier" "description": "Identifier"
}, },
@ -19,46 +19,49 @@
"type": "date" "type": "date"
}, },
"ref": { "ref": {
"type": "String" "type": "string"
}, },
"isBooked": { "isBooked": {
"type": "Boolean" "type": "boolean"
}, },
"isInventory": { "isInventory": {
"type": "Boolean" "type": "boolean"
}, },
"notes": { "notes": {
"type": "Number" "type": "number"
}, },
"isConfirmed": { "isConfirmed": {
"type": "Boolean" "type": "boolean"
}, },
"isVirtual": { "isVirtual": {
"type": "Boolean", "type": "boolean",
"mysql": { "mysql": {
"columnName": "isRaid" "columnName": "isRaid"
} }
}, },
"isRaid": {
"type": "boolean"
},
"commission": { "commission": {
"type": "Number" "type": "number"
}, },
"isOrdered": { "isOrdered": {
"type": "Boolean" "type": "boolean"
}, },
"created": { "created": {
"type": "date" "type": "date"
}, },
"observation": { "observation": {
"type": "String", "type": "string",
"mysql": { "mysql": {
"columnName": "evaNotes" "columnName": "evaNotes"
} }
}, },
"isBlocked": { "isBlocked": {
"type": "Boolean" "type": "boolean"
}, },
"loadPriority": { "loadPriority": {
"type": "Number" "type": "number"
} }
}, },
"relations": { "relations": {

View File

@ -35,6 +35,18 @@
value="{{$ctrl.entry.travel.warehouseOut.name}}"> value="{{$ctrl.entry.travel.warehouseOut.name}}">
</vn-label-value> </vn-label-value>
</div> </div>
<div class="icons">
<vn-icon
vn-tooltip="Is inventory entry"
icon="icon-inventory"
ng-class="{bright: $ctrl.entry.isInventory}">
</vn-icon>
<vn-icon
vn-tooltip="Is virtual entry"
icon="icon-net"
ng-class="{bright: $ctrl.entry.isRaid}">
</vn-icon>
</div>
<vn-quick-links <vn-quick-links
links="$ctrl.quicklinks"> links="$ctrl.quicklinks">
</vn-quick-links> </vn-quick-links>

View File

@ -1,4 +1,6 @@
Reference: Referencia Reference: Referencia
All travels with current agency: Todos los envios con la agencia actual All travels with current agency: Todos los envios con la agencia actual
All entries with current supplier: Todas las entradas con el proveedor actual All entries with current supplier: Todas las entradas con el proveedor actual
Show entry report: Ver informe del pedido Show entry report: Ver informe del pedido
Is inventory entry: Es una entrada de inventario
Is virtual entry: Es una redada

View File

@ -38,7 +38,7 @@
ng-show="entry.isInventory" ng-show="entry.isInventory"
class="bright" class="bright"
vn-tooltip="Inventory entry" vn-tooltip="Inventory entry"
icon="icon-anonymous"> icon="icon-inventory">
</vn-icon> </vn-icon>
<vn-icon <vn-icon
ng-show="entry.isRaid" ng-show="entry.isRaid"

View File

@ -1,7 +1,7 @@
{ {
"module": "zone", "module": "zone",
"name": "Zones", "name": "Zones",
"icon" : "location_on", "icon" : "icon-zone",
"validations" : true, "validations" : true,
"dependencies": ["worker"], "dependencies": ["worker"],
"menus": { "menus": {