Merge branch 'dev' of https://gitea.verdnatura.es/verdnatura/salix into dev
gitea/salix/dev This commit looks good
Details
gitea/salix/dev This commit looks good
Details
This commit is contained in:
commit
92463b0ccd
|
@ -1,155 +0,0 @@
|
||||||
|
|
||||||
const ParameterizedSQL = require('loopback-connector').ParameterizedSQL;
|
|
||||||
|
|
||||||
module.exports = Self => {
|
|
||||||
Self.remoteMethod('getLeaves', {
|
|
||||||
description: 'Returns the first shipped and landed possible for params',
|
|
||||||
accepts: [{
|
|
||||||
arg: 'zoneFk',
|
|
||||||
type: 'Number',
|
|
||||||
required: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
arg: 'parentFk',
|
|
||||||
type: 'Number',
|
|
||||||
default: 1,
|
|
||||||
required: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
arg: 'filter',
|
|
||||||
type: 'Object',
|
|
||||||
description: 'Filter defining where, order, offset, and limit - must be a JSON-encoded string',
|
|
||||||
http: {source: 'query'}
|
|
||||||
}],
|
|
||||||
returns: {
|
|
||||||
type: ['object'],
|
|
||||||
root: true
|
|
||||||
},
|
|
||||||
http: {
|
|
||||||
path: `/getLeaves`,
|
|
||||||
verb: 'GET'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
Self.getLeaves = async(zoneFk, parentFk = null, filter) => {
|
|
||||||
let conn = Self.dataSource.connector;
|
|
||||||
let stmts = [];
|
|
||||||
|
|
||||||
stmts.push(`DROP TEMPORARY TABLE IF EXISTS tmp.checkedChilds`);
|
|
||||||
stmts.push(new ParameterizedSQL(
|
|
||||||
`CREATE TEMPORARY TABLE tmp.checkedChilds (
|
|
||||||
id INT,
|
|
||||||
name VARCHAR(100),
|
|
||||||
lft INT,
|
|
||||||
rgt INT,
|
|
||||||
depth BIGINT(22),
|
|
||||||
sons DECIMAL(10, 0),
|
|
||||||
isIncluded TINYINT
|
|
||||||
) ENGINE = MEMORY`));
|
|
||||||
|
|
||||||
if (!parentFk) {
|
|
||||||
stmts.push(new ParameterizedSQL(
|
|
||||||
`INSERT INTO tmp.checkedChilds
|
|
||||||
SELECT
|
|
||||||
zg.id,
|
|
||||||
zg.name,
|
|
||||||
zg.lft,
|
|
||||||
zg.rgt,
|
|
||||||
zg.depth,
|
|
||||||
zg.sons,
|
|
||||||
zi.isIncluded
|
|
||||||
FROM zoneGeo zg
|
|
||||||
JOIN zoneIncluded zi ON zi.geoFk = zg.id
|
|
||||||
AND zoneFk = ?`, [zoneFk]));
|
|
||||||
}
|
|
||||||
|
|
||||||
let stmt = new ParameterizedSQL(
|
|
||||||
`SELECT * FROM (
|
|
||||||
SELECT
|
|
||||||
zg.id,
|
|
||||||
zg.name,
|
|
||||||
zg.lft,
|
|
||||||
zg.rgt,
|
|
||||||
zg.depth,
|
|
||||||
zg.sons,
|
|
||||||
IF(ch.id = zg.id, isIncluded, null) selected
|
|
||||||
FROM zoneGeo zg
|
|
||||||
JOIN tmp.checkedChilds ch
|
|
||||||
ON zg.lft <= ch.lft AND zg.rgt >= ch.rgt
|
|
||||||
UNION ALL
|
|
||||||
SELECT
|
|
||||||
zg.id,
|
|
||||||
zg.name,
|
|
||||||
zg.lft,
|
|
||||||
zg.rgt,
|
|
||||||
zg.depth,
|
|
||||||
zg.sons,
|
|
||||||
zi.isIncluded AS selected
|
|
||||||
FROM zoneGeo zg
|
|
||||||
LEFT JOIN zoneIncluded zi ON zi.geoFk = zg.id
|
|
||||||
AND zi.zoneFk = ?
|
|
||||||
WHERE (? IS NULL AND zg.parentFk IS NULL)
|
|
||||||
OR (? IS NOT NULL AND zg.parentFk = ?)) AS nst`,
|
|
||||||
[zoneFk, parentFk, parentFk, parentFk]);
|
|
||||||
|
|
||||||
// Get nodes from depth greather than Origin
|
|
||||||
stmt.merge(conn.makeSuffix(filter));
|
|
||||||
stmt.merge('GROUP BY nst.id');
|
|
||||||
|
|
||||||
const resultIndex = stmts.push(stmt) - 1;
|
|
||||||
|
|
||||||
const sql = ParameterizedSQL.join(stmts, ';');
|
|
||||||
const result = await Self.rawStmt(sql);
|
|
||||||
const nodes = result[resultIndex];
|
|
||||||
|
|
||||||
if (nodes.length == 0)
|
|
||||||
return nodes;
|
|
||||||
|
|
||||||
// Get parent nodes
|
|
||||||
const minorDepth = nodes.reduce((a, b) => {
|
|
||||||
return b < a ? b : a;
|
|
||||||
}).depth;
|
|
||||||
|
|
||||||
const parentNodes = nodes.filter(element => {
|
|
||||||
return element.depth === minorDepth;
|
|
||||||
});
|
|
||||||
const leaves = Object.assign([], sortNodes(parentNodes));
|
|
||||||
|
|
||||||
nestLeaves(leaves);
|
|
||||||
|
|
||||||
function nestLeaves(elements) {
|
|
||||||
elements.forEach(element => {
|
|
||||||
let childs = Object.assign([], getLeaves(element));
|
|
||||||
if (childs.length > 0) {
|
|
||||||
element.childs = childs;
|
|
||||||
nestLeaves(element.childs);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function getLeaves(parent) {
|
|
||||||
let elements = nodes.filter(element => {
|
|
||||||
return element.lft > parent.lft && element.rgt < parent.rgt
|
|
||||||
&& element.depth === parent.depth + 1;
|
|
||||||
});
|
|
||||||
|
|
||||||
return sortNodes(elements);
|
|
||||||
}
|
|
||||||
|
|
||||||
return leaves;
|
|
||||||
};
|
|
||||||
|
|
||||||
function sortNodes(nodes) {
|
|
||||||
return nodes.sort((a, b) => {
|
|
||||||
if (b.selected !== a.selected) {
|
|
||||||
if (a.selected == null)
|
|
||||||
return 1;
|
|
||||||
if (b.selected == null)
|
|
||||||
return -1;
|
|
||||||
return b.selected - a.selected;
|
|
||||||
}
|
|
||||||
|
|
||||||
return a.name.localeCompare(b.name);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
};
|
|
|
@ -0,0 +1,57 @@
|
||||||
|
|
||||||
|
module.exports = Self => {
|
||||||
|
Self.remoteMethod('getLeaves', {
|
||||||
|
description: 'Returns the nodes for a zone',
|
||||||
|
accepts: [
|
||||||
|
{
|
||||||
|
arg: 'id',
|
||||||
|
type: 'Number',
|
||||||
|
http: {source: 'path'},
|
||||||
|
required: true
|
||||||
|
}, {
|
||||||
|
arg: 'parentFk',
|
||||||
|
type: 'Number',
|
||||||
|
description: 'Get the children of the specified father',
|
||||||
|
}, {
|
||||||
|
arg: 'search',
|
||||||
|
type: 'String',
|
||||||
|
description: 'Filter nodes whose name starts with',
|
||||||
|
}
|
||||||
|
],
|
||||||
|
returns: {
|
||||||
|
type: ['Object'],
|
||||||
|
root: true
|
||||||
|
},
|
||||||
|
http: {
|
||||||
|
path: `/:id/getLeaves`,
|
||||||
|
verb: 'GET'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
Self.getLeaves = async(id, parentFk = null, search) => {
|
||||||
|
let [res] = await Self.rawSql(
|
||||||
|
`CALL zone_getLeaves(?, ?, ?)`,
|
||||||
|
[id, parentFk, search]
|
||||||
|
);
|
||||||
|
|
||||||
|
let map = new Map();
|
||||||
|
for (let node of res) {
|
||||||
|
if (!map.has(node.parentFk))
|
||||||
|
map.set(node.parentFk, []);
|
||||||
|
map.get(node.parentFk).push(node);
|
||||||
|
}
|
||||||
|
|
||||||
|
function setLeaves(nodes) {
|
||||||
|
if (!nodes) return;
|
||||||
|
for (let node of nodes) {
|
||||||
|
node.childs = map.get(node.id);
|
||||||
|
setLeaves(node.childs);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
let leaves = map.get(parentFk);
|
||||||
|
setLeaves(leaves);
|
||||||
|
|
||||||
|
return leaves || [];
|
||||||
|
};
|
||||||
|
};
|
|
@ -1,3 +0,0 @@
|
||||||
module.exports = Self => {
|
|
||||||
require('../methods/zone-geo/getLeaves')(Self);
|
|
||||||
};
|
|
|
@ -1,6 +1,7 @@
|
||||||
module.exports = Self => {
|
module.exports = Self => {
|
||||||
require('../methods/zone/clone')(Self);
|
require('../methods/zone/clone')(Self);
|
||||||
require('../methods/zone/editPrices')(Self);
|
require('../methods/zone/editPrices')(Self);
|
||||||
|
require('../methods/zone/getLeaves')(Self);
|
||||||
|
|
||||||
Self.validatesPresenceOf('warehouseFk', {
|
Self.validatesPresenceOf('warehouseFk', {
|
||||||
message: `Warehouse cannot be blank`
|
message: `Warehouse cannot be blank`
|
||||||
|
|
|
@ -1,23 +1,25 @@
|
||||||
<vn-crud-model
|
<vn-crud-model
|
||||||
vn-id="model"
|
vn-id="model"
|
||||||
url="/agency/api/ZoneGeos/getLeaves"
|
url="/api/Zones/{{$ctrl.$stateParams.id}}/getLeaves"
|
||||||
filter="::$ctrl.filter"
|
filter="::$ctrl.filter"
|
||||||
params="{zoneFk: $ctrl.$stateParams.id}" auto-load="false">
|
auto-load="false">
|
||||||
</vn-crud-model>
|
</vn-crud-model>
|
||||||
<div class="main-with-right-menu">
|
<div class="main-with-right-menu">
|
||||||
<vn-card compact pad-large>
|
<vn-card compact pad-large>
|
||||||
<vn-searchbar
|
<vn-searchbar
|
||||||
model="model"
|
on-search="$ctrl.onSearch($params)"
|
||||||
expr-builder="$ctrl.exprBuilder(param, value)"
|
|
||||||
on-search="$ctrl.onSearch()"
|
|
||||||
vn-focus>
|
vn-focus>
|
||||||
</vn-searchbar>
|
</vn-searchbar>
|
||||||
<vn-treeview vn-id="treeview" model="model" acl-role="deliveryBoss"
|
<vn-treeview
|
||||||
|
vn-id="treeview"
|
||||||
|
model="model"
|
||||||
|
acl-role="deliveryBoss"
|
||||||
on-selection="$ctrl.onSelection(item, value)"
|
on-selection="$ctrl.onSelection(item, value)"
|
||||||
selectable="true">
|
selectable="true">
|
||||||
</vn-treeview>
|
</vn-treeview>
|
||||||
</vn-card>
|
</vn-card>
|
||||||
<vn-side-menu side="right">
|
<vn-side-menu side="right">
|
||||||
<vn-zone-location-calendar zone="::$ctrl.zone"></vn-zone-location-calendar>
|
<vn-zone-location-calendar zone="::$ctrl.zone">
|
||||||
|
</vn-zone-location-calendar>
|
||||||
</vn-side-menu>
|
</vn-side-menu>
|
||||||
</div>
|
</div>
|
|
@ -1,18 +1,15 @@
|
||||||
import ngModule from '../module';
|
import ngModule from '../module';
|
||||||
|
|
||||||
class Controller {
|
class Controller {
|
||||||
constructor($scope, $http, $stateParams) {
|
constructor($, $http, $stateParams) {
|
||||||
this.$stateParams = $stateParams;
|
this.$ = $;
|
||||||
this.$scope = $scope;
|
|
||||||
this.$http = $http;
|
this.$http = $http;
|
||||||
this.searchValue = '';
|
this.$stateParams = $stateParams;
|
||||||
this.filter = {};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
onSearch() {
|
onSearch(params) {
|
||||||
this.$scope.$applyAsync(() => {
|
this.$.model.applyFilter(null, params);
|
||||||
this.$scope.treeview.refresh();
|
this.$.$applyAsync(() => this.$.treeview.refresh());
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
exprBuilder(param, value) {
|
exprBuilder(param, value) {
|
||||||
|
|
|
@ -246,12 +246,11 @@ class Controller {
|
||||||
sales: this.transfer.sales
|
sales: this.transfer.sales
|
||||||
};
|
};
|
||||||
|
|
||||||
|
this.$scope.watcher.updateOriginalData();
|
||||||
|
|
||||||
const query = `/api/tickets/${this.ticket.id}/transferSales`;
|
const query = `/api/tickets/${this.ticket.id}/transferSales`;
|
||||||
this.$http.post(query, params).then(res => {
|
this.$http.post(query, params).then(res => {
|
||||||
this.$scope.watcher.updateOriginalData();
|
|
||||||
this.goToTicket(res.data.id);
|
this.goToTicket(res.data.id);
|
||||||
}).finally(() => {
|
|
||||||
this.$scope.watcher.updateOriginalData();
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -262,6 +261,10 @@ class Controller {
|
||||||
ticketCreated: this.ticket.shipped
|
ticketCreated: this.ticket.shipped
|
||||||
};
|
};
|
||||||
const sales = this.checkedLines();
|
const sales = this.checkedLines();
|
||||||
|
|
||||||
|
if (this.newInstances().length === 0)
|
||||||
|
this.$scope.watcher.updateOriginalData();
|
||||||
|
|
||||||
this.$http.post(`/api/Claims/createFromSales`, {claim: claim, sales: sales}).then(res => {
|
this.$http.post(`/api/Claims/createFromSales`, {claim: claim, sales: sales}).then(res => {
|
||||||
this.$state.go('claim.card.basicData', {id: res.data.id});
|
this.$state.go('claim.card.basicData', {id: res.data.id});
|
||||||
});
|
});
|
||||||
|
@ -401,7 +404,9 @@ class Controller {
|
||||||
|
|
||||||
newOrderFromTicket() {
|
newOrderFromTicket() {
|
||||||
this.$http.post(`/api/Orders/newFromTicket`, {ticketFk: this.ticket.id}).then(res => {
|
this.$http.post(`/api/Orders/newFromTicket`, {ticketFk: this.ticket.id}).then(res => {
|
||||||
this.$state.go('order.card.catalog', {id: res.data});
|
const path = this.$state.href('order.card.catalog', {id: res.data});
|
||||||
|
window.open(path, '_blank');
|
||||||
|
|
||||||
this.vnApp.showSuccess(this.$translate.instant('Order created'));
|
this.vnApp.showSuccess(this.$translate.instant('Order created'));
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue