Updated fonts & changed icons
gitea/salix/pipeline/head Something is wrong with the build of this commit
Details
gitea/salix/pipeline/head Something is wrong with the build of this commit
Details
This commit is contained in:
parent
98e82ca91d
commit
7496bc923e
|
@ -30,7 +30,7 @@
|
|||
ng-click="$ctrl.onClear($event)">
|
||||
</vn-icon>
|
||||
<vn-icon
|
||||
icon="attach_file"
|
||||
icon="icon-attach"
|
||||
vn-tooltip="Select a file"
|
||||
ng-click="$ctrl.openFileSelector()">
|
||||
</vn-icon>
|
||||
|
|
|
@ -23,6 +23,21 @@
|
|||
-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 {
|
||||
content: "\e95b";
|
||||
}
|
||||
|
@ -301,4 +316,4 @@
|
|||
}
|
||||
.icon-worker:before {
|
||||
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 |
Binary file not shown.
Binary file not shown.
|
@ -150,7 +150,6 @@ module.exports = Self => {
|
|||
JOIN vn.currency cu ON cu.id = e.currencyFk`
|
||||
);
|
||||
|
||||
|
||||
stmt.merge(conn.makeSuffix(filter));
|
||||
let itemsIndex = stmts.push(stmt) - 1;
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
},
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "Number",
|
||||
"type": "number",
|
||||
"id": true,
|
||||
"description": "Identifier"
|
||||
},
|
||||
|
@ -19,46 +19,49 @@
|
|||
"type": "date"
|
||||
},
|
||||
"ref": {
|
||||
"type": "String"
|
||||
"type": "string"
|
||||
},
|
||||
"isBooked": {
|
||||
"type": "Boolean"
|
||||
"type": "boolean"
|
||||
},
|
||||
"isInventory": {
|
||||
"type": "Boolean"
|
||||
"type": "boolean"
|
||||
},
|
||||
"notes": {
|
||||
"type": "Number"
|
||||
"type": "number"
|
||||
},
|
||||
"isConfirmed": {
|
||||
"type": "Boolean"
|
||||
"type": "boolean"
|
||||
},
|
||||
"isVirtual": {
|
||||
"type": "Boolean",
|
||||
"type": "boolean",
|
||||
"mysql": {
|
||||
"columnName": "isRaid"
|
||||
}
|
||||
},
|
||||
"isRaid": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"commission": {
|
||||
"type": "Number"
|
||||
"type": "number"
|
||||
},
|
||||
"isOrdered": {
|
||||
"type": "Boolean"
|
||||
"type": "boolean"
|
||||
},
|
||||
"created": {
|
||||
"type": "date"
|
||||
},
|
||||
"observation": {
|
||||
"type": "String",
|
||||
"type": "string",
|
||||
"mysql": {
|
||||
"columnName": "evaNotes"
|
||||
}
|
||||
},
|
||||
"isBlocked": {
|
||||
"type": "Boolean"
|
||||
"type": "boolean"
|
||||
},
|
||||
"loadPriority": {
|
||||
"type": "Number"
|
||||
"type": "number"
|
||||
}
|
||||
},
|
||||
"relations": {
|
||||
|
|
|
@ -35,6 +35,18 @@
|
|||
value="{{$ctrl.entry.travel.warehouseOut.name}}">
|
||||
</vn-label-value>
|
||||
</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
|
||||
links="$ctrl.quicklinks">
|
||||
</vn-quick-links>
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
Reference: Referencia
|
||||
All travels with current agency: Todos los envios con la agencia 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
|
|
@ -38,7 +38,7 @@
|
|||
ng-show="entry.isInventory"
|
||||
class="bright"
|
||||
vn-tooltip="Inventory entry"
|
||||
icon="icon-anonymous">
|
||||
icon="icon-inventory">
|
||||
</vn-icon>
|
||||
<vn-icon
|
||||
ng-show="entry.isRaid"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"module": "zone",
|
||||
"name": "Zones",
|
||||
"icon" : "location_on",
|
||||
"icon" : "icon-zone",
|
||||
"validations" : true,
|
||||
"dependencies": ["worker"],
|
||||
"menus": {
|
||||
|
|
Loading…
Reference in New Issue