Merge branch 'test' of https://gitea.verdnatura.es/verdnatura/salix into test
gitea/salix/test This commit looks good
Details
gitea/salix/test This commit looks good
Details
This commit is contained in:
commit
961eb6edaf
|
@ -16,10 +16,6 @@ vn-check {
|
||||||
}
|
}
|
||||||
|
|
||||||
md-checkbox {
|
md-checkbox {
|
||||||
margin-bottom: 0
|
margin-bottom: 0.8em
|
||||||
}
|
|
||||||
|
|
||||||
md-checkbox .md-label {
|
|
||||||
margin-bottom: .5em;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -174,4 +174,7 @@ vn-table {
|
||||||
float: right;
|
float: right;
|
||||||
margin: 0!important;
|
margin: 0!important;
|
||||||
}
|
}
|
||||||
|
md-checkbox {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -2,7 +2,6 @@
|
||||||
<div style="position: absolute; top: 0; left: 0; padding: .3em; z-index: 1">
|
<div style="position: absolute; top: 0; left: 0; padding: .3em; z-index: 1">
|
||||||
<vn-icon-button
|
<vn-icon-button
|
||||||
icon="menu"
|
icon="menu"
|
||||||
style="font-size: .4em;"
|
|
||||||
ng-click="$ctrl.showUvc($event)">
|
ng-click="$ctrl.showUvc($event)">
|
||||||
</vn-icon-button>
|
</vn-icon-button>
|
||||||
<vn-dialog
|
<vn-dialog
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
const app = require('vn-loopback/server/server');
|
||||||
|
|
||||||
|
describe('item-barcode toItem()', () => {
|
||||||
|
it('should return the same number if there is a barcode and a item with the same ID', async() => {
|
||||||
|
let barcode = 3;
|
||||||
|
let result = await app.models.ItemBarcode.toItem(barcode);
|
||||||
|
|
||||||
|
expect(result).toBe(3);
|
||||||
|
});
|
||||||
|
});
|
|
@ -0,0 +1,28 @@
|
||||||
|
module.exports = Self => {
|
||||||
|
Self.remoteMethod('toItem', {
|
||||||
|
description: 'Returns last entries',
|
||||||
|
accessType: 'READ',
|
||||||
|
accepts: [{
|
||||||
|
arg: 'barcode',
|
||||||
|
type: 'Number',
|
||||||
|
required: true,
|
||||||
|
description: 'barcode'
|
||||||
|
}],
|
||||||
|
returns: {
|
||||||
|
type: 'Number',
|
||||||
|
root: true
|
||||||
|
},
|
||||||
|
http: {
|
||||||
|
path: `/:barcode/toItem`,
|
||||||
|
verb: 'GET'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
Self.toItem = async barcode => {
|
||||||
|
let query = `SELECT vn.barcodeToItem(?)`;
|
||||||
|
let [item] = await Self.rawSql(query, [barcode]);
|
||||||
|
if (item)
|
||||||
|
item = Object.values(item);
|
||||||
|
return item[0];
|
||||||
|
};
|
||||||
|
};
|
|
@ -1,4 +1,6 @@
|
||||||
module.exports = Self => {
|
module.exports = Self => {
|
||||||
|
require('../methods/item-barcode/toItem')(Self);
|
||||||
|
|
||||||
Self.validatesUniquenessOf('code', {
|
Self.validatesUniquenessOf('code', {
|
||||||
message: `Barcode must be unique`
|
message: `Barcode must be unique`
|
||||||
});
|
});
|
||||||
|
|
|
@ -95,7 +95,7 @@
|
||||||
<span translate>Regularize stock</span>
|
<span translate>Regularize stock</span>
|
||||||
</h5>
|
</h5>
|
||||||
<vn-textfield
|
<vn-textfield
|
||||||
label="Quantity"
|
label="Type the visible quantity"
|
||||||
model="$ctrl.quantity"
|
model="$ctrl.quantity"
|
||||||
name="user"
|
name="user"
|
||||||
vn-id="userField"
|
vn-id="userField"
|
||||||
|
|
|
@ -1 +1,2 @@
|
||||||
Regularize stock: Regularizar stock
|
Regularize stock: Regularizar stock
|
||||||
|
Type the visible quantity: Introduce la cantidad visible
|
|
@ -20,7 +20,7 @@
|
||||||
</vn-thead>
|
</vn-thead>
|
||||||
<vn-tbody>
|
<vn-tbody>
|
||||||
<vn-tr ng-repeat="sale in sales">
|
<vn-tr ng-repeat="sale in sales">
|
||||||
<vn-td center>
|
<vn-td center shrink>
|
||||||
<vn-check
|
<vn-check
|
||||||
vn-one field="sale.isChecked.isChecked"
|
vn-one field="sale.isChecked.isChecked"
|
||||||
disabled="true">
|
disabled="true">
|
||||||
|
|
Loading…
Reference in New Issue