Compare commits
6 Commits
dev
...
5213-minor
Author | SHA1 | Date |
---|---|---|
Carlos Satorres | fb6d404401 | |
Carlos Satorres | 6196cebb70 | |
Carlos Satorres | 5c8c49d4a1 | |
Carlos Satorres | 829d216155 | |
Carlos Satorres | 23e150f244 | |
Carlos Satorres | 283aa91615 |
|
@ -64,3 +64,4 @@ Compensation Account: Cuenta para compensar
|
|||
Amount to return: Cantidad a devolver
|
||||
Delivered amount: Cantidad entregada
|
||||
Unpaid: Impagado
|
||||
There is no zona: No hay zona
|
||||
|
|
|
@ -8,4 +8,5 @@ The province can't be empty: La provincia no puede quedar vacía
|
|||
The country can't be empty: El país no puede quedar vacío
|
||||
The postcode has been created. You can save the data now: Se ha creado el código postal. Ahora puedes guardar los datos
|
||||
The city has been created: Se ha creado la ciudad
|
||||
The province has been created: Se ha creado la provincia
|
||||
The province has been created: Se ha creado la provincia
|
||||
Autonomy: Autonomía
|
|
@ -19,7 +19,7 @@ module.exports = Self => {
|
|||
}, {
|
||||
arg: 'itemId',
|
||||
type: 'Number',
|
||||
description: 'Item id'
|
||||
description: 'Item id',
|
||||
}, {
|
||||
arg: 'categoryId',
|
||||
type: 'Number',
|
||||
|
|
|
@ -47,9 +47,11 @@
|
|||
<vn-tbody>
|
||||
<vn-tr ng-repeat="buy in entry.buys">
|
||||
<vn-td expand>
|
||||
<span>
|
||||
{{::buy.itemName}}
|
||||
</span>
|
||||
<span
|
||||
ng-click="itemDescriptor.show($event, item.id)"
|
||||
class="link">
|
||||
{{::buy.itemName}}
|
||||
</span>
|
||||
</vn-td>
|
||||
<vn-td vn-fetched-tags>
|
||||
<div>
|
||||
|
|
|
@ -23,6 +23,9 @@ class Controller extends Section {
|
|||
to: maxDate
|
||||
};
|
||||
}
|
||||
showItemDescriptor() {
|
||||
return this.item.description;
|
||||
}
|
||||
|
||||
get reportParams() {
|
||||
const userParams = this.$.model.userParams;
|
||||
|
|
Loading…
Reference in New Issue