Compare commits
2 Commits
dev
...
4764-abono
Author | SHA1 | Date |
---|---|---|
Carlos Satorres | 6ca8c4ba40 | |
Carlos Satorres | 7955d1248d |
|
@ -1,6 +1,4 @@
|
||||||
node_modules
|
node_modules
|
||||||
print/node_modules
|
print/node_modules
|
||||||
front
|
front/node_modules
|
||||||
db
|
services
|
||||||
e2e
|
|
||||||
storage
|
|
|
@ -1,6 +1,6 @@
|
||||||
extends: [eslint:recommended, google, plugin:jasmine/recommended]
|
extends: [eslint:recommended, google, plugin:jasmine/recommended]
|
||||||
parserOptions:
|
parserOptions:
|
||||||
ecmaVersion: 2020
|
ecmaVersion: 2018
|
||||||
sourceType: "module"
|
sourceType: "module"
|
||||||
plugins:
|
plugins:
|
||||||
- jasmine
|
- jasmine
|
||||||
|
@ -17,7 +17,7 @@ rules:
|
||||||
camelcase: 0
|
camelcase: 0
|
||||||
default-case: 0
|
default-case: 0
|
||||||
no-eq-null: 0
|
no-eq-null: 0
|
||||||
no-console: ["warn"]
|
no-console: ["error"]
|
||||||
no-warning-comments: 0
|
no-warning-comments: 0
|
||||||
no-empty: [error, allowEmptyCatch: true]
|
no-empty: [error, allowEmptyCatch: true]
|
||||||
complexity: 0
|
complexity: 0
|
||||||
|
@ -36,7 +36,3 @@ rules:
|
||||||
jasmine/no-focused-tests: 0
|
jasmine/no-focused-tests: 0
|
||||||
jasmine/prefer-toHaveBeenCalledWith: 0
|
jasmine/prefer-toHaveBeenCalledWith: 0
|
||||||
arrow-spacing: ["error", { "before": true, "after": true }]
|
arrow-spacing: ["error", { "before": true, "after": true }]
|
||||||
no-restricted-syntax:
|
|
||||||
- "error"
|
|
||||||
- selector: "NewExpression[callee.name='Date']"
|
|
||||||
message: "Use Date.vnNew() instead of new Date()."
|
|
||||||
|
|
|
@ -10,4 +10,3 @@ print.*.json
|
||||||
db.json
|
db.json
|
||||||
junit.xml
|
junit.xml
|
||||||
.DS_Store
|
.DS_Store
|
||||||
storage
|
|
|
@ -1,33 +0,0 @@
|
||||||
const fs = require('fs');
|
|
||||||
const path = require('path');
|
|
||||||
|
|
||||||
function getCurrentBranchName(p = process.cwd()) {
|
|
||||||
if (!fs.existsSync(p)) return false;
|
|
||||||
|
|
||||||
const gitHeadPath = path.join(p, '.git', 'HEAD');
|
|
||||||
|
|
||||||
if (!fs.existsSync(gitHeadPath))
|
|
||||||
return getCurrentBranchName(path.resolve(p, '..'));
|
|
||||||
|
|
||||||
const headContent = fs.readFileSync(gitHeadPath, 'utf-8');
|
|
||||||
return headContent.trim().split('/')[2];
|
|
||||||
}
|
|
||||||
|
|
||||||
const branchName = getCurrentBranchName();
|
|
||||||
|
|
||||||
if (branchName) {
|
|
||||||
const msgPath = `.git/COMMIT_EDITMSG`;
|
|
||||||
const msg = fs.readFileSync(msgPath, 'utf-8');
|
|
||||||
const reference = branchName.match(/^\d+/);
|
|
||||||
|
|
||||||
const referenceTag = `refs #${reference}`;
|
|
||||||
if (!msg.includes(referenceTag) && reference) {
|
|
||||||
const splitedMsg = msg.split(':');
|
|
||||||
|
|
||||||
if (splitedMsg.length > 1) {
|
|
||||||
const finalMsg = splitedMsg[0] + ': ' + referenceTag + splitedMsg.slice(1).join(':');
|
|
||||||
fs.writeFileSync(msgPath, finalMsg);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
#!/usr/bin/env sh
|
|
||||||
. "$(dirname -- "$0")/_/husky.sh"
|
|
||||||
|
|
||||||
echo "Running husky commit-msg hook"
|
|
||||||
npx --no-install commitlint --edit
|
|
||||||
echo "Adding reference tag to commit message"
|
|
||||||
node .husky/addReferenceTag.js
|
|
||||||
|
|
|
@ -3,20 +3,12 @@
|
||||||
// Carácter predeterminado de final de línea.
|
// Carácter predeterminado de final de línea.
|
||||||
"files.eol": "\n",
|
"files.eol": "\n",
|
||||||
"editor.codeActionsOnSave": {
|
"editor.codeActionsOnSave": {
|
||||||
"source.fixAll.eslint": "explicit"
|
"source.fixAll.eslint": true
|
||||||
},
|
},
|
||||||
"search.useIgnoreFiles": false,
|
"search.useIgnoreFiles": false,
|
||||||
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
|
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
|
||||||
"eslint.format.enable": true,
|
"eslint.format.enable": true,
|
||||||
"[javascript]": {
|
"[javascript]": {
|
||||||
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
|
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
|
||||||
},
|
}
|
||||||
"[json]": {
|
|
||||||
"editor.defaultFormatter": "vscode.json-language-features"
|
|
||||||
},
|
|
||||||
"cSpell.words": [
|
|
||||||
"salix",
|
|
||||||
"fdescribe",
|
|
||||||
"Loggable"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|
667
CHANGELOG.md
667
CHANGELOG.md
|
@ -1,418 +1,3 @@
|
||||||
# Version 24.38 - 2024-09-17
|
|
||||||
|
|
||||||
### Added 🆕
|
|
||||||
|
|
||||||
- chore: refs #7323 filter data by:jorgep
|
|
||||||
- chore: refs #7323 fix test by:jorgep
|
|
||||||
- chore: refs #7323 worker changes by:jorgep
|
|
||||||
- chore: refs #7323 worker changes wip by:jorgep
|
|
||||||
- chore: refs #7524 add select limit by:jorgep
|
|
||||||
- feat(AccessToken&ACL): refs #7547 upgrade security by:alexm
|
|
||||||
- feat: deleted code and redirect to Lilium by:Jon
|
|
||||||
- feat: refs #4515 New throw buy_checkItem by:guillermo
|
|
||||||
- feat: refs #6650 Added saleGroupLog by:guillermo
|
|
||||||
- feat: refs #6650 new itemShelvingLog by:guillermo
|
|
||||||
- feat: refs #6760 refs #actualiza campo nickname by:jgallego
|
|
||||||
- feat: refs #7277 fdescribe by:jgallego
|
|
||||||
- feat: refs #7277 fit by:jgallego
|
|
||||||
- feat: refs #7277 refundInvoices by:jgallego
|
|
||||||
- feat: refs #7277 test with warehouse by:jgallego
|
|
||||||
- feat: refs #7277 traducciones by:jgallego
|
|
||||||
- feat: refs #7277 transfer addressFk by:jgallego
|
|
||||||
- feat: refs #7532 Requested changes by:guillermo
|
|
||||||
- feat: refs #7564 Added proc by:guillermo
|
|
||||||
- feat: refs #7564 Added ticket_setVolumeItemCost by:guillermo
|
|
||||||
- feat: refs #7564 Added volume column by:guillermo
|
|
||||||
- feat: refs #7564 Fix version by:guillermo
|
|
||||||
- feat: refs #7564 Requested changes by:guillermo
|
|
||||||
- feat: refs #7615 setDeleted by:robert
|
|
||||||
- feat: refs #7650 Added no transfer lines to inventory entry and fixtures by:guillermo
|
|
||||||
- feat: refs #7650 Fix tests by:guillermo
|
|
||||||
- feat: refs #7747 Delete buyUltimate and buyUltimateFromInterval by:ivanm
|
|
||||||
- feat: refs #7759 Changed defined only of vn objects by:guillermo
|
|
||||||
- feat: refs #7759 Changed definer root to vn-admin by:guillermo
|
|
||||||
- feat: refs #7759 Changed name by:guillermo
|
|
||||||
- feat: refs #7759 Deleted version 11163-maroonEucalyptus by:guillermo
|
|
||||||
- feat: refs #7759 Revoke routine grants vn by:guillermo
|
|
||||||
- feat: refs #7811 Added comment by:guillermo
|
|
||||||
- feat: refs #7811 Added new params in datasources.json by:guillermo
|
|
||||||
- feat: refs #7898 Add column "floor" in vn.parking by:ivanm
|
|
||||||
- feat: refs #7898 Modify default by:ivanm
|
|
||||||
- feat: refs #7905 Added new method getBuysCsv by:guillermo
|
|
||||||
- feat: refs #7905 Added param toCsv by:guillermo
|
|
||||||
- feat: refs #7938 remove unnecessary insert in clientLog by:alexm
|
|
||||||
- feat: refs #7953 pullinfo (7953-devToTest_2438) by:alexm
|
|
||||||
- feat(salix): #7671 define isDestiny field in model by:Javier Segarra
|
|
||||||
- feat(salix): refs #7896 update version and changelog (origin/7896_down_devToTest_2436) by:Javier Segarra
|
|
||||||
- feat(salix): refs #7905 #7905 use getBuys toCSV flattened by:Javier Segarra
|
|
||||||
- feat(ssalix): refs #7671 #7671 checkDates by:Javier Segarra
|
|
||||||
- feat(ssalix): refs #7671 #7671 checkDates to present by:Javier Segarra
|
|
||||||
- feat: ticket 215005 Changed acl show transferClient by:guillermo
|
|
||||||
|
|
||||||
### Changed 📦
|
|
||||||
|
|
||||||
- perf: refs #7671 improve showBadDates by:Javier Segarra
|
|
||||||
- perf(salix): refs #7671 #7671 imrpove and revert where changes by:Javier Segarra
|
|
||||||
- refactor: deleted e2e & added back descriptor and summary by:Jon
|
|
||||||
|
|
||||||
### Fixed 🛠️
|
|
||||||
|
|
||||||
- chore: refs #7323 fix test by:jorgep
|
|
||||||
- feat: refs #7650 Added no transfer lines to inventory entry and fixtures by:guillermo
|
|
||||||
- fix by:guillermo
|
|
||||||
- fixes: refs #7760 collection problems by:Carlos Andrés
|
|
||||||
- fix merge dev (7407-workerMedical) by:alexm
|
|
||||||
- fix: refs #6727 No delete log tables data in clean procedures by:guillermo
|
|
||||||
- fix: refs #6897 back and tests by:carlossa
|
|
||||||
- fix: refs #6897 back by:carlossa
|
|
||||||
- fix: refs #6897 fix filter by:carlossa
|
|
||||||
- fix: refs #6897 fix json by:carlossa
|
|
||||||
- fix: refs #6897 travel filter by:carlossa
|
|
||||||
- fix: refs #6897 error test by:jgallego
|
|
||||||
- fix: refs #7323 fetch from right source by:jorgep
|
|
||||||
- fix: refs #7564 Deleted query by:guillermo
|
|
||||||
- fix: refs #7759 Added user 'vn'@'localhost' & grants by:guillermo
|
|
||||||
- fix: refs #7760 collection problems by:Carlos Andrés
|
|
||||||
- fix: refs #7760 tmp.ticketIPT by:Carlos Andrés
|
|
||||||
- fix: refs #7905 added comments to flatten.js by:guillermo
|
|
||||||
- fix: refs ##7905 Handle error by:guillermo
|
|
||||||
- fix(salix): refs #7905 #7905 use right fn to flatten data by:Javier Segarra
|
|
||||||
- perf(salix): refs #7671 #7671 imrpove and revert where changes by:Javier Segarra
|
|
||||||
- refs #6898 fix supplier remove by:carlossa
|
|
||||||
- refs #7407 fix acls fixtures by:carlossa
|
|
||||||
- test: fix connections e2e (7547-accessToken-security) by:alexm
|
|
||||||
- test: refs #7277 fix test proposal by:Javier Segarra
|
|
||||||
- test(salix): refs #7671 #7671 improve and revert where changes by:Javier Segarra
|
|
||||||
|
|
||||||
# Version 24.36 - 2024-09-03
|
|
||||||
|
|
||||||
### Added 🆕
|
|
||||||
|
|
||||||
- chore: refs #7524 WIP limit call by:jorgep
|
|
||||||
- chore: refs #7524 modify ormConfig table col (origin/7524-warmfix-modifyColumn) by:jorgep
|
|
||||||
- feat(update-user): refs #7848 add twoFactor by:alexm
|
|
||||||
- feat: #3199 Requested changes by:guillermo
|
|
||||||
- feat: refs #3199 Added more scopes ticket_recalcByScope by:guillermo
|
|
||||||
- feat: refs #3199 Added one more scope ticket_recalcByScope by:guillermo
|
|
||||||
- feat: refs #3199 Created ticket_recalcItemTaxCountryByScope by:guillermo
|
|
||||||
- feat: refs #3199 Requested changes by:guillermo
|
|
||||||
- feat: refs #7346 add multiple feature by:jgallego
|
|
||||||
- feat: refs #7346 backTest checks new implementation by:jgallego
|
|
||||||
- feat: refs #7346 mas intuitivo by:jgallego
|
|
||||||
- feat: refs #7514 Changes to put srt log (origin/7514-srtLog) by:guillermo
|
|
||||||
- feat: refs #7524 add default limit (origin/7524-limitSelect) by:jorgep
|
|
||||||
- feat: refs #7524 add mock limit on find query by:jorgep
|
|
||||||
- feat: refs #7524 wip remote hooks by:jorgep
|
|
||||||
- feat: refs #7562 Requested changes by:guillermo
|
|
||||||
- feat: refs #7567 Changed time to call event by:guillermo
|
|
||||||
- feat: refs #7567 Requested changes by:guillermo
|
|
||||||
- feat: refs #7710 pr revision by:jgallego
|
|
||||||
- feat: refs #7710 test fixed (origin/7710-cloneWithTicketPackaging, 7710-cloneWithTicketPackaging) by:jgallego
|
|
||||||
- feat: refs #7712 Fix by:guillermo
|
|
||||||
- feat: refs #7712 Unify by:guillermo
|
|
||||||
- feat: refs #7712 sizeLimit (origin/7712-sizeLimit) by:guillermo
|
|
||||||
- feat: refs #7758 Add code mandateType and accountDetailType by:ivanm
|
|
||||||
- feat: refs #7758 Modify code lowerCamelCase and UNIQUE by:ivanm
|
|
||||||
- feat: refs #7758 accountDetailType fix deploy error by:ivanm
|
|
||||||
- feat: refs #7784 Changes in entry-order-pdf by:guillermo
|
|
||||||
- feat: refs #7784 Requested changes by:guillermo
|
|
||||||
- feat: refs #7799 Added Fk in vn.item.itemPackingTypeFk by:guillermo
|
|
||||||
- feat: refs #7800 Added company Fk by:guillermo
|
|
||||||
- feat: refs #7842 Added editorFk in vn.host by:guillermo
|
|
||||||
- feat: refs #7860 Update new packagings (origin/7860-newPackaging) by:guillermo
|
|
||||||
- feat: refs #7862 roadmap new fields by:ivanm
|
|
||||||
- feat: refs #7882 Added quadMindsConfig table by:guillermo
|
|
||||||
|
|
||||||
### Changed 📦
|
|
||||||
|
|
||||||
- refactor: refs #7567 Fix and improvement by:guillermo
|
|
||||||
- refactor: refs #7567 Minor change by:guillermo
|
|
||||||
- refactor: refs #7756 Fix tests by:guillermo
|
|
||||||
- refactor: refs #7798 Drop bi.Greuges_comercial_detail by:guillermo
|
|
||||||
- refactor: refs #7848 adapt to lilium by:alexm
|
|
||||||
|
|
||||||
### Fixed 🛠️
|
|
||||||
|
|
||||||
- feat: refs #7710 test fixed (origin/7710-cloneWithTicketPackaging, 7710-cloneWithTicketPackaging) by:jgallego
|
|
||||||
- feat: refs #7758 accountDetailType fix deploy error by:ivanm
|
|
||||||
- fix(salix): #7283 ItemFixedPrice duplicated (origin/7283_itemFixedPrice_duplicated) by:Javier Segarra
|
|
||||||
- fix: refs #7346 minor error (origin/7346, 7346) by:jgallego
|
|
||||||
- fix: refs #7355 remove and tests accounts (origin/7355-accountMigration2) by:carlossa
|
|
||||||
- fix: refs #7355 remove and tests accounts by:carlossa
|
|
||||||
- fix: refs #7524 default limit select by:jorgep
|
|
||||||
- fix: refs #7756 Foreign keys invoiceOut (origin/7756-fixRefFk) by:guillermo
|
|
||||||
- fix: refs #7756 id 0 by:guillermo
|
|
||||||
- fix: refs #7800 tpvMerchantEnable PRIMARY KEY (origin/7800-tpvMerchantEnable) by:guillermo
|
|
||||||
- fix: refs #7800 tpvMerchantEnable PRIMARY KEY by:guillermo
|
|
||||||
- fix: refs #7916 itemShelving_transfer (origin/test, test) by:guillermo
|
|
||||||
- fix: refs #pako Deleted duplicated version by:guillermo
|
|
||||||
|
|
||||||
# Version 24.34 - 2024-08-20
|
|
||||||
|
|
||||||
### Added 🆕
|
|
||||||
|
|
||||||
- #6900 feat: clear empty by:jorgep
|
|
||||||
- #6900 feat: empty commit by:jorgep
|
|
||||||
- chore: refs #6900 beautify code by:jorgep
|
|
||||||
- chore: refs #6989 add config model by:jorgep
|
|
||||||
- feat workerActivity refs #6078 by:sergiodt
|
|
||||||
- feat: #6453 Refactor (origin/6453-orderConfirm) by:guillermo
|
|
||||||
- feat: #6453 Rollback always split by itemPackingType by:guillermo
|
|
||||||
- feat: deleted worker module code & redirect to Lilium by:Jon
|
|
||||||
- feat: refs #6453 Added new ticket search by:guillermo
|
|
||||||
- feat: refs #6453 Fixes by:guillermo
|
|
||||||
- feat: refs #6453 Minor changes by:guillermo
|
|
||||||
- feat: refs #6453 Requested changes by:guillermo
|
|
||||||
- feat: refs #6900 drop section by:jorgep
|
|
||||||
- feat: refs #7283 order by desc date by:jorgep
|
|
||||||
- feat: refs #7323 add locale by:jorgep
|
|
||||||
- feat: refs #7323 redirect to lilium by:jorgep
|
|
||||||
- feat: refs #7646 delete scannableCodeType by:robert
|
|
||||||
- feat: refs #7713 Created ACLLog by:guillermo
|
|
||||||
- feat: refs #7774 (origin/7774-ticket_cloneWeekly) by:robert
|
|
||||||
- feat: refs #7774 #7774 Changes ticket_cloneWeekly by:guillermo
|
|
||||||
- feat: refs #7774 ticket_cloneWeekly by:robert
|
|
||||||
|
|
||||||
### Changed 📦
|
|
||||||
|
|
||||||
- refactor: refs #6453 Major changes by:guillermo
|
|
||||||
- refactor: refs #6453 Minor changes by:guillermo
|
|
||||||
- refactor: refs #6453 order_confirmWithUser by:guillermo
|
|
||||||
- refactor: refs #7646 #7646 Deleted scannable* variables productionConfig by:guillermo
|
|
||||||
- refactor: refs #7820 Deprecated silexACL by:guillermo
|
|
||||||
|
|
||||||
### Fixed 🛠️
|
|
||||||
|
|
||||||
- #6900 fix: #6900 rectificative filter by:jorgep
|
|
||||||
- #6900 fix: empty commit by:jorgep
|
|
||||||
- fix(orders_filter): add sourceApp accepts by:alexm
|
|
||||||
- fix: refs #6130 commit lint by:pablone
|
|
||||||
- fix: refs #6453 order_confirmWithUser by:guillermo
|
|
||||||
- fix: refs #7283 sql by:jorgep
|
|
||||||
- fix: refs #7713 ACL Log by:guillermo
|
|
||||||
- test: fix claim descriptor redirect to lilium by:alexm
|
|
||||||
- test: fix ticket redirect to lilium by:alexm
|
|
||||||
- test: fix ticket sale e2e by:alexm
|
|
||||||
|
|
||||||
# Version 24.32 - 2024-08-06
|
|
||||||
|
|
||||||
### Added 🆕
|
|
||||||
|
|
||||||
- chore: refs #7197 add supplierActivityFk filter by:jorgep
|
|
||||||
- feat checkExpeditionPrintOut refs #7751 by:sergiodt
|
|
||||||
- feat(defaulter_filter): add department by:alexm
|
|
||||||
- feat: redirect to lilium page not found by:alexm
|
|
||||||
- feat: refactor buyUltimate refs #7736 by:Carlos Andrés
|
|
||||||
- feat: refs #6403 add delete by:pablone
|
|
||||||
- feat: refs #7126 Added manaClaim calc by:guillermo
|
|
||||||
- feat: refs #7126 Refactor and added columns in bs.waste table & proc by:guillermo
|
|
||||||
- feat: refs #7197 filter by correcting by:jorgep
|
|
||||||
- feat: refs #7297 add new columns by:pablone
|
|
||||||
- feat: refs #7356 new parameters in sql for Weekly tickets front by:Jon
|
|
||||||
- feat: refs #7401 redirect lilium by:pablone
|
|
||||||
- feat: refs #7511 Fix tests by:guillermo
|
|
||||||
- feat: refs #7511 Rename to multiConfig tables by:guillermo
|
|
||||||
- feat: refs #7589 Added display (item_valuateInventory) by:guillermo
|
|
||||||
- feat: refs #7589 Added vItemTypeFk & vItemCategoryFk (item_valuateInventory) by:guillermo
|
|
||||||
- feat: refs #7681 Changes by:guillermo
|
|
||||||
- feat: refs #7681 Optimization and refactor by:guillermo
|
|
||||||
- feat: refs #7683 drop temporary table by:robert
|
|
||||||
- feat: refs #7683 productionControl by:robert
|
|
||||||
- feat: refs #7728 Added throw due date by:guillermo
|
|
||||||
- feat: refs #7740 Ticket before update added restriction by:guillermo
|
|
||||||
- feat(salix): #7648 Add field for endpoint as buyLabel report by:Javier Segarra
|
|
||||||
- feat(salix): #7648 remove white line by:Javier Segarra
|
|
||||||
- feat: tabla config dias margen vctos. refs #7728 by:Carlos Andrés
|
|
||||||
|
|
||||||
### Changed 📦
|
|
||||||
|
|
||||||
- eat: refactor buyUltimate refs #7736 by:Carlos Andrés
|
|
||||||
- feat: refactor buyUltimate refs #7736 by:Carlos Andrés
|
|
||||||
- feat: refs #7681 Optimization and refactor by:guillermo
|
|
||||||
- refactor: refs #7126 Requested changes by:guillermo
|
|
||||||
- refactor: refs #7511 Minor change by:guillermo
|
|
||||||
- refactor: refs #7640 Multipleinventory available by:guillermo
|
|
||||||
- refactor: refs #7681 Changes by:guillermo
|
|
||||||
- refactor: refs #7681 Requested changes by:guillermo
|
|
||||||
|
|
||||||
### Fixed 🛠️
|
|
||||||
|
|
||||||
- add prefix (hotFix_liliumRedirection) by:alexm
|
|
||||||
- fix(client_filter): add recovery by:alexm
|
|
||||||
- fix: defaulter filter correct sql (6943-fix_defaulter_filter) by:alexm
|
|
||||||
- fix(deletExpeditions): merge test → dev by:guillermo
|
|
||||||
- fix: refs #6403 fix mrw cancel shipment return type by:pablone
|
|
||||||
- fix: refs #7126 Added addressWaste type by:guillermo
|
|
||||||
- fix: refs #7126 Fix by:guillermo
|
|
||||||
- fix: refs #7126 Minor change by:guillermo
|
|
||||||
- fix: refs #7126 Primary key no unique data by:guillermo
|
|
||||||
- fix: refs #7126 Slow update by:guillermo
|
|
||||||
- fix: refs #7511 Minor change by:guillermo
|
|
||||||
- fix: refs #7546 Deleted insert util.binlogQueue by:guillermo
|
|
||||||
- fix: refs #7811 Variables pm2 by:guillermo
|
|
||||||
- fix: without path by:alexm
|
|
||||||
|
|
||||||
# Version 24.28 - 2024-07-09
|
|
||||||
|
|
||||||
### Added 🆕
|
|
||||||
|
|
||||||
- feat boxPicking refs #7357 by:sergiodt
|
|
||||||
- feat boxPicking refs #7357 (origin/7357_dipole_review) by:sergiodt
|
|
||||||
- feat:concurrency issue refs #6861 by:Carlos Andrés
|
|
||||||
- feat expeditionPalletPrint refs #5210 by:sergiodt
|
|
||||||
- feat front-reservas refs #6861 (origin/6861-Reservas-front) by:sergiodt
|
|
||||||
- feat itemShelving_filterBuyer refs #7023 by:sergiodt
|
|
||||||
- feat itemShelvingLog refs #7168 by:sergiodt
|
|
||||||
- feat itemShelvingSale refs #6861 by:sergiodt
|
|
||||||
- feat: previas con reserva refs #6861 by:Carlos Andrés
|
|
||||||
- feat: previas con sitema de reservas refs #6861 by:Carlos Andrés
|
|
||||||
- feat: previas con sitema de reservas refs #6861 (origin/6861-Pasar-modo-trabajo-de-previa-a-reservas) by:Carlos Andrés
|
|
||||||
- feat refactor setParking REGEXP refs #7575 (origin/7575_setParking_regExp) by:sergiodt
|
|
||||||
- feat: refs #6238 add travelKgPercentage table and model (origin/6238-addPercentage) by:jorgep
|
|
||||||
- feat: refs #6286 check if is teamBoss (origin/6286-setRightWorkerTimeControlAcls) by:jorgep
|
|
||||||
- feat: refs #6701 Fix error by:guillermo
|
|
||||||
- feat: refs #6861 trigger by:sergiodt
|
|
||||||
- feat: refs #7027 mailError managed by:jgallego
|
|
||||||
- feat: refs #7168 Added vRecords param in proc by:guillermo
|
|
||||||
- feat: refs #7168 Minor change by:guillermo
|
|
||||||
- feat: refs #7216 logUnpaid (origin/7216-clientUnpaid) by:jgallego
|
|
||||||
- feat: refs #7216 triggers by:jgallego
|
|
||||||
- feat: refs #7296 by:robert
|
|
||||||
- feat: refs #7296 drop column expeditionTruckFk by:robert
|
|
||||||
- feat: refs #7490 Changes (origin/7490-duaInvoiceInBooking) by:guillermo
|
|
||||||
- feat: refs #7545 Deleted hasIncoterms client column (origin/7545-hasIncoterms) by:guillermo
|
|
||||||
- feat: refs #7555 remove account.password__ by:alexm
|
|
||||||
- feat: return sql check error by:alexm
|
|
||||||
- feat roadmap refs #7195 by:sergiodt
|
|
||||||
- #refs 5890 feat:add assignCollection by:sergiodt
|
|
||||||
- refs#5890 feat: delete trigger and modify getTickets by:sergiodt
|
|
||||||
- refs #5890 feat:itemShelving_add by:sergiodt
|
|
||||||
- refs #5890 feat:reserves by:sergiodt
|
|
||||||
- refs #5890 feat:trigger by:sergiodt
|
|
||||||
- refs #5890 feat: triggers by:sergiodt
|
|
||||||
- refs #6861 feat: getLock by:sergiodt
|
|
||||||
- refs #6861 feat: obsrevation by:sergiodt
|
|
||||||
- refs #6861 feat: previas a reservas by:sergiodt
|
|
||||||
- refs #6861 feat:reserve previos by:sergiodt
|
|
||||||
- refs #6861 feat: reservePrevious by:sergiodt
|
|
||||||
- refs #6861 feat:reserveWithReservation by:sergiodt
|
|
||||||
- refs #6861 feat:sectoCollection reserve by:sergiodt
|
|
||||||
- refs #6861 feat: skipTest by:sergiodt
|
|
||||||
- refs #6861 feat: trigger by:sergiodt
|
|
||||||
|
|
||||||
### Changed 📦
|
|
||||||
|
|
||||||
- feat refactor setParking REGEXP refs #7575 (origin/7575_setParking_regExp) by:sergiodt
|
|
||||||
- refactor: refs #5447 changed models by:Jon
|
|
||||||
- refactor: refs #6238 drop useless round by:jorgep
|
|
||||||
- refactor: refs #6286 replace name by:jorgep
|
|
||||||
- refactor: refs #6701 Refactor claim_ratio_routine by:guillermo
|
|
||||||
- refactor: refs #7490 Added final update by:guillermo
|
|
||||||
- refactor: refs #7490 Deleted update duaInvoiceInBooking by:guillermo
|
|
||||||
- refactor: refs #7490 Minor changes by:guillermo
|
|
||||||
- refactor: refs #7519 Minor change by:guillermo
|
|
||||||
|
|
||||||
### Fixed 🛠️
|
|
||||||
|
|
||||||
- acls, fixtures, models by:carlossa
|
|
||||||
- fix: refs #6238 delete unused SQL script by:jorgep
|
|
||||||
- fix: refs #6238 insert ignore by:jorgep
|
|
||||||
- fix: refs #6238 use scheme by:jorgep
|
|
||||||
- fix: refs #6286 replace id for reason by:jorgep
|
|
||||||
- fix: refs #6286 update WorkerTimeControl permissions by:jorgep
|
|
||||||
- fix(WorkerIncome): refs #7409 fix models by:alexm
|
|
||||||
- refs #5890 fix: dev by:sergiodt
|
|
||||||
- refs #6897 fix entry Salix by:carlossa
|
|
||||||
- refs #6897 fix es.yml by:carlossa
|
|
||||||
- refs #6897 fix redirection by:carlossa
|
|
||||||
- refs #6897 fix remove by:carlossa
|
|
||||||
- refs #7406 fix back by:carlossa
|
|
||||||
- refs #7406 fix pr by:carlossa
|
|
||||||
- refs #7409 fix acls by:carlossa
|
|
||||||
- refs #7409 fix back (origin/7409-workerIncome) by:carlossa
|
|
||||||
- refs #7409 fix pr by:carlossa
|
|
||||||
|
|
||||||
# Version 24.24 - 2024-06-11
|
|
||||||
|
|
||||||
### Added 🆕
|
|
||||||
|
|
||||||
- 6281 feat:buyFk in itemShekving by:sergiodt
|
|
||||||
- 6281 feat:buyFk in itemShelving by:sergiodt
|
|
||||||
- feat: #6408 tests by:jgallego
|
|
||||||
- feat: packaging refs #4021 (origin/4021_packaging) by:sergiodt
|
|
||||||
- feat: refs #6021 add new field by:pablone
|
|
||||||
- feat: refs #6281 change fixtures by:robert
|
|
||||||
- feat: refs # 6408 test ok (origin/6408-rocketChat) by:jgallego
|
|
||||||
- feat: refs #6477 productionConfig add column by:robert
|
|
||||||
- feat: refs #6600 add column (origin/6600-createItemPhotoComment) by:jorgep
|
|
||||||
- feat: refs #6600 Add photoMotivation column to item table and create itemPhotoComment table by:jorgep
|
|
||||||
- feat: refs #6889 add back tests by:jorgep
|
|
||||||
- feat: refs #6889 fixtures & models by:jorgep
|
|
||||||
- feat : refs #6889 wip: check if is productionReviewer or owner by:jorgep
|
|
||||||
- feat: refs #6942 set false isBooed & ledger by:jorgep
|
|
||||||
- feat: refs #6942 toUnbook by:jorgep
|
|
||||||
- feat: refs #6942 xdiario fixtures by:jorgep
|
|
||||||
- feat: refs #7398 Change by:guillermo
|
|
||||||
- feat: refs #7438 Added volume to item_valuateInventory by:guillermo
|
|
||||||
- feat: refs #7438 Requested changes and little changes by:guillermo
|
|
||||||
- refs #6281 feat:buyFk in itemShelving by:sergiodt
|
|
||||||
- feat: refs #6449 item ID is displayed in the sale line by:jorgep
|
|
||||||
|
|
||||||
### Changed 📦
|
|
||||||
|
|
||||||
- refactor: refs #6600 add space by:jorgep
|
|
||||||
- refactor: refs #6889 improve file loading logic by:jorgep
|
|
||||||
- refactor: refs #6889 sale tests e2e by:jorgep
|
|
||||||
- refactor: refs #6889 script sql (origin/6889-dropAddSaleByCode) by:jorgep
|
|
||||||
- refactor: refs #6889 use addSale by:jorgep
|
|
||||||
- refactor: refs #6942 toUnbook & drop buyer acls by:jorgep
|
|
||||||
- refactor: refs #7398 Refactor and change ekt_scan (origin/7398-ektScan) by:guillermo
|
|
||||||
- refactor: refs #7486 Optimized procs by:guillermo
|
|
||||||
|
|
||||||
### Fixed 🛠️
|
|
||||||
|
|
||||||
- feat: refs #6281 change fixtures by:robert
|
|
||||||
- feat: refs #6889 fixtures & models by:jorgep
|
|
||||||
- feat: refs #6942 xdiario fixtures by:jorgep
|
|
||||||
- fix: checking process.env.NODE_ENV by:alexm
|
|
||||||
- fix: en translations by:alexm
|
|
||||||
- fix: move to boot (origin/7421-fix_checking_NODE_ENV, 7421-fix_checking_NODE_ENV) by:alexm
|
|
||||||
- fix: refs #6095 filter by refFk null by:pablone
|
|
||||||
- fix: refs #6600 rollback by:jorgep
|
|
||||||
- fix: refs #6889 allocate 'productionReviewer' role to revision dep. workers & check if is owner or reviewer by:jorgep
|
|
||||||
- fix: refs #6889 check if has collection or sectorCollection by:jorgep
|
|
||||||
- fix: refs #6889 e2e tests by:jorgep
|
|
||||||
- fix: refs #6889 fix back tests by:jorgep
|
|
||||||
- fix: refs #6889 modify fixtures by:jorgep
|
|
||||||
- fix: refs #6889 rollback by:jorgep
|
|
||||||
- fix: refs #6942 acls & back by:jorgep
|
|
||||||
- fix: refs #6942 add deleteById acl by:jorgep
|
|
||||||
- fix: refs #6942 add test & change column name by:jorgep
|
|
||||||
- fix: refs #6942 create invoiceIn acl by:jorgep
|
|
||||||
- fix: refs #6942 delete by:jorgep
|
|
||||||
- fix: refs #6942 drop quotes by:jorgep
|
|
||||||
- fix : refs #6942 remove grafana update priv by:jorgep
|
|
||||||
- fix: refs #6942 revoke update isBooked by:jorgep
|
|
||||||
- fix: refs #6942 toBook/toUnbook by:jorgep
|
|
||||||
- fix: refs #7442 Fix kubernetes deploy by:Juan Ferrer Toribio
|
|
||||||
- fix(salix): refs #7272 #7272 Add aclService in routes.js by:Javier Segarra
|
|
||||||
- fix(salix): refs #7272 #7272 Back validateToken endpoint by:Javier Segarra
|
|
||||||
- fix(salix): refs #7272 #7272 Bug when acl not loaded by:Javier Segarra
|
|
||||||
- fix(salix): refs #7272 #7272 Call validateToken by:Javier Segarra
|
|
||||||
- fix(salix): refs #7272 #7272 Errors when Token not exists by:Javier Segarra
|
|
||||||
- fix(salix): refs #7272 #7272 Front retry calls by:Javier Segarra
|
|
||||||
- fix(salix): refs #7272 #7272 i18n Error by:Javier Segarra
|
|
||||||
- fix(salix): refs #7272 #7272 Remove aclService from auth.js by:Javier Segarra
|
|
||||||
- fix: simplify by:alexm
|
|
||||||
- fix traduction & e2e by:carlossa
|
|
||||||
- refs #6820 fix back by:carlossa
|
|
||||||
- refs #6820 fix pr by:carlossa
|
|
||||||
- refs #6832 fix: ToItem (origin/6832_refactorBackToItem) by:Sergio De la torre
|
|
||||||
- refs #7292 fix tback by:carlossa
|
|
||||||
- refs #7296 fix pr errors, trad by:carlossa
|
|
||||||
- test(salix): refs #7272 #7272 fix renew-token.spec by:Javier Segarra
|
|
||||||
|
|
||||||
|
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
@ -420,269 +5,35 @@ All notable changes to this project will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## [24.20.01] - 2024-05-14
|
## [2316.01] - 2023-05-04
|
||||||
|
|
||||||
### Fixed
|
|
||||||
- (Worker -> time-control) Corrección de errores
|
|
||||||
- (InvoiceOut -> Crear factura) Cuando falla al crear una factura, se devuelve un error
|
|
||||||
- (Worker -> Ver albarán) Ya no aparece la página en blanco
|
|
||||||
|
|
||||||
### Changed
|
|
||||||
- (InvoiceOut) Las facturas ahora muestran el ticket del cual proviene el abono
|
|
||||||
|
|
||||||
## [24.18.01] - 2024-05-07
|
|
||||||
|
|
||||||
## [24.16.01] - 2024-04-18
|
|
||||||
|
|
||||||
## [2414.01] - 2024-04-04
|
|
||||||
|
|
||||||
## [2408.01] - 2024-02-22
|
|
||||||
|
|
||||||
## [2406.01] - 2024-02-08
|
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
### Changed
|
|
||||||
|
|
||||||
### Fixed
|
|
||||||
|
|
||||||
## [2404.01] - 2024-01-25
|
|
||||||
|
|
||||||
### Added
|
|
||||||
|
|
||||||
### Changed
|
|
||||||
|
|
||||||
### Fixed
|
|
||||||
|
|
||||||
## [2402.01] - 2024-01-11
|
|
||||||
|
|
||||||
### Added
|
|
||||||
|
|
||||||
### Changed
|
|
||||||
|
|
||||||
### Fixed
|
|
||||||
|
|
||||||
## [2400.01] - 2024-01-04
|
|
||||||
|
|
||||||
### Added
|
|
||||||
|
|
||||||
### Changed
|
|
||||||
|
|
||||||
### Fixed
|
|
||||||
|
|
||||||
## [2350.01] - 2023-12-14
|
|
||||||
|
|
||||||
### Características Añadidas 🆕
|
|
||||||
|
|
||||||
- **Tickets → Expediciones:** Añadido soporte para Viaexpress
|
|
||||||
|
|
||||||
## [2348.01] - 2023-11-30
|
|
||||||
|
|
||||||
### Características Añadidas 🆕
|
|
||||||
|
|
||||||
- **Tickets → Adelantar:** Permite mover lineas sin generar negativos
|
|
||||||
- **Tickets → Adelantar:** Permite modificar la fecha de los tickets
|
|
||||||
- **Trabajadores → Notificaciones:** Nueva sección (lilium)
|
|
||||||
|
|
||||||
### Correcciones 🛠️
|
|
||||||
|
|
||||||
- **Tickets → RocketChat:** Arreglada detección de cambios
|
|
||||||
|
|
||||||
## [2346.01] - 2023-11-16
|
|
||||||
|
|
||||||
### Added
|
|
||||||
|
|
||||||
### Changed
|
|
||||||
|
|
||||||
### Fixed
|
|
||||||
|
|
||||||
## [2342.01] - 2023-11-02
|
|
||||||
|
|
||||||
### Added
|
|
||||||
|
|
||||||
- (Usuarios -> Foto) Se muestra la foto del trabajador
|
|
||||||
|
|
||||||
### Fixed
|
|
||||||
|
|
||||||
- (Usuarios -> Historial) Abre el descriptor del usuario correctamente
|
|
||||||
|
|
||||||
## [2340.01] - 2023-10-05
|
|
||||||
|
|
||||||
## [2338.01] - 2023-09-21
|
|
||||||
|
|
||||||
### Added
|
|
||||||
|
|
||||||
- (Ticket -> Servicios) Se pueden abonar servicios
|
|
||||||
- (Facturas -> Datos básicos) Muestra valores por defecto
|
|
||||||
- (Facturas -> Borrado) Notificación al borrar un asiento ya enlazado en Sage
|
|
||||||
|
|
||||||
### Changed
|
|
||||||
|
|
||||||
- (Trabajadores -> Calendario) Icono de check arreglado cuando pulsas un tipo de dia
|
|
||||||
|
|
||||||
## [2336.01] - 2023-09-07
|
|
||||||
|
|
||||||
## [2334.01] - 2023-08-24
|
|
||||||
|
|
||||||
### Added
|
|
||||||
|
|
||||||
- (General -> Errores) Botón para enviar cau con los datos del error
|
|
||||||
|
|
||||||
## [2332.01] - 2023-08-10
|
|
||||||
|
|
||||||
### Added
|
|
||||||
|
|
||||||
- (Trabajadores -> Gestión documental) Soporte para Docuware
|
|
||||||
- (General -> Agencia) Soporte para Viaexpress
|
|
||||||
- (Tickets -> SMS) Nueva sección en Lilium
|
|
||||||
|
|
||||||
### Changed
|
|
||||||
|
|
||||||
- (General -> Tickets) Devuelve el motivo por el cual no es editable
|
|
||||||
- (Desplegables -> Trabajadores) Mejorados
|
|
||||||
- (General -> Clientes) Razón social y dirección en mayúsculas
|
|
||||||
|
|
||||||
### Fixed
|
|
||||||
|
|
||||||
- (Clientes -> SMS) Al pasar el ratón por encima muestra el mensaje completo
|
|
||||||
|
|
||||||
## [2330.01] - 2023-07-27
|
|
||||||
|
|
||||||
### Added
|
|
||||||
|
|
||||||
- (Artículos -> Vista Previa) Añadido campo "Plástico reciclado"
|
|
||||||
- (Rutas -> Troncales) Nueva sección
|
|
||||||
- (Tickets -> Opciones) Opción establecer peso
|
|
||||||
- (Clientes -> SMS) Nueva sección
|
|
||||||
|
|
||||||
### Changed
|
|
||||||
|
|
||||||
- (General -> Iconos) Añadidos nuevos iconos
|
|
||||||
- (Clientes -> Razón social) Permite crear clientes con la misma razón social según el país
|
|
||||||
|
|
||||||
## [2328.01] - 2023-07-13
|
|
||||||
|
|
||||||
### Added
|
|
||||||
|
|
||||||
- (Clientes -> Morosos) Añadida columna "es trabajador"
|
|
||||||
- (Trabajadores -> Departamentos) Nueva sección
|
|
||||||
- (Trabajadores -> Departamentos) Añadido listado de Trabajadores por departamento
|
|
||||||
- (Trabajadores -> Departamentos) Añadido características de departamento e información
|
|
||||||
|
|
||||||
### Changed
|
|
||||||
|
|
||||||
### Fixed
|
|
||||||
|
|
||||||
- (Trabajadores -> Departamentos) Arreglado búscador
|
|
||||||
|
|
||||||
## [2326.01] - 2023-06-29
|
|
||||||
|
|
||||||
### Added
|
|
||||||
|
|
||||||
- (Entradas -> Correo) Al cambiar el tipo de cambio enviará un correo a las personas designadas
|
|
||||||
- (General -> Históricos) Botón para ver el estado del registro en cada punto
|
|
||||||
- (General -> Históricos) Al filtar por registro se muestra todo el histórial desde que fue creado
|
|
||||||
- (Tickets -> Índice) Permite enviar varios albaranes a Docuware
|
|
||||||
|
|
||||||
### Changed
|
|
||||||
|
|
||||||
- (General -> Históricos) Los registros se muestran agrupados por usuario y entidad
|
|
||||||
- (Facturas -> Facturación global) Optimizada, generación de PDFs y notificaciones en paralelo
|
|
||||||
|
|
||||||
### Fixed
|
|
||||||
|
|
||||||
- (General -> Históricos) Duplicidades eliminadas
|
|
||||||
- (Facturas -> Facturación global) Solucionados fallos que paran el proceso
|
|
||||||
|
|
||||||
## [2324.01] - 2023-06-15
|
|
||||||
|
|
||||||
### Added
|
|
||||||
|
|
||||||
- (Tickets -> Abono) Al abonar permite crear el ticket abono con almacén o sin almmacén
|
|
||||||
- (General -> Desplegables) Mejorada eficiencia de carga de datos
|
|
||||||
- (General -> Históricos) Ahora, ademas de los ids, se muestra la descripión de los atributos
|
|
||||||
- (General -> Históricos) Botón para hacer más ágil mostrar sólo los cambios en un registro
|
|
||||||
- (General -> Históricos) Filtro por cambios
|
|
||||||
|
|
||||||
### Changed
|
|
||||||
|
|
||||||
- (General -> Permisos) Mejorada seguridad
|
|
||||||
- (General -> Históricos) Elementos de la interfaz reorganizados para hacerla más ágil e intuitiva
|
|
||||||
|
|
||||||
### Fixed
|
|
||||||
|
|
||||||
-
|
|
||||||
|
|
||||||
## [2322.01] - 2023-06-01
|
|
||||||
|
|
||||||
### Added
|
|
||||||
|
|
||||||
- (Tickets -> Crear Factura) Al facturar se envia automáticamente el pdf al cliente
|
|
||||||
- (Artículos -> Histórico) Filtro para mostrar lo anterior al inventario
|
|
||||||
- (Trabajadores -> Nuevo trabajador) Permite elegir el método de pago
|
|
||||||
|
|
||||||
### Changed
|
|
||||||
|
|
||||||
- (Trabajadores -> Nuevo trabajador) Los clientes se crean sin 'TR' pero se añade tipo de negocio 'Trabajador'
|
|
||||||
- (Tickets -> Expediciones) Interfaz mejorada y contador añadido
|
|
||||||
|
|
||||||
### Fixed
|
|
||||||
|
|
||||||
- (Tickets -> Líneas) Se permite hacer split de líneas al mismo ticket
|
|
||||||
- (Tickets -> Cambiar estado) Ahora muestra la lista completa de todos los estados
|
|
||||||
|
|
||||||
## [2320.01] - 2023-05-25
|
|
||||||
|
|
||||||
### Added
|
|
||||||
|
|
||||||
- (Tickets -> Crear Factura) Al facturar se envia automáticamente el pdf al cliente
|
|
||||||
|
|
||||||
### Changed
|
|
||||||
|
|
||||||
- (Trabajadores -> Nuevo trabajador) Los clientes se crean sin 'TR' pero se añade tipo de negocio 'Trabajador'
|
|
||||||
|
|
||||||
### Fixed
|
|
||||||
|
|
||||||
-
|
|
||||||
|
|
||||||
## [2318.01] - 2023-05-08
|
|
||||||
|
|
||||||
### Added
|
|
||||||
|
|
||||||
- (Usuarios -> Histórico) Nueva sección
|
- (Usuarios -> Histórico) Nueva sección
|
||||||
- (Roles -> Histórico) Nueva sección
|
- (Roles -> Histórico) Nueva sección
|
||||||
- (Trabajadores -> Dar de alta) Permite elegir el método de pago
|
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- (Artículo -> Precio fijado) Modificado el buscador superior por uno lateral
|
- (Artículo -> Precio fijado) Modificado el buscador superior por uno lateral
|
||||||
- (Trabajadores -> Dar de alta) Quitada obligatoriedad del iban
|
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
-
|
||||||
|
|
||||||
- (Ticket -> Boxing) Arreglado selección de horas
|
|
||||||
- (Cesta -> Índice) Optimizada búsqueda
|
|
||||||
|
|
||||||
## [2314.01] - 2023-04-20
|
## [2314.01] - 2023-04-20
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- (Clientes -> Morosos) Ahora se puede filtrar por las columnas "Desde" y "Fecha Ú. O.". También se envia un email al comercial cuando se añade una nota.
|
- (Clientes -> Morosos) Ahora se puede filtrar por las columnas "Desde" y "Fecha Ú. O.". También se envia un email al comercial cuando se añade una nota.
|
||||||
- (Monitor tickets) Muestra un icono al lado de la zona, si el ticket es frágil y se envía por agencia
|
- (Monitor tickets) Muestra un icono al lado de la zona, si el ticket es frágil y se envía por agencia
|
||||||
- (Facturas recibidas -> Bases negativas) Nueva sección
|
- (Facturas recibidas -> Bases negativas) Nueva sección
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- (Clientes -> Morosos) Ahora se mantienen los elementos seleccionados al hacer sroll.
|
- (Clientes -> Morosos) Ahora se mantienen los elementos seleccionados al hacer sroll.
|
||||||
|
|
||||||
## [2312.01] - 2023-04-06
|
## [2312.01] - 2023-04-06
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- (Monitor tickets) Muestra un icono al lado de la zona, si el ticket es frágil y se envía por agencia
|
- (Monitor tickets) Muestra un icono al lado de la zona, si el ticket es frágil y se envía por agencia
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- (Monitor tickets) Cuando se filtra por 'Pendiente' ya no muestra los estados de 'Previa'
|
- (Monitor tickets) Cuando se filtra por 'Pendiente' ya no muestra los estados de 'Previa'
|
||||||
- (Envíos -> Extra comunitarios) Se agrupan las entradas del mismo travel. Añadidos campos Referencia y Importe.
|
- (Envíos -> Extra comunitarios) Se agrupan las entradas del mismo travel. Añadidos campos Referencia y Importe.
|
||||||
- (Envíos -> Índice) Cambiado el buscador superior por uno lateral
|
- (Envíos -> Índice) Cambiado el buscador superior por uno lateral
|
||||||
|
@ -690,40 +41,33 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
## [2310.01] - 2023-03-23
|
## [2310.01] - 2023-03-23
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- (Trabajadores -> Control de horario) Ahora se puede confirmar/no confirmar el registro horario de cada semana desde esta sección
|
- (Trabajadores -> Control de horario) Ahora se puede confirmar/no confirmar el registro horario de cada semana desde esta sección
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- (Clientes -> Listado extendido) Resuelto error al filtrar por clientes inactivos desde la columna "Activo"
|
- (Clientes -> Listado extendido) Resuelto error al filtrar por clientes inactivos desde la columna "Activo"
|
||||||
- (General) Al pasar el ratón por encima del icono de "Borrar" en un campo, se hacía más grande afectando a la interfaz
|
- (General) Al pasar el ratón por encima del icono de "Borrar" en un campo, se hacía más grande afectando a la interfaz
|
||||||
|
|
||||||
## [2308.01] - 2023-03-09
|
## [2308.01] - 2023-03-09
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- (Proveedores -> Datos fiscales) Añadido checkbox 'Vies'
|
- (Proveedores -> Datos fiscales) Añadido checkbox 'Vies'
|
||||||
- (Client -> Descriptor) Nuevo icono $ con barrotes para los clientes con impago
|
- (Client -> Descriptor) Nuevo icono $ con barrotes para los clientes con impago
|
||||||
- (Trabajador -> Datos Básicos) Añadido nuevo campo Taquilla
|
- (Trabajador -> Datos Básicos) Añadido nuevo campo Taquilla
|
||||||
- (Trabajador -> PDA) Nueva sección
|
- (Trabajador -> PDA) Nueva sección
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- (Ticket -> Borrar ticket) Restringido el borrado de tickets con abono
|
- (Ticket -> Borrar ticket) Restringido el borrado de tickets con abono
|
||||||
|
|
||||||
## [2306.01] - 2023-02-23
|
## [2306.01] - 2023-02-23
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- (Tickets -> Datos Básicos) Mensaje de confirmación al intentar generar tickets con negativos
|
- (Tickets -> Datos Básicos) Mensaje de confirmación al intentar generar tickets con negativos
|
||||||
- (Artículos) El visible y disponible se calcula a partir de un almacén diferente dependiendo de la sección en la que te encuentres. Se ha añadido un icono que informa sobre a partir de que almacén se esta calculando.
|
- (Artículos) El visible y disponible se calcula a partir de un almacén diferente dependiendo de la sección en la que te encuentres. Se ha añadido un icono que informa sobre a partir de que almacén se esta calculando.
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- (General -> Inicio) Ahora permite recuperar la contraseña tanto con el correo de recuperación como el usuario
|
- (General -> Inicio) Ahora permite recuperar la contraseña tanto con el correo de recuperación como el usuario
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- (Monitor de tickets) Cuando ordenas por columna, ya no se queda deshabilitado el botón de 'Actualizar'
|
- (Monitor de tickets) Cuando ordenas por columna, ya no se queda deshabilitado el botón de 'Actualizar'
|
||||||
- (Zone -> Días de entrega) Al hacer click en un día, muestra correctamente las zonas
|
- (Zone -> Días de entrega) Al hacer click en un día, muestra correctamente las zonas
|
||||||
- (Artículos) El disponible en la vista previa se muestra correctamente
|
- (Artículos) El disponible en la vista previa se muestra correctamente
|
||||||
|
@ -731,14 +75,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
## [2304.01] - 2023-02-09
|
## [2304.01] - 2023-02-09
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- (Rutas) Al descargar varias facturas se comprime en un zip
|
- (Rutas) Al descargar varias facturas se comprime en un zip
|
||||||
- (Trabajadores -> Nuevo trabajador) Nueva sección
|
- (Trabajadores -> Nuevo trabajador) Nueva sección
|
||||||
- (Tickets -> Adelantar tickets) Añadidos campos "líneas" y "litros" al ticket origen
|
- (Tickets -> Adelantar tickets) Añadidos campos "líneas" y "litros" al ticket origen
|
||||||
- (Tickets -> Adelantar tickets) Nuevo icono muestra cuando las agencias de los tickets origen/destino son distintas
|
- (Tickets -> Adelantar tickets) Nuevo icono muestra cuando las agencias de los tickets origen/destino son distintas
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- (Entradas -> Compras) Cambiados los campos "Precio Grouping/Packing" por "PVP" y "Precio" por "Coste"
|
- (Entradas -> Compras) Cambiados los campos "Precio Grouping/Packing" por "PVP" y "Precio" por "Coste"
|
||||||
- (Artículos -> Últimas entradas) Cambiados los campos "P.P.U." y "P.P.P." por "PVP"
|
- (Artículos -> Últimas entradas) Cambiados los campos "P.P.U." y "P.P.P." por "PVP"
|
||||||
- (Rutas -> Sumario/Tickets) Actualizados campos de los tickets
|
- (Rutas -> Sumario/Tickets) Actualizados campos de los tickets
|
||||||
|
@ -747,7 +89,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
- (Tickets -> Adelantar tickets) Cambiado stock de destino a origen.
|
- (Tickets -> Adelantar tickets) Cambiado stock de destino a origen.
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- (Artículos -> Etiquetas) Permite intercambiar la relevancia entre dos etiquetas.
|
- (Artículos -> Etiquetas) Permite intercambiar la relevancia entre dos etiquetas.
|
||||||
- (Cliente -> Datos Fiscales) No se permite seleccionar 'Notificar vía e-mail' a los clientes sin e-mail
|
- (Cliente -> Datos Fiscales) No se permite seleccionar 'Notificar vía e-mail' a los clientes sin e-mail
|
||||||
- (Tickets -> Datos básicos) Permite guardar la hora de envío
|
- (Tickets -> Datos básicos) Permite guardar la hora de envío
|
||||||
|
@ -758,21 +99,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
## [2302.01] - 2023-01-26
|
## [2302.01] - 2023-01-26
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- (General -> Inicio) Permite recuperar la contraseña
|
- (General -> Inicio) Permite recuperar la contraseña
|
||||||
- (Tickets -> Opciones) Subir albarán a Docuware
|
- (Tickets -> Opciones) Subir albarán a Docuware
|
||||||
- (Tickets -> Opciones) Enviar correo con PDF de Docuware
|
- (Tickets -> Opciones) Enviar correo con PDF de Docuware
|
||||||
- (Artículos -> Datos Básicos) Añadido campo Unidades/Caja
|
- (Artículos -> Datos Básicos) Añadido campo Unidades/Caja
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- (Reclamaciones -> Descriptor) Cambiado el campo Agencia por Zona
|
- (Reclamaciones -> Descriptor) Cambiado el campo Agencia por Zona
|
||||||
- (Tickets -> Líneas preparadas) Actualizada sección para que sea más visual
|
- (Tickets -> Líneas preparadas) Actualizada sección para que sea más visual
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- (General) Al utilizar el traductor de Google se descuadraban los iconos
|
- (General) Al utilizar el traductor de Google se descuadraban los iconos
|
||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
|
|
||||||
- (Tickets -> Control clientes) Eliminada sección
|
- (Tickets -> Control clientes) Eliminada sección
|
||||||
|
|
|
@ -0,0 +1,55 @@
|
||||||
|
FROM debian:bullseye-slim
|
||||||
|
ENV TZ Europe/Madrid
|
||||||
|
|
||||||
|
ARG DEBIAN_FRONTEND=noninteractive
|
||||||
|
|
||||||
|
# NodeJs
|
||||||
|
|
||||||
|
RUN apt-get update \
|
||||||
|
&& apt-get install -y --no-install-recommends \
|
||||||
|
curl \
|
||||||
|
ca-certificates \
|
||||||
|
gnupg2 \
|
||||||
|
graphicsmagick \
|
||||||
|
&& curl -fsSL https://deb.nodesource.com/setup_14.x | bash - \
|
||||||
|
&& apt-get install -y --no-install-recommends nodejs \
|
||||||
|
&& npm install -g npm@8.19.2
|
||||||
|
|
||||||
|
# Puppeteer
|
||||||
|
|
||||||
|
RUN apt-get update \
|
||||||
|
&& apt-get install -y --no-install-recommends \
|
||||||
|
libfontconfig lftp xvfb gconf-service libasound2 libatk1.0-0 libc6 \
|
||||||
|
libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libgbm1 \
|
||||||
|
libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libglib2.0-0 libgtk-3-0 \
|
||||||
|
libnspr4 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 \
|
||||||
|
libx11-xcb1 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxext6 \
|
||||||
|
libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 \
|
||||||
|
fonts-liberation libappindicator1 libnss3 lsb-release xdg-utils wget \
|
||||||
|
&& rm -rf /var/lib/apt/lists/* \
|
||||||
|
&& npm -g install pm2
|
||||||
|
|
||||||
|
# Salix
|
||||||
|
|
||||||
|
WORKDIR /salix
|
||||||
|
|
||||||
|
COPY print/package.json print/package-lock.json print/
|
||||||
|
RUN npm --prefix ./print install --omit=dev ./print
|
||||||
|
|
||||||
|
COPY package.json package-lock.json ./
|
||||||
|
COPY loopback/package.json loopback/
|
||||||
|
RUN npm install --omit=dev
|
||||||
|
|
||||||
|
COPY loopback loopback
|
||||||
|
COPY back back
|
||||||
|
COPY modules modules
|
||||||
|
COPY print print
|
||||||
|
COPY \
|
||||||
|
LICENSE \
|
||||||
|
README.md \
|
||||||
|
./
|
||||||
|
|
||||||
|
CMD ["pm2-runtime", "./back/process.yml"]
|
||||||
|
|
||||||
|
HEALTHCHECK --interval=15s --timeout=10s \
|
||||||
|
CMD curl -f http://localhost:3000/api/Applications/status || exit 1
|
|
@ -1,258 +1,143 @@
|
||||||
#!/usr/bin/env groovy
|
#!/usr/bin/env groovy
|
||||||
|
|
||||||
def PROTECTED_BRANCH
|
|
||||||
def FROM_GIT
|
|
||||||
def RUN_TESTS
|
|
||||||
def RUN_BUILD
|
|
||||||
|
|
||||||
def BRANCH_ENV = [
|
|
||||||
test: 'test',
|
|
||||||
master: 'production'
|
|
||||||
]
|
|
||||||
|
|
||||||
node {
|
|
||||||
stage('Setup') {
|
|
||||||
env.BACK_REPLICAS = 1
|
|
||||||
env.NODE_ENV = BRANCH_ENV[env.BRANCH_NAME] ?: 'dev'
|
|
||||||
|
|
||||||
PROTECTED_BRANCH = [
|
|
||||||
'dev',
|
|
||||||
'test',
|
|
||||||
'master'
|
|
||||||
].contains(env.BRANCH_NAME)
|
|
||||||
|
|
||||||
FROM_GIT = env.JOB_NAME.startsWith('gitea/')
|
|
||||||
RUN_TESTS = !PROTECTED_BRANCH && FROM_GIT
|
|
||||||
RUN_BUILD = PROTECTED_BRANCH && FROM_GIT
|
|
||||||
|
|
||||||
// https://www.jenkins.io/doc/book/pipeline/jenkinsfile/#using-environment-variables
|
|
||||||
echo "NODE_NAME: ${env.NODE_NAME}"
|
|
||||||
echo "WORKSPACE: ${env.WORKSPACE}"
|
|
||||||
|
|
||||||
configFileProvider([
|
|
||||||
configFile(fileId: 'salix.properties',
|
|
||||||
variable: 'PROPS_FILE')
|
|
||||||
]) {
|
|
||||||
def props = readProperties file: PROPS_FILE
|
|
||||||
props.each {key, value -> env."${key}" = value }
|
|
||||||
props.each {key, value -> echo "${key}: ${value}" }
|
|
||||||
}
|
|
||||||
|
|
||||||
if (PROTECTED_BRANCH) {
|
|
||||||
configFileProvider([
|
|
||||||
configFile(fileId: "salix.branch.${env.BRANCH_NAME}",
|
|
||||||
variable: 'BRANCH_PROPS_FILE')
|
|
||||||
]) {
|
|
||||||
def props = readProperties file: BRANCH_PROPS_FILE
|
|
||||||
props.each {key, value -> env."${key}" = value }
|
|
||||||
props.each {key, value -> echo "${key}: ${value}" }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
pipeline {
|
pipeline {
|
||||||
agent any
|
agent any
|
||||||
options {
|
options {
|
||||||
disableConcurrentBuilds()
|
disableConcurrentBuilds()
|
||||||
}
|
}
|
||||||
tools {
|
|
||||||
nodejs 'node-v20'
|
|
||||||
}
|
|
||||||
environment {
|
environment {
|
||||||
PROJECT_NAME = 'salix'
|
PROJECT_NAME = 'salix'
|
||||||
|
STACK_NAME = "${env.PROJECT_NAME}-${env.BRANCH_NAME}"
|
||||||
}
|
}
|
||||||
stages {
|
stages {
|
||||||
|
stage('Checkout') {
|
||||||
|
steps {
|
||||||
|
script {
|
||||||
|
switch (env.BRANCH_NAME) {
|
||||||
|
case 'master':
|
||||||
|
env.NODE_ENV = 'production'
|
||||||
|
env.BACK_REPLICAS = 4
|
||||||
|
break
|
||||||
|
case 'test':
|
||||||
|
env.NODE_ENV = 'test'
|
||||||
|
env.BACK_REPLICAS = 2
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
configFileProvider([
|
||||||
|
configFile(fileId: "salix.groovy",
|
||||||
|
variable: 'GROOVY_FILE')
|
||||||
|
]) {
|
||||||
|
load env.GROOVY_FILE
|
||||||
|
}
|
||||||
|
|
||||||
|
setEnv()
|
||||||
|
}
|
||||||
|
}
|
||||||
stage('Install') {
|
stage('Install') {
|
||||||
environment {
|
environment {
|
||||||
NODE_ENV = ''
|
NODE_ENV = ""
|
||||||
}
|
|
||||||
parallel {
|
|
||||||
stage('Back') {
|
|
||||||
steps {
|
|
||||||
sh 'pnpm install --prefer-offline'
|
|
||||||
sh 'node node_modules/puppeteer/install.mjs'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('Print') {
|
|
||||||
when {
|
|
||||||
expression { FROM_GIT }
|
|
||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
sh 'pnpm install --prefer-offline --prefix=print'
|
nodejs('node-v14') {
|
||||||
}
|
sh 'npm install --no-audit --prefer-offline'
|
||||||
}
|
sh 'gulp install --ci'
|
||||||
stage('Front') {
|
|
||||||
when {
|
|
||||||
expression { FROM_GIT }
|
|
||||||
}
|
|
||||||
steps {
|
|
||||||
sh 'pnpm install --prefer-offline --prefix=front'
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
stage('Stack') {
|
|
||||||
parallel {
|
|
||||||
stage('Back') {
|
|
||||||
stages {
|
|
||||||
stage('Test') {
|
stage('Test') {
|
||||||
when {
|
when { not { anyOf {
|
||||||
expression { RUN_TESTS }
|
branch 'test'
|
||||||
}
|
branch 'master'
|
||||||
|
}}}
|
||||||
environment {
|
environment {
|
||||||
NODE_ENV = ''
|
NODE_ENV = ""
|
||||||
}
|
}
|
||||||
|
parallel {
|
||||||
|
stage('Frontend') {
|
||||||
steps {
|
steps {
|
||||||
sh 'node back/tests.js --junit'
|
nodejs('node-v14') {
|
||||||
|
sh 'jest --ci --reporters=default --reporters=jest-junit --maxWorkers=2'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Backend') {
|
||||||
|
steps {
|
||||||
|
nodejs('node-v14') {
|
||||||
|
sh 'npm run test:back:ci'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
post {
|
|
||||||
always {
|
|
||||||
junit(
|
|
||||||
testResults: 'junitresults.xml',
|
|
||||||
allowEmptyResults: true
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Build') {
|
stage('Build') {
|
||||||
when {
|
when { anyOf {
|
||||||
expression { RUN_BUILD }
|
branch 'test'
|
||||||
}
|
branch 'master'
|
||||||
steps {
|
}}
|
||||||
script {
|
|
||||||
def packageJson = readJSON file: 'package.json'
|
|
||||||
env.VERSION = "${packageJson.version}-build${env.BUILD_ID}"
|
|
||||||
}
|
|
||||||
sh 'docker-compose build back'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('Front') {
|
|
||||||
when {
|
|
||||||
expression { FROM_GIT }
|
|
||||||
}
|
|
||||||
stages {
|
|
||||||
stage('Test') {
|
|
||||||
when {
|
|
||||||
expression { RUN_TESTS }
|
|
||||||
}
|
|
||||||
environment {
|
|
||||||
NODE_ENV = ''
|
|
||||||
}
|
|
||||||
steps {
|
|
||||||
sh 'jest --ci --reporters=default --reporters=jest-junit --maxWorkers=10'
|
|
||||||
}
|
|
||||||
post {
|
|
||||||
always {
|
|
||||||
junit(
|
|
||||||
testResults: 'junit.xml',
|
|
||||||
allowEmptyResults: true
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('Build') {
|
|
||||||
when {
|
|
||||||
expression { RUN_BUILD }
|
|
||||||
}
|
|
||||||
steps {
|
|
||||||
script {
|
|
||||||
def packageJson = readJSON file: 'package.json'
|
|
||||||
env.VERSION = "${packageJson.version}-build${env.BUILD_ID}"
|
|
||||||
}
|
|
||||||
sh 'gulp build'
|
|
||||||
sh 'docker-compose build front'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('Push') {
|
|
||||||
when {
|
|
||||||
expression { RUN_BUILD }
|
|
||||||
}
|
|
||||||
environment {
|
environment {
|
||||||
CREDENTIALS = credentials('docker-registry')
|
CREDENTIALS = credentials('docker-registry')
|
||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
script {
|
nodejs('node-v14') {
|
||||||
def packageJson = readJSON file: 'package.json'
|
sh 'gulp build'
|
||||||
env.VERSION = "${packageJson.version}-build${env.BUILD_ID}"
|
|
||||||
}
|
}
|
||||||
sh 'docker login --username $CREDENTIALS_USR --password $CREDENTIALS_PSW $REGISTRY'
|
|
||||||
sh 'docker-compose push'
|
dockerBuild()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Deploy') {
|
stage('Deploy') {
|
||||||
when {
|
when { anyOf {
|
||||||
expression { PROTECTED_BRANCH }
|
branch 'test'
|
||||||
|
branch 'master'
|
||||||
|
}}
|
||||||
|
environment {
|
||||||
|
DOCKER_HOST = "${env.SWARM_HOST}"
|
||||||
|
}
|
||||||
|
steps {
|
||||||
|
sh "docker stack deploy --with-registry-auth --compose-file docker-compose.yml ${env.STACK_NAME}"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
parallel {
|
|
||||||
stage('Database') {
|
stage('Database') {
|
||||||
|
when { anyOf {
|
||||||
|
branch 'test'
|
||||||
|
branch 'master'
|
||||||
|
}}
|
||||||
steps {
|
steps {
|
||||||
configFileProvider([
|
configFileProvider([
|
||||||
configFile(fileId: "config.${env.NODE_ENV}.ini",
|
configFile(fileId: "config.${env.NODE_ENV}.ini",
|
||||||
variable: 'MYSQL_CONFIG')
|
variable: 'MYSQL_CONFIG')
|
||||||
]) {
|
]) {
|
||||||
sh 'mkdir -p db/remotes'
|
sh 'cp "$MYSQL_CONFIG" db/config.$NODE_ENV.ini'
|
||||||
sh 'cp "$MYSQL_CONFIG" db/remotes/$NODE_ENV.ini'
|
|
||||||
}
|
}
|
||||||
|
|
||||||
sh 'npx myt push $NODE_ENV --force --commit'
|
sh 'db/import-changes.sh -f $NODE_ENV'
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('Kubernetes') {
|
|
||||||
when {
|
|
||||||
expression { FROM_GIT }
|
|
||||||
}
|
|
||||||
steps {
|
|
||||||
script {
|
|
||||||
def packageJson = readJSON file: 'package.json'
|
|
||||||
env.VERSION = "${packageJson.version}-build${env.BUILD_ID}"
|
|
||||||
}
|
|
||||||
withKubeConfig([
|
|
||||||
serverUrl: "$KUBERNETES_API",
|
|
||||||
credentialsId: 'kubernetes',
|
|
||||||
namespace: 'salix'
|
|
||||||
]) {
|
|
||||||
sh 'kubectl set image deployment/salix-back-$BRANCH_NAME salix-back-$BRANCH_NAME=$REGISTRY/salix-back:$VERSION'
|
|
||||||
sh 'kubectl set image deployment/salix-front-$BRANCH_NAME salix-front-$BRANCH_NAME=$REGISTRY/salix-front:$VERSION'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
post {
|
post {
|
||||||
success {
|
always {
|
||||||
script {
|
script {
|
||||||
if (env.BRANCH_NAME == 'master' && FROM_GIT) {
|
if (!['master', 'test'].contains(env.BRANCH_NAME)) {
|
||||||
env.GIT_COMMIT_MSG = sh(
|
try {
|
||||||
script: 'git log -1 --pretty=%B ${GIT_COMMIT}',
|
junit 'junitresults.xml'
|
||||||
returnStdout: true
|
junit 'junit.xml'
|
||||||
).trim()
|
} catch (e) {
|
||||||
|
echo e.toString()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
String message = env.GIT_COMMIT_MSG
|
if (!env.COMMITTER_EMAIL || currentBuild.currentResult == 'SUCCESS') return;
|
||||||
int index = message.indexOf('\n')
|
try {
|
||||||
if (index != -1)
|
mail(
|
||||||
message = message.substring(0, index)
|
to: env.COMMITTER_EMAIL,
|
||||||
|
subject: "Pipeline: ${env.JOB_NAME} (${env.BUILD_NUMBER}): ${currentBuild.currentResult}",
|
||||||
setEnv()
|
body: "Check status at ${env.BUILD_URL}"
|
||||||
rocketSend(
|
|
||||||
channel: 'vn-database',
|
|
||||||
message: "*DB version uploaded:* ${message}"
|
|
||||||
+"\n$COMMITTER_EMAIL ($BRANCH_NAME)"
|
|
||||||
+"\n$RUN_DISPLAY_URL",
|
|
||||||
rawMessage: true
|
|
||||||
)
|
)
|
||||||
|
} catch (e) {
|
||||||
|
echo e.toString()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
unsuccessful {
|
|
||||||
setEnv()
|
|
||||||
sendEmail()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
49
README.md
49
README.md
|
@ -8,27 +8,35 @@ Salix is also the scientific name of a beautifull tree! :)
|
||||||
|
|
||||||
Required applications.
|
Required applications.
|
||||||
|
|
||||||
* Node.js
|
* Node.js = 14.x LTS
|
||||||
* Docker
|
* Docker
|
||||||
* Git
|
* Git
|
||||||
* MYT
|
|
||||||
|
|
||||||
You will need to install globally the following items.
|
You will need to install globally the following items.
|
||||||
```
|
```
|
||||||
$ sudo npm install -g jest gulp-cli
|
$ sudo npm install -g jest gulp-cli
|
||||||
```
|
```
|
||||||
After installing MYT you will need the following item.
|
|
||||||
|
For the usage of jest --watch on macOs.
|
||||||
```
|
```
|
||||||
$ apt install libkrb5-dev libssl-dev
|
$ brew install watchman
|
||||||
|
```
|
||||||
|
* [watchman](https://facebook.github.io/watchman/)
|
||||||
|
|
||||||
|
## Linux Only Prerequisites
|
||||||
|
|
||||||
|
Your user must be on the docker group to use it so you will need to run this command:
|
||||||
|
```
|
||||||
|
$ sudo usermod -a -G docker yourusername
|
||||||
```
|
```
|
||||||
|
|
||||||
## Installing dependencies and launching
|
## Getting Started // Installing
|
||||||
|
|
||||||
Pull from repository.
|
Pull from repository.
|
||||||
|
|
||||||
Run this commands on project root directory to install Node dependencies.
|
Run this commands on project root directory to install Node dependencies.
|
||||||
```
|
```
|
||||||
$ pnpm install
|
$ npm install
|
||||||
$ gulp install
|
$ gulp install
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -59,12 +67,6 @@ For end-to-end tests run from project's root.
|
||||||
$ npm run test:e2e
|
$ npm run test:e2e
|
||||||
```
|
```
|
||||||
|
|
||||||
## Generate changeLog test → master
|
|
||||||
```
|
|
||||||
$ bash changelog.sh
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|
||||||
## Visual Studio Code extensions
|
## Visual Studio Code extensions
|
||||||
|
|
||||||
Open Visual Studio Code, press Ctrl+P and paste the following commands.
|
Open Visual Studio Code, press Ctrl+P and paste the following commands.
|
||||||
|
@ -74,6 +76,29 @@ In Visual Studio Code we use the ESLint extension.
|
||||||
ext install dbaeumer.vscode-eslint
|
ext install dbaeumer.vscode-eslint
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Gitlens for visualization of code authorship
|
||||||
|
```
|
||||||
|
ext install eamodio.gitlens
|
||||||
|
```
|
||||||
|
|
||||||
|
Spanish language pack
|
||||||
|
```
|
||||||
|
ext install ms-ceintl.vscode-language-pack-es
|
||||||
|
```
|
||||||
|
|
||||||
|
### Recommended extensions
|
||||||
|
|
||||||
|
Material icon Theme
|
||||||
|
```
|
||||||
|
ext install pkief.material-icon-theme
|
||||||
|
```
|
||||||
|
|
||||||
|
Material UI Themes
|
||||||
|
```
|
||||||
|
ext install equinusocio.vsc-material-theme
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## Built With
|
## Built With
|
||||||
|
|
||||||
* [angularjs](https://angularjs.org/)
|
* [angularjs](https://angularjs.org/)
|
||||||
|
|
|
@ -1,57 +0,0 @@
|
||||||
FROM debian:bookworm-slim
|
|
||||||
ENV TZ Europe/Madrid
|
|
||||||
|
|
||||||
ARG DEBIAN_FRONTEND=noninteractive
|
|
||||||
|
|
||||||
# NodeJs
|
|
||||||
|
|
||||||
RUN apt-get update \
|
|
||||||
&& apt-get install -y --no-install-recommends \
|
|
||||||
curl \
|
|
||||||
ca-certificates \
|
|
||||||
gnupg2 \
|
|
||||||
graphicsmagick \
|
|
||||||
&& curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
|
|
||||||
&& apt-get install -y --no-install-recommends nodejs \
|
|
||||||
&& corepack enable pnpm
|
|
||||||
|
|
||||||
# Puppeteer
|
|
||||||
|
|
||||||
RUN apt-get update \
|
|
||||||
&& apt-get install -y --no-install-recommends \
|
|
||||||
libfontconfig lftp xvfb gconf-service libasound2 libatk1.0-0 libc6 \
|
|
||||||
libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libgbm1 \
|
|
||||||
libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libglib2.0-0 libgtk-3-0 \
|
|
||||||
libnspr4 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 \
|
|
||||||
libx11-xcb1 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxext6 \
|
|
||||||
libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 \
|
|
||||||
fonts-liberation libappindicator1 libnss3 lsb-release xdg-utils wget
|
|
||||||
|
|
||||||
# Extra dependencies
|
|
||||||
|
|
||||||
RUN apt-get update \
|
|
||||||
&& apt-get install -y --no-install-recommends \
|
|
||||||
samba-common-bin samba-dsdb-modules\
|
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
# Salix
|
|
||||||
|
|
||||||
WORKDIR /salix
|
|
||||||
|
|
||||||
COPY print/package.json print/pnpm-lock.yaml print/
|
|
||||||
RUN pnpm install --prod --prefix=print
|
|
||||||
|
|
||||||
COPY package.json pnpm-lock.yaml ./
|
|
||||||
COPY loopback/package.json loopback/
|
|
||||||
RUN pnpm install --prod
|
|
||||||
|
|
||||||
COPY loopback loopback
|
|
||||||
COPY back back
|
|
||||||
COPY modules modules
|
|
||||||
COPY print print
|
|
||||||
COPY \
|
|
||||||
LICENSE \
|
|
||||||
README.md \
|
|
||||||
./
|
|
||||||
|
|
||||||
CMD ["node", "--tls-min-v1.0", "--openssl-legacy-provider", "./loopback/server/server.js"]
|
|
|
@ -1,5 +1,3 @@
|
||||||
const isProduction = require('vn-loopback/server/boot/isProduction');
|
|
||||||
|
|
||||||
module.exports = Self => {
|
module.exports = Self => {
|
||||||
Self.remoteMethodCtx('sendCheckingPresence', {
|
Self.remoteMethodCtx('sendCheckingPresence', {
|
||||||
description: 'Creates a message in the chat model checking the user status',
|
description: 'Creates a message in the chat model checking the user status',
|
||||||
|
@ -28,18 +26,19 @@ module.exports = Self => {
|
||||||
|
|
||||||
Self.sendCheckingPresence = async(ctx, recipientId, message) => {
|
Self.sendCheckingPresence = async(ctx, recipientId, message) => {
|
||||||
if (!recipientId) return false;
|
if (!recipientId) return false;
|
||||||
const models = Self.app.models;
|
|
||||||
|
|
||||||
|
const models = Self.app.models;
|
||||||
const userId = ctx.req.accessToken.userId;
|
const userId = ctx.req.accessToken.userId;
|
||||||
const sender = await models.VnUser.findById(userId, {fields: ['id']});
|
const sender = await models.VnUser.findById(userId, {fields: ['id']});
|
||||||
const recipient = await models.VnUser.findById(recipientId, null);
|
const recipient = await models.VnUser.findById(recipientId, null);
|
||||||
|
|
||||||
// Prevent sending messages to yourself
|
// Prevent sending messages to yourself
|
||||||
if (recipientId == userId) return false;
|
if (recipientId == userId) return false;
|
||||||
|
|
||||||
if (!recipient)
|
if (!recipient)
|
||||||
throw new Error(`Could not send message "${message}" to worker id ${recipientId} from user ${userId}`);
|
throw new Error(`Could not send message "${message}" to worker id ${recipientId} from user ${userId}`);
|
||||||
|
|
||||||
if (!isProduction())
|
if (process.env.NODE_ENV == 'test')
|
||||||
message = `[Test:Environment to user ${userId}] ` + message;
|
message = `[Test:Environment to user ${userId}] ` + message;
|
||||||
|
|
||||||
const chat = await models.Chat.create({
|
const chat = await models.Chat.create({
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
const axios = require('axios');
|
const axios = require('axios');
|
||||||
const isProduction = require('vn-loopback/server/boot/isProduction');
|
|
||||||
|
|
||||||
module.exports = Self => {
|
module.exports = Self => {
|
||||||
Self.remoteMethodCtx('sendQueued', {
|
Self.remoteMethodCtx('sendQueued', {
|
||||||
description: 'Send a RocketChat message',
|
description: 'Send a RocketChat message',
|
||||||
|
@ -96,7 +94,7 @@ module.exports = Self => {
|
||||||
* @return {Promise} - The request promise
|
* @return {Promise} - The request promise
|
||||||
*/
|
*/
|
||||||
Self.sendMessage = async function sendMessage(senderFk, recipient, message) {
|
Self.sendMessage = async function sendMessage(senderFk, recipient, message) {
|
||||||
if (!isProduction(false)) {
|
if (process.env.NODE_ENV !== 'production') {
|
||||||
return new Promise(resolve => {
|
return new Promise(resolve => {
|
||||||
return resolve({
|
return resolve({
|
||||||
statusCode: 200,
|
statusCode: 200,
|
||||||
|
@ -151,7 +149,7 @@ module.exports = Self => {
|
||||||
* @return {Promise} - The request promise
|
* @return {Promise} - The request promise
|
||||||
*/
|
*/
|
||||||
Self.getUserStatus = async function getUserStatus(username) {
|
Self.getUserStatus = async function getUserStatus(username) {
|
||||||
if (!isProduction(false)) {
|
if (process.env.NODE_ENV !== 'production') {
|
||||||
return new Promise(resolve => {
|
return new Promise(resolve => {
|
||||||
return resolve({
|
return resolve({
|
||||||
data: {
|
data: {
|
||||||
|
|
|
@ -3,14 +3,14 @@ const {models} = require('vn-loopback/server/server');
|
||||||
describe('Chat send()', () => {
|
describe('Chat send()', () => {
|
||||||
it('should return true as response', async() => {
|
it('should return true as response', async() => {
|
||||||
let ctx = {req: {accessToken: {userId: 1}}};
|
let ctx = {req: {accessToken: {userId: 1}}};
|
||||||
let response = await models.Chat.send(ctx, '@salesperson', 'I changed something');
|
let response = await models.Chat.send(ctx, '@salesPerson', 'I changed something');
|
||||||
|
|
||||||
expect(response).toEqual(true);
|
expect(response).toEqual(true);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should return false as response', async() => {
|
it('should return false as response', async() => {
|
||||||
let ctx = {req: {accessToken: {userId: 18}}};
|
let ctx = {req: {accessToken: {userId: 18}}};
|
||||||
let response = await models.Chat.send(ctx, '@salesperson', 'I changed something');
|
let response = await models.Chat.send(ctx, '@salesPerson', 'I changed something');
|
||||||
|
|
||||||
expect(response).toEqual(false);
|
expect(response).toEqual(false);
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
const UserError = require('vn-loopback/util/user-error');
|
|
||||||
module.exports = Self => {
|
|
||||||
Self.remoteMethodCtx('assign', {
|
|
||||||
description: 'Assign a collection',
|
|
||||||
accessType: 'WRITE',
|
|
||||||
http: {
|
|
||||||
path: `/assign`,
|
|
||||||
verb: 'POST'
|
|
||||||
},
|
|
||||||
returns: {
|
|
||||||
type: ['object'],
|
|
||||||
root: true
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
Self.assign = async(ctx, options) => {
|
|
||||||
const userId = ctx.req.accessToken.userId;
|
|
||||||
const myOptions = {userId};
|
|
||||||
|
|
||||||
if (typeof options == 'object')
|
|
||||||
Object.assign(myOptions, options);
|
|
||||||
|
|
||||||
const randStr = Math.random().toString(36).substring(3);
|
|
||||||
const result = await Self.rawSql(`
|
|
||||||
CALL vn.collection_assign(?, @vCollectionFk);
|
|
||||||
SELECT @vCollectionFk ?
|
|
||||||
`, [userId, randStr], myOptions);
|
|
||||||
|
|
||||||
// Por si entra en SELECT FOR UPDATE una o varias veces
|
|
||||||
const collectionFk = result.find(item => item[0]?.[randStr] !== undefined)?.[0]?.[randStr];
|
|
||||||
|
|
||||||
if (!collectionFk) throw new UserError('There are not picking tickets');
|
|
||||||
await Self.rawSql('CALL vn.collection_printSticker(?, NULL)', [collectionFk], myOptions);
|
|
||||||
|
|
||||||
return collectionFk;
|
|
||||||
};
|
|
||||||
};
|
|
|
@ -1,36 +0,0 @@
|
||||||
const UserError = require('vn-loopback/util/user-error');
|
|
||||||
module.exports = Self => {
|
|
||||||
Self.remoteMethodCtx('assignCollection', {
|
|
||||||
description: 'Assign a collection',
|
|
||||||
accessType: 'WRITE',
|
|
||||||
http: {
|
|
||||||
path: `/assignCollection`,
|
|
||||||
verb: 'POST'
|
|
||||||
},
|
|
||||||
returns: {
|
|
||||||
type: ['object'],
|
|
||||||
root: true
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
Self.assignCollection = async(ctx, options) => {
|
|
||||||
const userId = ctx.req.accessToken.userId;
|
|
||||||
const myOptions = {userId};
|
|
||||||
|
|
||||||
if (typeof options == 'object')
|
|
||||||
Object.assign(myOptions, options);
|
|
||||||
|
|
||||||
const randStr = Math.random().toString(36).substring(3);
|
|
||||||
const result = await Self.rawSql(`
|
|
||||||
CALL vn.collection_getAssigned(?, @vCollectionFk);
|
|
||||||
SELECT @vCollectionFk ?
|
|
||||||
`, [userId, randStr], myOptions);
|
|
||||||
|
|
||||||
const collectionFk = result.find(item => item[0]?.[randStr] !== undefined)?.[0]?.[randStr];
|
|
||||||
|
|
||||||
if (!collectionFk) throw new UserError('There are not picking tickets');
|
|
||||||
await Self.rawSql('CALL vn.collection_printSticker(?, NULL)', [collectionFk], myOptions);
|
|
||||||
|
|
||||||
return collectionFk;
|
|
||||||
};
|
|
||||||
};
|
|
|
@ -1,142 +0,0 @@
|
||||||
module.exports = Self => {
|
|
||||||
Self.remoteMethodCtx('getSales', {
|
|
||||||
description: 'Get sales from ticket, collection or sectorCollection',
|
|
||||||
accessType: 'READ',
|
|
||||||
accepts: [
|
|
||||||
{
|
|
||||||
arg: 'collectionOrTicketFk',
|
|
||||||
type: 'number',
|
|
||||||
required: true
|
|
||||||
}, {
|
|
||||||
arg: 'print',
|
|
||||||
type: 'boolean',
|
|
||||||
required: true
|
|
||||||
}, {
|
|
||||||
arg: 'source',
|
|
||||||
type: 'string',
|
|
||||||
required: true
|
|
||||||
},
|
|
||||||
|
|
||||||
],
|
|
||||||
returns: {
|
|
||||||
type: 'Object',
|
|
||||||
root: true
|
|
||||||
},
|
|
||||||
http: {
|
|
||||||
path: `/getSales`,
|
|
||||||
verb: 'GET'
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
Self.getSales = async(ctx, collectionOrTicketFk, print, source, options) => {
|
|
||||||
const userId = ctx.req.accessToken.userId;
|
|
||||||
const myOptions = {userId};
|
|
||||||
|
|
||||||
if (typeof options == 'object')
|
|
||||||
Object.assign(myOptions, options);
|
|
||||||
|
|
||||||
const [{id}] = await Self.rawSql('SELECT vn.ticket_get(?) as id',
|
|
||||||
[collectionOrTicketFk],
|
|
||||||
myOptions);
|
|
||||||
|
|
||||||
const [tickets] = await Self.rawSql('CALL vn.collection_getTickets(?)', [id], myOptions);
|
|
||||||
|
|
||||||
if (source) {
|
|
||||||
await Self.rawSql(
|
|
||||||
'CALL vn.ticketStateToday_setState(?,?)', [id, source], myOptions
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
const [sales] = await Self.rawSql('CALL vn.sale_getFromTicketOrCollection(?)',
|
|
||||||
[id], myOptions);
|
|
||||||
|
|
||||||
const isPicker = source != 'CHECKER';
|
|
||||||
const [placements] = await Self.rawSql('CALL vn.collectionPlacement_get(?, ?)',
|
|
||||||
[id, isPicker], myOptions
|
|
||||||
);
|
|
||||||
|
|
||||||
if (print) await Self.rawSql('CALL vn.collection_printSticker(?,NULL)', [id], myOptions);
|
|
||||||
|
|
||||||
return getCollection(id, tickets, sales, placements, myOptions);
|
|
||||||
};
|
|
||||||
|
|
||||||
async function getCollection(id, tickets, sales, placements, options) {
|
|
||||||
const collection = {
|
|
||||||
collectionFk: id,
|
|
||||||
tickets: [],
|
|
||||||
};
|
|
||||||
for (let ticket of tickets) {
|
|
||||||
const {ticketFk} = ticket;
|
|
||||||
ticket.sales = [];
|
|
||||||
|
|
||||||
const barcodes = await getBarcodes(ticketFk, options);
|
|
||||||
await Self.rawSql(
|
|
||||||
'CALL util.log_add(?, ?, ?, ?, ?, ?, ?, ?)',
|
|
||||||
['vn', 'ticket', 'Ticket', ticketFk, ticketFk, 'select', null, null],
|
|
||||||
options
|
|
||||||
);
|
|
||||||
|
|
||||||
for (let sale of sales) {
|
|
||||||
if (sale.ticketFk == ticketFk) {
|
|
||||||
sale.placements = [];
|
|
||||||
for (const salePlacement of placements) {
|
|
||||||
if (salePlacement.saleFk == sale.saleFk && salePlacement.order) {
|
|
||||||
const placement = {
|
|
||||||
saleFk: salePlacement.saleFk,
|
|
||||||
itemFk: salePlacement.itemFk,
|
|
||||||
placement: salePlacement.placement,
|
|
||||||
shelving: salePlacement.shelving,
|
|
||||||
created: salePlacement.created,
|
|
||||||
visible: salePlacement.visible,
|
|
||||||
order: salePlacement.order,
|
|
||||||
grouping: salePlacement.grouping,
|
|
||||||
priority: salePlacement.priority,
|
|
||||||
saleOrder: salePlacement.saleOrder,
|
|
||||||
isPreviousPrepared: salePlacement.isPreviousPrepared,
|
|
||||||
itemShelvingSaleFk: salePlacement.itemShelvingSaleFk,
|
|
||||||
ticketFk: salePlacement.ticketFk,
|
|
||||||
id: salePlacement.id
|
|
||||||
};
|
|
||||||
sale.placements.push(placement);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
sale.barcodes = [];
|
|
||||||
for (const barcode of barcodes) {
|
|
||||||
if (barcode.movementId == sale.saleFk) {
|
|
||||||
if (barcode.code) {
|
|
||||||
sale.barcodes.push(barcode.code);
|
|
||||||
sale.barcodes.push(`0 ${barcode.code}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (barcode.id) {
|
|
||||||
sale.barcodes.push(barcode.id);
|
|
||||||
sale.barcodes.push(`0 ${barcode.id}`);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ticket.sales.push(sale);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
collection.tickets.push(ticket);
|
|
||||||
}
|
|
||||||
|
|
||||||
return collection;
|
|
||||||
}
|
|
||||||
|
|
||||||
async function getBarcodes(ticketId, options) {
|
|
||||||
const query =
|
|
||||||
`SELECT s.id movementId,
|
|
||||||
b.code,
|
|
||||||
c.id
|
|
||||||
FROM vn.sale s
|
|
||||||
LEFT JOIN vn.itemBarcode b ON b.itemFk = s.itemFk
|
|
||||||
LEFT JOIN vn.buy c ON c.itemFk = s.itemFk
|
|
||||||
LEFT JOIN vn.entry e ON e.id = c.entryFk
|
|
||||||
LEFT JOIN vn.travel tr ON tr.id = e.travelFk
|
|
||||||
WHERE s.ticketFk = ?
|
|
||||||
AND tr.landed >= DATE_SUB(CURDATE(), INTERVAL 1 YEAR)`;
|
|
||||||
return Self.rawSql(query, [ticketId], options);
|
|
||||||
}
|
|
||||||
};
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
module.exports = Self => {
|
||||||
|
Self.remoteMethod('getSectors', {
|
||||||
|
description: 'Get all sectors',
|
||||||
|
accessType: 'READ',
|
||||||
|
returns: {
|
||||||
|
type: 'Object',
|
||||||
|
root: true
|
||||||
|
},
|
||||||
|
http: {
|
||||||
|
path: `/getSectors`,
|
||||||
|
verb: 'GET'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
Self.getSectors = async() => {
|
||||||
|
const query = `CALL vn.sector_get()`;
|
||||||
|
const [result] = await Self.rawSql(query);
|
||||||
|
return result;
|
||||||
|
};
|
||||||
|
};
|
|
@ -1,179 +0,0 @@
|
||||||
|
|
||||||
module.exports = Self => {
|
|
||||||
Self.remoteMethodCtx('getTickets', {
|
|
||||||
description: 'Make a new collection of tickets',
|
|
||||||
accessType: 'WRITE',
|
|
||||||
accepts: [{
|
|
||||||
arg: 'id',
|
|
||||||
type: 'number',
|
|
||||||
description: 'The collection id',
|
|
||||||
required: true,
|
|
||||||
http: {source: 'path'}
|
|
||||||
}, {
|
|
||||||
arg: 'print',
|
|
||||||
type: 'boolean',
|
|
||||||
description: 'True if you want to print'
|
|
||||||
}],
|
|
||||||
returns: {
|
|
||||||
type: ['object'],
|
|
||||||
root: true
|
|
||||||
},
|
|
||||||
http: {
|
|
||||||
path: `/:id/getTickets`,
|
|
||||||
verb: 'POST'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
Self.getTickets = async(ctx, id, print, options) => {
|
|
||||||
const userId = ctx.req.accessToken.userId;
|
|
||||||
const url = await Self.app.models.Url.getUrl();
|
|
||||||
const $t = ctx.req.__;
|
|
||||||
const myOptions = {};
|
|
||||||
|
|
||||||
if (typeof options == 'object')
|
|
||||||
Object.assign(myOptions, options);
|
|
||||||
|
|
||||||
myOptions.userId = userId;
|
|
||||||
|
|
||||||
const promises = [];
|
|
||||||
const [tickets] = await Self.rawSql(`CALL vn.collection_getTickets(?)`, [id], myOptions);
|
|
||||||
|
|
||||||
const sales = await Self.rawSql(`
|
|
||||||
SELECT s.ticketFk,
|
|
||||||
sgd.saleGroupFk,
|
|
||||||
s.id saleFk,
|
|
||||||
s.itemFk,
|
|
||||||
i.longName,
|
|
||||||
i.size,
|
|
||||||
ic.color,
|
|
||||||
o.code origin,
|
|
||||||
ish.packing,
|
|
||||||
ish.grouping,
|
|
||||||
s.isAdded,
|
|
||||||
s.originalQuantity,
|
|
||||||
s.quantity saleQuantity,
|
|
||||||
iss.quantity reservedQuantity,
|
|
||||||
SUM(iss.quantity) OVER (PARTITION BY s.id ORDER BY ish.id) accumulatedQuantity,
|
|
||||||
ROW_NUMBER () OVER (PARTITION BY s.id ORDER BY pickingOrder) currentItemShelving,
|
|
||||||
COUNT(*) OVER (PARTITION BY s.id ORDER BY s.id) totalItemShelving,
|
|
||||||
sh.code,
|
|
||||||
p2.code parkingCodePrevia,
|
|
||||||
p2.pickingOrder pickingOrderPrevia,
|
|
||||||
p.code parkingCode,
|
|
||||||
p.pickingOrder pickingOrder,
|
|
||||||
iss.id itemShelvingSaleFk,
|
|
||||||
iss.isPicked,
|
|
||||||
iss.itemShelvingFk
|
|
||||||
FROM ticketCollection tc
|
|
||||||
LEFT JOIN collection c ON c.id = tc.collectionFk
|
|
||||||
JOIN sale s ON s.ticketFk = tc.ticketFk
|
|
||||||
LEFT JOIN saleGroupDetail sgd ON sgd.saleFk = s.id
|
|
||||||
LEFT JOIN saleGroup sg ON sg.id = sgd.saleGroupFk
|
|
||||||
LEFT JOIN parking p2 ON p2.id = sg.parkingFk
|
|
||||||
JOIN item i ON i.id = s.itemFk
|
|
||||||
JOIN itemShelvingSale iss ON iss.saleFk = s.id
|
|
||||||
LEFT JOIN itemShelving ish ON ish.id = iss.itemShelvingFk
|
|
||||||
LEFT JOIN shelving sh ON sh.id = ish.shelvingFk
|
|
||||||
LEFT JOIN parking p ON p.id = sh.parkingFk
|
|
||||||
LEFT JOIN itemColor ic ON ic.itemFk = s.itemFk
|
|
||||||
LEFT JOIN origin o ON o.id = i.originFk
|
|
||||||
WHERE tc.collectionFk = ?
|
|
||||||
GROUP BY s.id, ish.id, p.code, p2.code
|
|
||||||
UNION ALL
|
|
||||||
SELECT s.ticketFk,
|
|
||||||
sgd.saleGroupFk,
|
|
||||||
s.id saleFk,
|
|
||||||
s.itemFk,
|
|
||||||
i.longName,
|
|
||||||
i.size,
|
|
||||||
ic.color,
|
|
||||||
o.code origin,
|
|
||||||
ish.packing,
|
|
||||||
ish.grouping,
|
|
||||||
s.isAdded,
|
|
||||||
s.originalQuantity,
|
|
||||||
s.quantity,
|
|
||||||
iss.quantity,
|
|
||||||
SUM(iss.quantity) OVER (PARTITION BY s.id ORDER BY ish.id),
|
|
||||||
ROW_NUMBER () OVER (PARTITION BY s.id ORDER BY p.pickingOrder),
|
|
||||||
COUNT(*) OVER (PARTITION BY s.id ORDER BY s.id) ,
|
|
||||||
sh.code,
|
|
||||||
p2.code,
|
|
||||||
p2.pickingOrder,
|
|
||||||
p.code,
|
|
||||||
p.pickingOrder,
|
|
||||||
iss.id itemShelvingSaleFk,
|
|
||||||
iss.isPicked,
|
|
||||||
iss.itemShelvingFk
|
|
||||||
FROM sectorCollection sc
|
|
||||||
JOIN sectorCollectionSaleGroup ss ON ss.sectorCollectionFk = sc.id
|
|
||||||
JOIN saleGroup sg ON sg.id = ss.saleGroupFk
|
|
||||||
LEFT JOIN saleGroupDetail sgd ON sgd.saleGroupFk = sg.id
|
|
||||||
JOIN sale s ON s.id = sgd.saleFk
|
|
||||||
LEFT JOIN parking p2 ON p2.id = sg.parkingFk
|
|
||||||
JOIN item i ON i.id = s.itemFk
|
|
||||||
JOIN itemShelvingSale iss ON iss.saleFk = s.id
|
|
||||||
LEFT JOIN itemShelving ish ON ish.id = iss.itemShelvingFk
|
|
||||||
LEFT JOIN shelving sh ON sh.id = ish.shelvingFk
|
|
||||||
LEFT JOIN parking p ON p.id = sh.parkingFk
|
|
||||||
LEFT JOIN itemColor ic ON ic.itemFk = s.itemFk
|
|
||||||
LEFT JOIN origin o ON o.id = i.originFk
|
|
||||||
WHERE sc.id = ?
|
|
||||||
AND sgd.saleGroupFk
|
|
||||||
GROUP BY s.id, ish.id, p.code, p2.code`, [id, id], myOptions);
|
|
||||||
if (print)
|
|
||||||
await Self.rawSql(`CALL vn.collection_printSticker(?, ?)`, [id, null], myOptions);
|
|
||||||
|
|
||||||
const collection = {collectionFk: id, tickets: []};
|
|
||||||
|
|
||||||
if (tickets && tickets.length) {
|
|
||||||
for (const ticket of tickets) {
|
|
||||||
const ticketId = ticket.ticketFk;
|
|
||||||
if (ticket.observation) {
|
|
||||||
for (observation of ticket.observation?.split(' ')) {
|
|
||||||
if (['#', '@'].includes(observation.charAt(0))) {
|
|
||||||
promises.push(Self.app.models.Chat.send(ctx, observation,
|
|
||||||
$t('The ticket is in preparation', {
|
|
||||||
ticketId: ticketId,
|
|
||||||
ticketUrl: `${url}ticket/${ticketId}/summary`,
|
|
||||||
salesPersonId: ticket.salesPersonFk
|
|
||||||
})));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (sales && sales.length) {
|
|
||||||
const barcodes = await Self.rawSql(`
|
|
||||||
SELECT s.id saleFk, b.code, c.id
|
|
||||||
FROM sale s
|
|
||||||
LEFT JOIN itemBarcode b ON b.itemFk = s.itemFk
|
|
||||||
LEFT JOIN buy c ON c.itemFk = s.itemFk
|
|
||||||
LEFT JOIN entry e ON e.id = c.entryFk
|
|
||||||
LEFT JOIN travel tr ON tr.id = e.travelFk
|
|
||||||
WHERE s.ticketFk = ?
|
|
||||||
AND tr.landed >= util.VN_CURDATE() - INTERVAL 1 YEAR`,
|
|
||||||
[ticketId], myOptions);
|
|
||||||
ticket.sales = [];
|
|
||||||
for (const sale of sales) {
|
|
||||||
if (sale.ticketFk === ticketId) {
|
|
||||||
sale.Barcodes = [];
|
|
||||||
if (barcodes && barcodes.length) {
|
|
||||||
for (const barcode of barcodes) {
|
|
||||||
if (barcode.saleFk === sale.saleFk) {
|
|
||||||
for (const prop in barcode) {
|
|
||||||
if (['id', 'code'].includes(prop) && barcode[prop])
|
|
||||||
sale.Barcodes.push(barcode[prop].toString(), '0' + barcode[prop]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
ticket.sales.push(sale);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
collection.tickets.push(ticket);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
await Promise.all(promises);
|
|
||||||
return collection;
|
|
||||||
};
|
|
||||||
};
|
|
|
@ -0,0 +1,133 @@
|
||||||
|
module.exports = Self => {
|
||||||
|
Self.remoteMethodCtx('newCollection', {
|
||||||
|
description: 'Make a new collection of tickets',
|
||||||
|
accessType: 'WRITE',
|
||||||
|
accepts: [{
|
||||||
|
arg: 'collectionFk',
|
||||||
|
type: 'Number',
|
||||||
|
required: false,
|
||||||
|
description: 'The collection id'
|
||||||
|
}, {
|
||||||
|
arg: 'sectorFk',
|
||||||
|
type: 'Number',
|
||||||
|
required: true,
|
||||||
|
description: 'The sector of worker'
|
||||||
|
}, {
|
||||||
|
arg: 'vWagons',
|
||||||
|
type: 'Number',
|
||||||
|
required: true,
|
||||||
|
description: 'The number of wagons'
|
||||||
|
}],
|
||||||
|
returns: {
|
||||||
|
type: 'Object',
|
||||||
|
root: true
|
||||||
|
},
|
||||||
|
http: {
|
||||||
|
path: `/newCollection`,
|
||||||
|
verb: 'POST'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
Self.newCollection = async(ctx, collectionFk, sectorFk, vWagons) => {
|
||||||
|
let query = '';
|
||||||
|
|
||||||
|
if (!collectionFk) {
|
||||||
|
const userId = ctx.req.accessToken.userId;
|
||||||
|
query = `CALL vn.collectionTrain_newBeta(?,?,?)`;
|
||||||
|
const [result] = await Self.rawSql(query, [sectorFk, vWagons, userId]);
|
||||||
|
if (result.length == 0)
|
||||||
|
throw new Error(`No collections for today`);
|
||||||
|
|
||||||
|
collectionFk = result[0].vCollectionFk;
|
||||||
|
}
|
||||||
|
|
||||||
|
query = `CALL vn.collectionTicket_get(?)`;
|
||||||
|
const [tickets] = await Self.rawSql(query, [collectionFk]);
|
||||||
|
|
||||||
|
query = `CALL vn.collectionSale_get(?)`;
|
||||||
|
const [sales] = await Self.rawSql(query, [collectionFk]);
|
||||||
|
|
||||||
|
query = `CALL vn.collectionPlacement_get(?)`;
|
||||||
|
const [placements] = await Self.rawSql(query, [collectionFk]);
|
||||||
|
|
||||||
|
query = `CALL vn.collectionSticker_print(?,?)`;
|
||||||
|
await Self.rawSql(query, [collectionFk, sectorFk]);
|
||||||
|
|
||||||
|
return makeCollection(tickets, sales, placements, collectionFk);
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns a collection json
|
||||||
|
* @param {*} tickets - Request tickets
|
||||||
|
* @param {*} sales - Request sales
|
||||||
|
* @param {*} placements - Request placements
|
||||||
|
* @param {*} collectionFk - Request placements
|
||||||
|
* @return {Object} Collection JSON
|
||||||
|
*/
|
||||||
|
async function makeCollection(tickets, sales, placements, collectionFk) {
|
||||||
|
let collection = [];
|
||||||
|
|
||||||
|
for (let i = 0; i < tickets.length; i++) {
|
||||||
|
let ticket = {};
|
||||||
|
ticket['ticketFk'] = tickets[i]['ticketFk'];
|
||||||
|
ticket['level'] = tickets[i]['level'];
|
||||||
|
ticket['agencyName'] = tickets[i]['agencyName'];
|
||||||
|
ticket['warehouseFk'] = tickets[i]['warehouseFk'];
|
||||||
|
ticket['salesPersonFk'] = tickets[i]['salesPersonFk'];
|
||||||
|
|
||||||
|
let ticketSales = [];
|
||||||
|
|
||||||
|
for (let x = 0; x < sales.length; x++) {
|
||||||
|
if (sales[x]['ticketFk'] == ticket['ticketFk']) {
|
||||||
|
let sale = {};
|
||||||
|
sale['collectionFk'] = collectionFk;
|
||||||
|
sale['ticketFk'] = sales[x]['ticketFk'];
|
||||||
|
sale['saleFk'] = sales[x]['saleFk'];
|
||||||
|
sale['itemFk'] = sales[x]['itemFk'];
|
||||||
|
sale['quantity'] = sales[x]['quantity'];
|
||||||
|
if (sales[x]['quantityPicked'] != null)
|
||||||
|
sale['quantityPicked'] = sales[x]['quantityPicked'];
|
||||||
|
else
|
||||||
|
sale['quantityPicked'] = 0;
|
||||||
|
sale['longName'] = sales[x]['longName'];
|
||||||
|
sale['size'] = sales[x]['size'];
|
||||||
|
sale['color'] = sales[x]['color'];
|
||||||
|
sale['discount'] = sales[x]['discount'];
|
||||||
|
sale['price'] = sales[x]['price'];
|
||||||
|
sale['stems'] = sales[x]['stems'];
|
||||||
|
sale['category'] = sales[x]['category'];
|
||||||
|
sale['origin'] = sales[x]['origin'];
|
||||||
|
sale['clientFk'] = sales[x]['clientFk'];
|
||||||
|
sale['productor'] = sales[x]['productor'];
|
||||||
|
sale['reserved'] = sales[x]['reserved'];
|
||||||
|
sale['isPreviousPrepared'] = sales[x]['isPreviousPrepared'];
|
||||||
|
sale['isPrepared'] = sales[x]['isPrepared'];
|
||||||
|
sale['isControlled'] = sales[x]['isControlled'];
|
||||||
|
|
||||||
|
let salePlacements = [];
|
||||||
|
|
||||||
|
for (let z = 0; z < placements.length; z++) {
|
||||||
|
if (placements[z]['saleFk'] == sale['saleFk']) {
|
||||||
|
let placement = {};
|
||||||
|
placement['saleFk'] = placements[z]['saleFk'];
|
||||||
|
placement['itemFk'] = placements[z]['itemFk'];
|
||||||
|
placement['placement'] = placements[z]['placement'];
|
||||||
|
placement['shelving'] = placements[z]['shelving'];
|
||||||
|
placement['created'] = placements[z]['created'];
|
||||||
|
placement['visible'] = placements[z]['visible'];
|
||||||
|
placement['order'] = placements[z]['order'];
|
||||||
|
placement['grouping'] = placements[z]['grouping'];
|
||||||
|
salePlacements.push(placement);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
sale['placements'] = salePlacements;
|
||||||
|
ticketSales.push(sale);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
ticket['sales'] = ticketSales;
|
||||||
|
collection.push(ticket);
|
||||||
|
}
|
||||||
|
|
||||||
|
return collection;
|
||||||
|
}
|
||||||
|
};
|
|
@ -40,7 +40,8 @@ module.exports = Self => {
|
||||||
try {
|
try {
|
||||||
const sale = await models.Sale.findById(saleId, null, myOptions);
|
const sale = await models.Sale.findById(saleId, null, myOptions);
|
||||||
const saleUpdated = await sale.updateAttributes({
|
const saleUpdated = await sale.updateAttributes({
|
||||||
quantity
|
originalQuantity: sale.quantity,
|
||||||
|
quantity: quantity
|
||||||
}, myOptions);
|
}, myOptions);
|
||||||
|
|
||||||
if (tx) await tx.commit();
|
if (tx) await tx.commit();
|
||||||
|
|
|
@ -1,39 +0,0 @@
|
||||||
const models = require('vn-loopback/server/server').models;
|
|
||||||
const LoopBackContext = require('loopback-context');
|
|
||||||
|
|
||||||
describe('ticket assign()', () => {
|
|
||||||
let ctx;
|
|
||||||
let options;
|
|
||||||
let tx;
|
|
||||||
beforeEach(async() => {
|
|
||||||
ctx = {
|
|
||||||
req: {
|
|
||||||
accessToken: {userId: 1106},
|
|
||||||
headers: {origin: 'http://localhost'},
|
|
||||||
__: value => value
|
|
||||||
},
|
|
||||||
args: {}
|
|
||||||
};
|
|
||||||
|
|
||||||
spyOn(LoopBackContext, 'getCurrentContext').and.returnValue({
|
|
||||||
active: ctx.req
|
|
||||||
});
|
|
||||||
|
|
||||||
options = {transaction: tx};
|
|
||||||
tx = await models.Sale.beginTransaction({});
|
|
||||||
options.transaction = tx;
|
|
||||||
});
|
|
||||||
|
|
||||||
afterEach(async() => {
|
|
||||||
await tx.rollback();
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should throw an error when there are no picking tickets', async() => {
|
|
||||||
try {
|
|
||||||
await models.Collection.assign(ctx, options);
|
|
||||||
fail('Expected an error to be thrown, but none was thrown.');
|
|
||||||
} catch (e) {
|
|
||||||
expect(e.message).toEqual('There are not picking tickets');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
|
@ -1,36 +0,0 @@
|
||||||
const models = require('vn-loopback/server/server').models;
|
|
||||||
const LoopBackContext = require('loopback-context');
|
|
||||||
|
|
||||||
describe('ticket assignCollection()', () => {
|
|
||||||
let ctx;
|
|
||||||
let options;
|
|
||||||
let tx;
|
|
||||||
beforeEach(async() => {
|
|
||||||
ctx = {
|
|
||||||
req: {
|
|
||||||
accessToken: {userId: 1106},
|
|
||||||
headers: {origin: 'http://localhost'},
|
|
||||||
__: value => value
|
|
||||||
},
|
|
||||||
args: {}
|
|
||||||
};
|
|
||||||
|
|
||||||
spyOn(LoopBackContext, 'getCurrentContext').and.returnValue({active: ctx.req});
|
|
||||||
|
|
||||||
options = {transaction: tx};
|
|
||||||
tx = await models.Sale.beginTransaction({});
|
|
||||||
options.transaction = tx;
|
|
||||||
});
|
|
||||||
|
|
||||||
afterEach(async() => {
|
|
||||||
if (tx) await tx.rollback();
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should throw an error when there is not picking tickets', async() => {
|
|
||||||
try {
|
|
||||||
await models.Collection.assignCollection(ctx, options);
|
|
||||||
} catch (e) {
|
|
||||||
expect(e.message).toEqual('There are not picking tickets');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
|
@ -1,54 +0,0 @@
|
||||||
const {models} = require('vn-loopback/server/server');
|
|
||||||
|
|
||||||
describe('collection getSales()', () => {
|
|
||||||
const collectionOrTicketFk = 999999;
|
|
||||||
const print = true;
|
|
||||||
const source = 'CHECKER';
|
|
||||||
const ctx = beforeAll.getCtx();
|
|
||||||
|
|
||||||
it('should return a collection with tickets, placements and barcodes settled correctly', async() => {
|
|
||||||
const tx = await models.Collection.beginTransaction({});
|
|
||||||
const options = {transaction: tx};
|
|
||||||
try {
|
|
||||||
const collection = await models.Collection.getSales(ctx,
|
|
||||||
collectionOrTicketFk, print, source, options);
|
|
||||||
|
|
||||||
const [firstTicket] = collection.tickets;
|
|
||||||
const [firstSale] = firstTicket.sales;
|
|
||||||
const [firstPlacement] = firstSale.placements;
|
|
||||||
|
|
||||||
expect(collection.tickets.length).toBeTruthy();
|
|
||||||
expect(collection.collectionFk).toEqual(firstTicket.ticketFk);
|
|
||||||
|
|
||||||
expect(firstSale.ticketFk).toEqual(firstTicket.ticketFk);
|
|
||||||
expect(firstSale.placements.length).toBeTruthy();
|
|
||||||
expect(firstSale.barcodes.length).toBeTruthy();
|
|
||||||
|
|
||||||
expect(firstSale.saleFk).toEqual(firstPlacement.saleFk);
|
|
||||||
await tx.rollback();
|
|
||||||
} catch (e) {
|
|
||||||
await tx.rollback();
|
|
||||||
throw e;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should print a sticker', async() => {
|
|
||||||
const tx = await models.Collection.beginTransaction({});
|
|
||||||
const options = {transaction: tx};
|
|
||||||
const query = 'SELECT * FROM printQueue pq JOIN printQueueArgs pqa ON pqa.printQueueFk = pq.id';
|
|
||||||
try {
|
|
||||||
const printQueueBefore = await models.Collection.rawSql(
|
|
||||||
query, [], options);
|
|
||||||
await models.Collection.getSales(ctx,
|
|
||||||
collectionOrTicketFk, true, source, options);
|
|
||||||
const printQueueAfter = await models.Collection.rawSql(
|
|
||||||
query, [], options);
|
|
||||||
|
|
||||||
expect(printQueueAfter.length).toEqual(printQueueBefore.length + 1);
|
|
||||||
await tx.rollback();
|
|
||||||
} catch (e) {
|
|
||||||
await tx.rollback();
|
|
||||||
throw e;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
const {models} = require('vn-loopback/server/server');
|
||||||
|
|
||||||
|
describe('getSectors()', () => {
|
||||||
|
it('return list of sectors', async() => {
|
||||||
|
let response = await models.Collection.getSectors();
|
||||||
|
|
||||||
|
expect(response.length).toBeGreaterThan(0);
|
||||||
|
expect(response[0].id).toEqual(1);
|
||||||
|
expect(response[0].description).toEqual('First sector');
|
||||||
|
});
|
||||||
|
});
|
|
@ -1,31 +0,0 @@
|
||||||
const models = require('vn-loopback/server/server').models;
|
|
||||||
|
|
||||||
describe('collection getTickets()', () => {
|
|
||||||
const ctx = beforeAll.getCtx();
|
|
||||||
|
|
||||||
it('should get tickets, sales and barcodes from collection', async() => {
|
|
||||||
const tx = await models.Collection.beginTransaction({});
|
|
||||||
|
|
||||||
try {
|
|
||||||
const options = {transaction: tx};
|
|
||||||
const collectionId = 1;
|
|
||||||
|
|
||||||
const collectionTickets = await models.Collection.getTickets(ctx, collectionId, null, options);
|
|
||||||
|
|
||||||
expect(collectionTickets.collectionFk).toEqual(collectionId);
|
|
||||||
expect(collectionTickets.tickets.length).toEqual(3);
|
|
||||||
expect(collectionTickets.tickets[0].ticketFk).toEqual(1);
|
|
||||||
expect(collectionTickets.tickets[1].ticketFk).toEqual(2);
|
|
||||||
expect(collectionTickets.tickets[2].ticketFk).toEqual(23);
|
|
||||||
expect(collectionTickets.tickets[0].sales[0].ticketFk).toEqual(1);
|
|
||||||
expect(collectionTickets.tickets[1].sales.length).toEqual(0);
|
|
||||||
expect(collectionTickets.tickets[2].sales.length).toEqual(0);
|
|
||||||
expect(collectionTickets.tickets[0].sales[0].Barcodes.length).toBeTruthy();
|
|
||||||
|
|
||||||
await tx.rollback();
|
|
||||||
} catch (e) {
|
|
||||||
await tx.rollback();
|
|
||||||
throw e;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
const {models} = require('vn-loopback/server/server');
|
||||||
|
|
||||||
|
describe('newCollection()', () => {
|
||||||
|
it('should return a new collection', async() => {
|
||||||
|
pending('#3400 analizar que hacer con rutas de back collection');
|
||||||
|
let ctx = {req: {accessToken: {userId: 1106}}};
|
||||||
|
let response = await models.Collection.newCollection(ctx, 1, 1, 1);
|
||||||
|
|
||||||
|
expect(response.length).toBeGreaterThan(0);
|
||||||
|
expect(response[0].ticketFk).toEqual(2);
|
||||||
|
});
|
||||||
|
});
|
|
@ -1,18 +1,23 @@
|
||||||
const models = require('vn-loopback/server/server').models;
|
const models = require('vn-loopback/server/server').models;
|
||||||
|
const LoopBackContext = require('loopback-context');
|
||||||
|
|
||||||
describe('setSaleQuantity()', () => {
|
describe('setSaleQuantity()', () => {
|
||||||
beforeAll.mockLoopBackContext();
|
beforeAll(async() => {
|
||||||
|
const activeCtx = {
|
||||||
|
accessToken: {userId: 9},
|
||||||
|
http: {
|
||||||
|
req: {
|
||||||
|
headers: {origin: 'http://localhost'}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
spyOn(LoopBackContext, 'getCurrentContext').and.returnValue({
|
||||||
|
active: activeCtx
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
it('should change quantity sale', async() => {
|
it('should change quantity sale', async() => {
|
||||||
const tx = await models.Ticket.beginTransaction({});
|
const tx = await models.Ticket.beginTransaction({});
|
||||||
spyOn(models.Sale, 'rawSql').and.callFake((sqlStatement, params, options) => {
|
|
||||||
if (sqlStatement.includes('catalog_calcFromItem')) {
|
|
||||||
sqlStatement = `CREATE OR REPLACE TEMPORARY TABLE tmp.ticketCalculateItem ENGINE = MEMORY
|
|
||||||
SELECT 100 as available;`;
|
|
||||||
params = null;
|
|
||||||
}
|
|
||||||
return models.Ticket.rawSql(sqlStatement, params, options);
|
|
||||||
});
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const options = {transaction: tx};
|
const options = {transaction: tx};
|
||||||
|
@ -25,7 +30,7 @@ describe('setSaleQuantity()', () => {
|
||||||
await models.Collection.setSaleQuantity(saleId, newQuantity, options);
|
await models.Collection.setSaleQuantity(saleId, newQuantity, options);
|
||||||
const updateSale = await models.Sale.findById(saleId, null, options);
|
const updateSale = await models.Sale.findById(saleId, null, options);
|
||||||
|
|
||||||
expect(updateSale.quantity).not.toEqual(originalSale.quantity);
|
expect(updateSale.originalQuantity).toEqual(originalSale.quantity);
|
||||||
expect(updateSale.quantity).toEqual(newQuantity);
|
expect(updateSale.quantity).toEqual(newQuantity);
|
||||||
|
|
||||||
await tx.rollback();
|
await tx.rollback();
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
const UserError = require('vn-loopback/util/user-error');
|
const UserError = require('vn-loopback/util/user-error');
|
||||||
const fs = require('fs-extra');
|
const fs = require('fs-extra');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const isProduction = require('vn-loopback/server/boot/isProduction');
|
|
||||||
|
|
||||||
module.exports = Self => {
|
module.exports = Self => {
|
||||||
Self.remoteMethod('deleteTrashFiles', {
|
Self.remoteMethod('deleteTrashFiles', {
|
||||||
|
@ -23,7 +22,7 @@ module.exports = Self => {
|
||||||
if (typeof options == 'object')
|
if (typeof options == 'object')
|
||||||
Object.assign(myOptions, options);
|
Object.assign(myOptions, options);
|
||||||
|
|
||||||
if (!isProduction())
|
if (process.env.NODE_ENV == 'test')
|
||||||
throw new UserError(`Action not allowed on the test environment`);
|
throw new UserError(`Action not allowed on the test environment`);
|
||||||
|
|
||||||
const models = Self.app.models;
|
const models = Self.app.models;
|
||||||
|
|
|
@ -29,8 +29,7 @@ module.exports = Self => {
|
||||||
http: {
|
http: {
|
||||||
path: `/:id/downloadFile`,
|
path: `/:id/downloadFile`,
|
||||||
verb: 'GET'
|
verb: 'GET'
|
||||||
},
|
}
|
||||||
accessScopes: ['DEFAULT', 'read:multimedia']
|
|
||||||
});
|
});
|
||||||
|
|
||||||
Self.downloadFile = async function(ctx, id) {
|
Self.downloadFile = async function(ctx, id) {
|
||||||
|
|
|
@ -22,8 +22,8 @@ module.exports = Self => {
|
||||||
|
|
||||||
Self.removeFile = async(ctx, id, options) => {
|
Self.removeFile = async(ctx, id, options) => {
|
||||||
const models = Self.app.models;
|
const models = Self.app.models;
|
||||||
const myOptions = {};
|
|
||||||
let tx;
|
let tx;
|
||||||
|
const myOptions = {};
|
||||||
|
|
||||||
if (typeof options == 'object')
|
if (typeof options == 'object')
|
||||||
Object.assign(myOptions, options);
|
Object.assign(myOptions, options);
|
||||||
|
|
|
@ -38,7 +38,7 @@ module.exports = Self => {
|
||||||
{
|
{
|
||||||
arg: 'hasFile',
|
arg: 'hasFile',
|
||||||
type: 'Boolean',
|
type: 'Boolean',
|
||||||
description: 'True if has the original in paper'
|
description: 'True if has an attached file'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
arg: 'hasFileAttached',
|
arg: 'hasFileAttached',
|
||||||
|
|
|
@ -49,6 +49,7 @@ module.exports = Self => {
|
||||||
Self.uploadFile = async(ctx, options) => {
|
Self.uploadFile = async(ctx, options) => {
|
||||||
const models = Self.app.models;
|
const models = Self.app.models;
|
||||||
const TempContainer = models.TempContainer;
|
const TempContainer = models.TempContainer;
|
||||||
|
const DmsContainer = models.DmsContainer;
|
||||||
const fileOptions = {};
|
const fileOptions = {};
|
||||||
const args = ctx.args;
|
const args = ctx.args;
|
||||||
|
|
||||||
|
@ -78,21 +79,19 @@ module.exports = Self => {
|
||||||
|
|
||||||
const addedDms = [];
|
const addedDms = [];
|
||||||
for (const uploadedFile of files) {
|
for (const uploadedFile of files) {
|
||||||
|
const newDms = await createDms(ctx, uploadedFile, myOptions);
|
||||||
|
const pathHash = DmsContainer.getHash(newDms.id);
|
||||||
|
|
||||||
const file = await TempContainer.getFile(tempContainer.name, uploadedFile.name);
|
const file = await TempContainer.getFile(tempContainer.name, uploadedFile.name);
|
||||||
srcFile = path.join(file.client.root, file.container, file.name);
|
srcFile = path.join(file.client.root, file.container, file.name);
|
||||||
|
|
||||||
const data = {
|
const dmsContainer = await DmsContainer.container(pathHash);
|
||||||
workerFk: ctx.req.accessToken.userId,
|
const dstFile = path.join(dmsContainer.client.root, pathHash, newDms.file);
|
||||||
dmsTypeFk: args.dmsTypeId,
|
|
||||||
companyFk: args.companyId,
|
await fs.move(srcFile, dstFile, {
|
||||||
warehouseFk: args.warehouseId,
|
overwrite: true
|
||||||
reference: args.reference,
|
});
|
||||||
description: args.description,
|
|
||||||
contentType: uploadedFile.type,
|
|
||||||
hasFile: args.hasFile
|
|
||||||
};
|
|
||||||
const extension = await models.DmsContainer.getFileExtension(uploadedFile.name);
|
|
||||||
const newDms = await Self.createFromFile(data, extension, srcFile, myOptions);
|
|
||||||
addedDms.push(newDms);
|
addedDms.push(newDms);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -108,4 +107,27 @@ module.exports = Self => {
|
||||||
throw e;
|
throw e;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
async function createDms(ctx, file, myOptions) {
|
||||||
|
const models = Self.app.models;
|
||||||
|
const myUserId = ctx.req.accessToken.userId;
|
||||||
|
const args = ctx.args;
|
||||||
|
|
||||||
|
const newDms = await Self.create({
|
||||||
|
workerFk: myUserId,
|
||||||
|
dmsTypeFk: args.dmsTypeId,
|
||||||
|
companyFk: args.companyId,
|
||||||
|
warehouseFk: args.warehouseId,
|
||||||
|
reference: args.reference,
|
||||||
|
description: args.description,
|
||||||
|
contentType: file.type,
|
||||||
|
hasFile: args.hasFile
|
||||||
|
}, myOptions);
|
||||||
|
|
||||||
|
let fileName = file.name;
|
||||||
|
const extension = models.DmsContainer.getFileExtension(fileName);
|
||||||
|
fileName = `${newDms.id}.${extension}`;
|
||||||
|
|
||||||
|
return newDms.updateAttribute('file', fileName, myOptions);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
|
const axios = require('axios');
|
||||||
|
|
||||||
module.exports = Self => {
|
module.exports = Self => {
|
||||||
Self.remoteMethod('checkFile', {
|
Self.remoteMethodCtx('checkFile', {
|
||||||
description: 'Check if exist docuware file',
|
description: 'Check if exist docuware file',
|
||||||
accessType: 'READ',
|
accessType: 'READ',
|
||||||
accepts: [
|
accepts: [
|
||||||
|
@ -15,16 +17,12 @@ module.exports = Self => {
|
||||||
required: true,
|
required: true,
|
||||||
description: 'The fileCabinet name'
|
description: 'The fileCabinet name'
|
||||||
},
|
},
|
||||||
{
|
|
||||||
arg: 'filter',
|
|
||||||
type: 'object',
|
|
||||||
description: 'The filter'
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
arg: 'signed',
|
arg: 'signed',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
|
required: true,
|
||||||
description: 'If pdf is necessary to be signed'
|
description: 'If pdf is necessary to be signed'
|
||||||
},
|
}
|
||||||
],
|
],
|
||||||
returns: {
|
returns: {
|
||||||
type: 'object',
|
type: 'object',
|
||||||
|
@ -36,7 +34,7 @@ module.exports = Self => {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
Self.checkFile = async function(id, fileCabinet, filter, signed) {
|
Self.checkFile = async function(ctx, id, fileCabinet, signed) {
|
||||||
const models = Self.app.models;
|
const models = Self.app.models;
|
||||||
const action = 'find';
|
const action = 'find';
|
||||||
|
|
||||||
|
@ -47,11 +45,11 @@ module.exports = Self => {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
if (!filter) {
|
const searchFilter = {
|
||||||
filter = {
|
|
||||||
condition: [
|
condition: [
|
||||||
{
|
{
|
||||||
DBName: docuwareInfo.findById,
|
DBName: docuwareInfo.findById,
|
||||||
|
|
||||||
Value: [id]
|
Value: [id]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -62,19 +60,25 @@ module.exports = Self => {
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
}
|
|
||||||
if (signed) {
|
|
||||||
filter.condition.push({
|
|
||||||
DBName: 'ESTADO',
|
|
||||||
Value: ['Firmado']
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const [response] = await Self.get(fileCabinet, filter);
|
const options = await Self.getOptions();
|
||||||
if (!response) return false;
|
|
||||||
|
|
||||||
return {id: response['Document ID']};
|
const fileCabinetId = await Self.getFileCabinet(fileCabinet);
|
||||||
|
const dialogId = await Self.getDialog(fileCabinet, action, fileCabinetId);
|
||||||
|
|
||||||
|
const response = await axios.post(
|
||||||
|
`${options.url}/FileCabinets/${fileCabinetId}/Query/DialogExpression?dialogId=${dialogId}`,
|
||||||
|
searchFilter,
|
||||||
|
options.headers
|
||||||
|
);
|
||||||
|
const [documents] = response.data.Items;
|
||||||
|
if (!documents) return false;
|
||||||
|
|
||||||
|
const state = documents.Fields.find(field => field.FieldName == 'ESTADO');
|
||||||
|
if (signed && state.Item != 'Firmado') return false;
|
||||||
|
|
||||||
|
return {id: documents.Id};
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,52 +1,6 @@
|
||||||
const axios = require('axios');
|
const axios = require('axios');
|
||||||
|
|
||||||
module.exports = Self => {
|
module.exports = Self => {
|
||||||
/**
|
|
||||||
* Returns basic headers
|
|
||||||
*
|
|
||||||
* @return {object} - The headers
|
|
||||||
*/
|
|
||||||
Self.getOptions = async() => {
|
|
||||||
const docuwareConfig = await Self.app.models.DocuwareConfig.findOne();
|
|
||||||
const now = Date.vnNow();
|
|
||||||
let {url, username, password, token, expired} = docuwareConfig;
|
|
||||||
|
|
||||||
if (process.env.NODE_ENV && (!expired || expired < now + 60)) {
|
|
||||||
const {data: {IdentityServiceUrl}} = await axios.get(`${url}/Home/IdentityServiceInfo`);
|
|
||||||
const {data: {token_endpoint}} = await axios.get(`${IdentityServiceUrl}/.well-known/openid-configuration`);
|
|
||||||
const {data} = await axios.post(token_endpoint, {
|
|
||||||
grant_type: 'password',
|
|
||||||
scope: 'docuware.platform',
|
|
||||||
client_id: 'docuware.platform.net.client',
|
|
||||||
username,
|
|
||||||
password
|
|
||||||
}, {headers: {
|
|
||||||
'Accept': 'application/json',
|
|
||||||
'Content-Type': 'application/x-www-form-urlencoded'
|
|
||||||
}});
|
|
||||||
|
|
||||||
const newToken = data.access_token;
|
|
||||||
token = data.token_type + ' ' + newToken;
|
|
||||||
await docuwareConfig.updateAttributes({
|
|
||||||
token,
|
|
||||||
expired: now + data.expires_in
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
const headers = {
|
|
||||||
headers: {
|
|
||||||
'Accept': 'application/json',
|
|
||||||
'Content-Type': 'application/json',
|
|
||||||
'Authorization': token
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
return {
|
|
||||||
url,
|
|
||||||
headers
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the dialog id
|
* Returns the dialog id
|
||||||
*
|
*
|
||||||
|
@ -56,19 +10,19 @@ module.exports = Self => {
|
||||||
* @return {number} - The fileCabinet id
|
* @return {number} - The fileCabinet id
|
||||||
*/
|
*/
|
||||||
Self.getDialog = async(code, action, fileCabinetId) => {
|
Self.getDialog = async(code, action, fileCabinetId) => {
|
||||||
if (!process.env.NODE_ENV)
|
|
||||||
return Math.floor(Math.random() + 100);
|
|
||||||
|
|
||||||
const docuwareInfo = await Self.app.models.Docuware.findOne({
|
const docuwareInfo = await Self.app.models.Docuware.findOne({
|
||||||
where: {
|
where: {
|
||||||
code,
|
code: code,
|
||||||
action
|
action: action
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
if (!fileCabinetId) fileCabinetId = await Self.getFileCabinet(code);
|
if (!fileCabinetId) fileCabinetId = await Self.getFileCabinet(code);
|
||||||
|
|
||||||
const options = await Self.getOptions();
|
const options = await Self.getOptions();
|
||||||
|
|
||||||
|
if (!process.env.NODE_ENV)
|
||||||
|
return Math.round();
|
||||||
|
|
||||||
const response = await axios.get(`${options.url}/FileCabinets/${fileCabinetId}/dialogs`, options.headers);
|
const response = await axios.get(`${options.url}/FileCabinets/${fileCabinetId}/dialogs`, options.headers);
|
||||||
const dialogs = response.data.Dialog;
|
const dialogs = response.data.Dialog;
|
||||||
const dialogId = dialogs.find(dialogs => dialogs.DisplayName === docuwareInfo.dialogName).Id;
|
const dialogId = dialogs.find(dialogs => dialogs.DisplayName === docuwareInfo.dialogName).Id;
|
||||||
|
@ -83,16 +37,16 @@ module.exports = Self => {
|
||||||
* @return {number} - The fileCabinet id
|
* @return {number} - The fileCabinet id
|
||||||
*/
|
*/
|
||||||
Self.getFileCabinet = async code => {
|
Self.getFileCabinet = async code => {
|
||||||
if (!process.env.NODE_ENV)
|
|
||||||
return Math.floor(Math.random() + 100);
|
|
||||||
|
|
||||||
const options = await Self.getOptions();
|
const options = await Self.getOptions();
|
||||||
const docuwareInfo = await Self.app.models.Docuware.findOne({
|
const docuwareInfo = await Self.app.models.Docuware.findOne({
|
||||||
where: {
|
where: {
|
||||||
code
|
code: code
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (!process.env.NODE_ENV)
|
||||||
|
return Math.round();
|
||||||
|
|
||||||
const fileCabinetResponse = await axios.get(`${options.url}/FileCabinets`, options.headers);
|
const fileCabinetResponse = await axios.get(`${options.url}/FileCabinets`, options.headers);
|
||||||
const fileCabinets = fileCabinetResponse.data.FileCabinet;
|
const fileCabinets = fileCabinetResponse.data.FileCabinet;
|
||||||
const fileCabinetId = fileCabinets.find(fileCabinet => fileCabinet.Name === docuwareInfo.fileCabinetName).Id;
|
const fileCabinetId = fileCabinets.find(fileCabinet => fileCabinet.Name === docuwareInfo.fileCabinetName).Id;
|
||||||
|
@ -101,84 +55,24 @@ module.exports = Self => {
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns docuware data
|
* Returns basic headers
|
||||||
*
|
*
|
||||||
* @param {string} code - The fileCabinet code
|
* @param {string} cookie - The docuware cookie
|
||||||
* @param {object} filter - The filter for docuware
|
* @return {object} - The headers
|
||||||
* @param {object} parse - The fields parsed
|
|
||||||
* @return {object} - The data
|
|
||||||
*/
|
*/
|
||||||
Self.get = async(code, filter, parse) => {
|
Self.getOptions = async() => {
|
||||||
if (!process.env.NODE_ENV) return;
|
const docuwareConfig = await Self.app.models.DocuwareConfig.findOne();
|
||||||
|
const headers = {
|
||||||
const options = await Self.getOptions();
|
headers: {
|
||||||
const fileCabinetId = await Self.getFileCabinet(code);
|
'Accept': 'application/json',
|
||||||
const dialogId = await Self.getDialog(code, 'find', fileCabinetId);
|
'Content-Type': 'application/json',
|
||||||
|
'Cookie': docuwareConfig.cookie
|
||||||
const data = await axios.post(
|
|
||||||
`${options.url}/FileCabinets/${fileCabinetId}/Query/DialogExpression?dialogId=${dialogId}`,
|
|
||||||
filter,
|
|
||||||
options.headers
|
|
||||||
);
|
|
||||||
return parser(data.data, parse);
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns docuware data
|
|
||||||
*
|
|
||||||
* @param {string} code - The fileCabinet code
|
|
||||||
* @param {any} id - The id of docuware
|
|
||||||
* @param {object} parse - The fields parsed
|
|
||||||
* @return {object} - The data
|
|
||||||
*/
|
|
||||||
Self.getById = async(code, id, parse) => {
|
|
||||||
if (!process.env.NODE_ENV) return;
|
|
||||||
|
|
||||||
const docuwareInfo = await Self.app.models.Docuware.findOne({
|
|
||||||
fields: ['findById'],
|
|
||||||
where: {
|
|
||||||
code,
|
|
||||||
action: 'find'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
const filter = {
|
|
||||||
condition: [
|
|
||||||
{
|
|
||||||
DBName: docuwareInfo.findById,
|
|
||||||
Value: [id]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
};
|
|
||||||
|
|
||||||
return Self.get(code, filter, parse);
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns docuware data filtered
|
|
||||||
*
|
|
||||||
* @param {array} data - The data
|
|
||||||
* @param {object} parse - The fields parsed
|
|
||||||
* @return {object} - The data parsed
|
|
||||||
*/
|
|
||||||
function parser(data, parse) {
|
|
||||||
if (!(data && data.Items)) return data;
|
|
||||||
|
|
||||||
const parsed = [];
|
|
||||||
for (item of data.Items) {
|
|
||||||
const itemParsed = {};
|
|
||||||
item.Fields.map(field => {
|
|
||||||
if (field.ItemElementName.includes('Date')) field.Item = toDate(field.Item);
|
|
||||||
if (!parse) return itemParsed[field.FieldLabel] = field.Item;
|
|
||||||
if (parse[field.FieldLabel])
|
|
||||||
itemParsed[parse[field.FieldLabel]] = field.Item;
|
|
||||||
});
|
|
||||||
parsed.push(itemParsed);
|
|
||||||
}
|
|
||||||
return parsed;
|
|
||||||
}
|
|
||||||
|
|
||||||
function toDate(value) {
|
|
||||||
if (!value) return;
|
|
||||||
return new Date(Number(value.substring(6, 19)));
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
return {
|
||||||
|
url: docuwareConfig.url,
|
||||||
|
headers
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
|
@ -4,25 +4,25 @@ module.exports = Self => {
|
||||||
Self.remoteMethodCtx('deliveryNoteEmail', {
|
Self.remoteMethodCtx('deliveryNoteEmail', {
|
||||||
description: 'Sends the delivery note email with an docuware attached PDF',
|
description: 'Sends the delivery note email with an docuware attached PDF',
|
||||||
accessType: 'WRITE',
|
accessType: 'WRITE',
|
||||||
accessScopes: ['docuwareDeliveryNoteEmail'],
|
|
||||||
accepts: [
|
accepts: [
|
||||||
{
|
{
|
||||||
arg: 'id',
|
arg: 'id',
|
||||||
type: 'number',
|
type: 'string',
|
||||||
required: true,
|
required: true,
|
||||||
description: 'The ticket id',
|
description: 'The ticket id',
|
||||||
},
|
http: {source: 'path'}
|
||||||
{
|
|
||||||
arg: 'recipientId',
|
|
||||||
type: 'number',
|
|
||||||
description: 'The client id',
|
|
||||||
required: true
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
arg: 'recipient',
|
arg: 'recipient',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
description: 'The recipient email',
|
description: 'The recipient email',
|
||||||
required: false,
|
required: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
arg: 'recipientId',
|
||||||
|
type: 'number',
|
||||||
|
description: 'The client id',
|
||||||
|
required: false
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
returns: [
|
returns: [
|
||||||
|
@ -41,13 +41,12 @@ module.exports = Self => {
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
http: {
|
http: {
|
||||||
path: '/delivery-note-email',
|
path: '/:id/delivery-note-email',
|
||||||
verb: 'POST'
|
verb: 'POST'
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
Self.deliveryNoteEmail = async(ctx, id, recipientId, recipient) => {
|
Self.deliveryNoteEmail = async(ctx, id) => {
|
||||||
const models = Self.app.models;
|
|
||||||
const args = Object.assign({}, ctx.args);
|
const args = Object.assign({}, ctx.args);
|
||||||
const params = {
|
const params = {
|
||||||
recipient: args.recipient,
|
recipient: args.recipient,
|
||||||
|
@ -58,14 +57,9 @@ module.exports = Self => {
|
||||||
for (const param in args)
|
for (const param in args)
|
||||||
params[param] = args[param];
|
params[param] = args[param];
|
||||||
|
|
||||||
if (!recipient) {
|
|
||||||
client = await models.Client.findById(recipientId, {fields: ['email']});
|
|
||||||
params.recipient = client.email;
|
|
||||||
}
|
|
||||||
|
|
||||||
const email = new Email('delivery-note', params);
|
const email = new Email('delivery-note', params);
|
||||||
|
|
||||||
const docuwareFile = await models.Docuware.download(id, 'deliveryNote');
|
const docuwareFile = await Self.app.models.Docuware.download(ctx, id, 'deliveryNote');
|
||||||
|
|
||||||
return email.send({
|
return email.send({
|
||||||
overrideAttachments: true,
|
overrideAttachments: true,
|
||||||
|
|
|
@ -3,7 +3,7 @@ const axios = require('axios');
|
||||||
const UserError = require('vn-loopback/util/user-error');
|
const UserError = require('vn-loopback/util/user-error');
|
||||||
|
|
||||||
module.exports = Self => {
|
module.exports = Self => {
|
||||||
Self.remoteMethod('download', {
|
Self.remoteMethodCtx('download', {
|
||||||
description: 'Download an docuware PDF',
|
description: 'Download an docuware PDF',
|
||||||
accessType: 'READ',
|
accessType: 'READ',
|
||||||
accepts: [
|
accepts: [
|
||||||
|
@ -16,12 +16,8 @@ module.exports = Self => {
|
||||||
{
|
{
|
||||||
arg: 'fileCabinet',
|
arg: 'fileCabinet',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
description: 'The file cabinet'
|
description: 'The file cabinet',
|
||||||
},
|
http: {source: 'path'}
|
||||||
{
|
|
||||||
arg: 'filter',
|
|
||||||
type: 'object',
|
|
||||||
description: 'The filter'
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
returns: [
|
returns: [
|
||||||
|
@ -40,16 +36,14 @@ module.exports = Self => {
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
http: {
|
http: {
|
||||||
path: `/:id/download`,
|
path: `/:id/download/:fileCabinet`,
|
||||||
verb: 'GET'
|
verb: 'GET'
|
||||||
},
|
}
|
||||||
accessScopes: ['DEFAULT', 'read:multimedia']
|
|
||||||
});
|
});
|
||||||
|
|
||||||
Self.download = async function(id, fileCabinet, filter) {
|
Self.download = async function(ctx, id, fileCabinet) {
|
||||||
const models = Self.app.models;
|
const models = Self.app.models;
|
||||||
|
const docuwareFile = await models.Docuware.checkFile(ctx, id, fileCabinet, true);
|
||||||
const docuwareFile = await models.Docuware.checkFile(id, fileCabinet, filter);
|
|
||||||
if (!docuwareFile) throw new UserError('The DOCUWARE PDF document does not exists');
|
if (!docuwareFile) throw new UserError('The DOCUWARE PDF document does not exists');
|
||||||
|
|
||||||
const fileCabinetId = await Self.getFileCabinet(fileCabinet);
|
const fileCabinetId = await Self.getFileCabinet(fileCabinet);
|
||||||
|
|
|
@ -1,27 +1,81 @@
|
||||||
const models = require('vn-loopback/server/server').models;
|
const models = require('vn-loopback/server/server').models;
|
||||||
|
const axios = require('axios');
|
||||||
|
|
||||||
describe('docuware download()', () => {
|
describe('docuware download()', () => {
|
||||||
const ticketId = 1;
|
const ticketId = 1;
|
||||||
|
const userId = 9;
|
||||||
|
const ctx = {
|
||||||
|
req: {
|
||||||
|
|
||||||
|
accessToken: {userId: userId},
|
||||||
|
headers: {origin: 'http://localhost:5000'},
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
const docuwareModel = models.Docuware;
|
const docuwareModel = models.Docuware;
|
||||||
const fileCabinetName = 'deliveryNote';
|
const fileCabinetName = 'deliveryNote';
|
||||||
|
|
||||||
it('should return false if there are no documents', async() => {
|
beforeAll(() => {
|
||||||
spyOn(docuwareModel, 'get').and.returnValue((new Promise(resolve => resolve({Items: []}))));
|
spyOn(docuwareModel, 'getFileCabinet').and.returnValue((new Promise(resolve => resolve(Math.random()))));
|
||||||
|
spyOn(docuwareModel, 'getDialog').and.returnValue((new Promise(resolve => resolve(Math.random()))));
|
||||||
|
});
|
||||||
|
|
||||||
const result = await models.Docuware.checkFile(ticketId, fileCabinetName, null, true);
|
it('should return false if there are no documents', async() => {
|
||||||
|
const response = {
|
||||||
|
data: {
|
||||||
|
Items: []
|
||||||
|
}
|
||||||
|
};
|
||||||
|
spyOn(axios, 'post').and.returnValue(new Promise(resolve => resolve(response)));
|
||||||
|
|
||||||
|
const result = await models.Docuware.checkFile(ctx, ticketId, fileCabinetName, true);
|
||||||
|
|
||||||
|
expect(result).toEqual(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should return false if the document is unsigned', async() => {
|
||||||
|
const response = {
|
||||||
|
data: {
|
||||||
|
Items: [
|
||||||
|
{
|
||||||
|
Id: 1,
|
||||||
|
Fields: [
|
||||||
|
{
|
||||||
|
FieldName: 'ESTADO',
|
||||||
|
Item: 'Unsigned'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
};
|
||||||
|
spyOn(axios, 'post').and.returnValue(new Promise(resolve => resolve(response)));
|
||||||
|
|
||||||
|
const result = await models.Docuware.checkFile(ctx, ticketId, fileCabinetName, true);
|
||||||
|
|
||||||
expect(result).toEqual(false);
|
expect(result).toEqual(false);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should return the document data', async() => {
|
it('should return the document data', async() => {
|
||||||
const docuwareId = 1;
|
const docuwareId = 1;
|
||||||
const response = [{
|
const response = {
|
||||||
'Document ID': docuwareId
|
data: {
|
||||||
}];
|
Items: [
|
||||||
spyOn(docuwareModel, 'get').and.returnValue((new Promise(resolve => resolve(response))));
|
{
|
||||||
|
Id: docuwareId,
|
||||||
|
Fields: [
|
||||||
|
{
|
||||||
|
FieldName: 'ESTADO',
|
||||||
|
Item: 'Firmado'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
};
|
||||||
|
spyOn(axios, 'post').and.returnValue(new Promise(resolve => resolve(response)));
|
||||||
|
|
||||||
const result = await models.Docuware.checkFile(ticketId, fileCabinetName, null, true);
|
const result = await models.Docuware.checkFile(ctx, ticketId, fileCabinetName, true);
|
||||||
|
|
||||||
expect(result.id).toEqual(docuwareId);
|
expect(result.id).toEqual(docuwareId);
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,139 +0,0 @@
|
||||||
const axios = require('axios');
|
|
||||||
const models = require('vn-loopback/server/server').models;
|
|
||||||
|
|
||||||
describe('Docuware core', () => {
|
|
||||||
const fileCabinetCode = 'deliveryNote';
|
|
||||||
beforeAll(async() => {
|
|
||||||
process.env.NODE_ENV = 'testing';
|
|
||||||
|
|
||||||
const docuwareInfo = await models.Docuware.findOne({
|
|
||||||
where: {
|
|
||||||
code: fileCabinetCode
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
spyOn(axios, 'get').and.callFake(url => {
|
|
||||||
if (url.includes('IdentityServiceInfo')) return {data: {IdentityServiceUrl: 'IdentityServiceUrl'}};
|
|
||||||
if (url.includes('IdentityServiceUrl')) return {data: {token_endpoint: 'token_endpoint'}};
|
|
||||||
if (url.includes('dialogs')) {
|
|
||||||
return {
|
|
||||||
data: {
|
|
||||||
Dialog: [
|
|
||||||
{
|
|
||||||
DisplayName: 'find',
|
|
||||||
Id: 'getDialogTest'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
if (url.includes('FileCabinets')) {
|
|
||||||
return {data: {
|
|
||||||
FileCabinet: [
|
|
||||||
{
|
|
||||||
Name: docuwareInfo.fileCabinetName,
|
|
||||||
Id: 'getFileCabinetTest'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}};
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
spyOn(axios, 'post').and.callFake(url => {
|
|
||||||
if (url.includes('token_endpoint')) {
|
|
||||||
return {data: {
|
|
||||||
access_token: 'access_token',
|
|
||||||
token_type: 'bearer',
|
|
||||||
expires_in: 10000
|
|
||||||
}};
|
|
||||||
}
|
|
||||||
if (url.includes('DialogExpression')) {
|
|
||||||
return {data: {
|
|
||||||
Items: [{
|
|
||||||
Fields: [
|
|
||||||
{
|
|
||||||
ItemElementName: 'integer',
|
|
||||||
FieldLabel: 'firstRequiredField',
|
|
||||||
Item: 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
ItemElementName: 'string',
|
|
||||||
FieldLabel: 'secondRequiredField',
|
|
||||||
Item: 'myName'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
ItemElementName: 'integer',
|
|
||||||
FieldLabel: 'notRequiredField',
|
|
||||||
Item: 2
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
afterAll(() => {
|
|
||||||
delete process.env.NODE_ENV;
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('getOptions()', () => {
|
|
||||||
it('should return url and headers', async() => {
|
|
||||||
const result = await models.Docuware.getOptions();
|
|
||||||
|
|
||||||
expect(result.url).toBeDefined();
|
|
||||||
expect(result.headers).toBeDefined();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('Dialog()', () => {
|
|
||||||
it('should return dialogId', async() => {
|
|
||||||
const result = await models.Docuware.getDialog('deliveryNote', 'find', 'randomFileCabinetId');
|
|
||||||
|
|
||||||
expect(result).toEqual('getDialogTest');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('getFileCabinet()', () => {
|
|
||||||
it('should return fileCabinetId', async() => {
|
|
||||||
const result = await models.Docuware.getFileCabinet(fileCabinetCode);
|
|
||||||
|
|
||||||
expect(result).toEqual('getFileCabinetTest');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('get()', () => {
|
|
||||||
it('should return data without parse', async() => {
|
|
||||||
const [result] = await models.Docuware.get('deliveryNote');
|
|
||||||
|
|
||||||
expect(result.firstRequiredField).toEqual(1);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should return data with parse', async() => {
|
|
||||||
const parse = {
|
|
||||||
'firstRequiredField': 'id',
|
|
||||||
'secondRequiredField': 'name',
|
|
||||||
};
|
|
||||||
const [result] = await models.Docuware.get('deliveryNote', null, parse);
|
|
||||||
|
|
||||||
expect(result.id).toEqual(1);
|
|
||||||
expect(result.name).toEqual('myName');
|
|
||||||
expect(result.notRequiredField).not.toBeDefined();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('getById()', () => {
|
|
||||||
it('should return data', async() => {
|
|
||||||
spyOn(models.Docuware, 'get');
|
|
||||||
await models.Docuware.getById('deliveryNote', 1);
|
|
||||||
|
|
||||||
expect(models.Docuware.get).toHaveBeenCalledWith(
|
|
||||||
'deliveryNote',
|
|
||||||
{condition: [Object({DBName: 'N__ALBAR_N', Value: [1]})]},
|
|
||||||
undefined
|
|
||||||
);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
|
@ -39,7 +39,7 @@ describe('docuware download()', () => {
|
||||||
spyOn(docuwareModel, 'checkFile').and.returnValue({});
|
spyOn(docuwareModel, 'checkFile').and.returnValue({});
|
||||||
spyOn(axios, 'get').and.returnValue(new stream.PassThrough({objectMode: true}));
|
spyOn(axios, 'get').and.returnValue(new stream.PassThrough({objectMode: true}));
|
||||||
|
|
||||||
const result = await models.Docuware.download(ticketId, fileCabinetName);
|
const result = await models.Docuware.download(ctx, ticketId, fileCabinetName);
|
||||||
|
|
||||||
expect(result[1]).toEqual('application/pdf');
|
expect(result[1]).toEqual('application/pdf');
|
||||||
expect(result[2]).toEqual(`filename="${ticketId}.pdf"`);
|
expect(result[2]).toEqual(`filename="${ticketId}.pdf"`);
|
||||||
|
|
|
@ -2,9 +2,8 @@ const models = require('vn-loopback/server/server').models;
|
||||||
|
|
||||||
describe('docuware upload()', () => {
|
describe('docuware upload()', () => {
|
||||||
const userId = 9;
|
const userId = 9;
|
||||||
const ticketIds = [10];
|
const ticketId = 10;
|
||||||
const ctx = {
|
const ctx = {
|
||||||
args: {ticketIds},
|
|
||||||
req: {
|
req: {
|
||||||
getLocale: () => {
|
getLocale: () => {
|
||||||
return 'en';
|
return 'en';
|
||||||
|
@ -24,40 +23,15 @@ describe('docuware upload()', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should try upload file', async() => {
|
it('should try upload file', async() => {
|
||||||
const tx = await models.Docuware.beginTransaction({});
|
|
||||||
spyOn(ticketModel, 'deliveryNotePdf').and.returnValue(new Promise(resolve => resolve({})));
|
spyOn(ticketModel, 'deliveryNotePdf').and.returnValue(new Promise(resolve => resolve({})));
|
||||||
|
|
||||||
let error;
|
let error;
|
||||||
try {
|
try {
|
||||||
const options = {transaction: tx};
|
await models.Docuware.upload(ctx, ticketId, fileCabinetName);
|
||||||
const user = await models.UserConfig.findById(userId, null, options);
|
|
||||||
await user.updateAttribute('tabletFk', 'Tablet1', options);
|
|
||||||
await models.Docuware.upload(ctx, ticketIds, fileCabinetName, options);
|
|
||||||
|
|
||||||
await tx.rollback();
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
error = e;
|
error = e.message;
|
||||||
await tx.rollback();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
expect(error.message).toEqual('Action not allowed on the test environment');
|
expect(error).toEqual('Action not allowed on the test environment');
|
||||||
});
|
|
||||||
|
|
||||||
it('should throw error when not have tablet assigned', async() => {
|
|
||||||
const tx = await models.Docuware.beginTransaction({});
|
|
||||||
spyOn(ticketModel, 'deliveryNotePdf').and.returnValue(new Promise(resolve => resolve({})));
|
|
||||||
|
|
||||||
let error;
|
|
||||||
try {
|
|
||||||
const options = {transaction: tx};
|
|
||||||
await models.Docuware.upload(ctx, ticketIds, fileCabinetName, options);
|
|
||||||
|
|
||||||
await tx.rollback();
|
|
||||||
} catch (e) {
|
|
||||||
error = e;
|
|
||||||
await tx.rollback();
|
|
||||||
}
|
|
||||||
|
|
||||||
expect(error.message).toEqual('This user does not have an assigned tablet');
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,73 +1,58 @@
|
||||||
const UserError = require('vn-loopback/util/user-error');
|
const UserError = require('vn-loopback/util/user-error');
|
||||||
const axios = require('axios');
|
const axios = require('axios');
|
||||||
const isProduction = require('vn-loopback/server/boot/isProduction');
|
|
||||||
|
|
||||||
module.exports = Self => {
|
module.exports = Self => {
|
||||||
Self.remoteMethodCtx('upload', {
|
Self.remoteMethodCtx('upload', {
|
||||||
description: 'Upload docuware PDFs',
|
description: 'Upload an docuware PDF',
|
||||||
accessType: 'WRITE',
|
accessType: 'WRITE',
|
||||||
accepts: [
|
accepts: [
|
||||||
{
|
{
|
||||||
arg: 'ticketIds',
|
arg: 'id',
|
||||||
type: ['number'],
|
type: 'number',
|
||||||
description: 'The ticket ids',
|
description: 'The ticket id',
|
||||||
required: true
|
http: {source: 'path'}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
arg: 'fileCabinet',
|
arg: 'fileCabinet',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
description: 'The file cabinet',
|
description: 'The file cabinet'
|
||||||
required: true
|
},
|
||||||
|
{
|
||||||
|
arg: 'dialog',
|
||||||
|
type: 'string',
|
||||||
|
description: 'The dialog'
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
returns: {
|
returns: [],
|
||||||
type: 'object',
|
|
||||||
root: true
|
|
||||||
},
|
|
||||||
http: {
|
http: {
|
||||||
path: `/upload`,
|
path: `/:id/upload`,
|
||||||
verb: 'POST'
|
verb: 'POST'
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
Self.upload = async function(ctx, ticketIds, fileCabinet, options) {
|
Self.upload = async function(ctx, id, fileCabinet) {
|
||||||
delete ctx.args.ticketIds;
|
|
||||||
const models = Self.app.models;
|
const models = Self.app.models;
|
||||||
const action = 'store';
|
const action = 'store';
|
||||||
|
|
||||||
const myOptions = {};
|
const options = await Self.getOptions();
|
||||||
|
|
||||||
if (typeof options == 'object')
|
|
||||||
Object.assign(myOptions, options);
|
|
||||||
|
|
||||||
const userConfig = await models.UserConfig.findById(ctx.req.accessToken.userId, {
|
|
||||||
fields: ['tabletFk']
|
|
||||||
}, myOptions);
|
|
||||||
|
|
||||||
if (!userConfig?.tabletFk)
|
|
||||||
throw new UserError('This user does not have an assigned tablet');
|
|
||||||
|
|
||||||
const docuwareOptions = await Self.getOptions();
|
|
||||||
const fileCabinetId = await Self.getFileCabinet(fileCabinet);
|
const fileCabinetId = await Self.getFileCabinet(fileCabinet);
|
||||||
const dialogId = await Self.getDialog(fileCabinet, action, fileCabinetId);
|
const dialogId = await Self.getDialog(fileCabinet, action, fileCabinetId);
|
||||||
|
|
||||||
const uploaded = [];
|
|
||||||
for (id of ticketIds) {
|
|
||||||
// get delivery note
|
// get delivery note
|
||||||
ctx.args.id = id;
|
|
||||||
const deliveryNote = await models.Ticket.deliveryNotePdf(ctx, {
|
const deliveryNote = await models.Ticket.deliveryNotePdf(ctx, {
|
||||||
id,
|
id,
|
||||||
type: 'deliveryNote'
|
type: 'deliveryNote'
|
||||||
}, myOptions);
|
});
|
||||||
|
|
||||||
// get ticket data
|
// get ticket data
|
||||||
const ticket = await models.Ticket.findById(id, {
|
const ticket = await models.Ticket.findById(id, {
|
||||||
include: [{
|
include: [{
|
||||||
relation: 'client',
|
relation: 'client',
|
||||||
scope: {
|
scope: {
|
||||||
fields: ['id', 'name', 'fi']
|
fields: ['id', 'socialName', 'fi']
|
||||||
}
|
}
|
||||||
}]
|
}]
|
||||||
}, myOptions);
|
});
|
||||||
|
|
||||||
// upload file
|
// upload file
|
||||||
const templateJson = {
|
const templateJson = {
|
||||||
|
@ -90,7 +75,7 @@ module.exports = Self => {
|
||||||
{
|
{
|
||||||
'FieldName': 'NOMBRE_PROVEEDOR',
|
'FieldName': 'NOMBRE_PROVEEDOR',
|
||||||
'ItemElementName': 'string',
|
'ItemElementName': 'string',
|
||||||
'Item': ticket.client().name + ' - ' + id,
|
'Item': ticket.client().socialName,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'FieldName': 'FECHA_FACTURA',
|
'FieldName': 'FECHA_FACTURA',
|
||||||
|
@ -115,25 +100,25 @@ module.exports = Self => {
|
||||||
{
|
{
|
||||||
'FieldName': 'FILTRO_TABLET',
|
'FieldName': 'FILTRO_TABLET',
|
||||||
'ItemElementName': 'string',
|
'ItemElementName': 'string',
|
||||||
'Item': userConfig.tabletFk,
|
'Item': 'Tablet1',
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
|
||||||
if (!isProduction(false))
|
if (process.env.NODE_ENV != 'production')
|
||||||
throw new UserError('Action not allowed on the test environment');
|
throw new UserError('Action not allowed on the test environment');
|
||||||
|
|
||||||
// delete old
|
// delete old
|
||||||
const docuwareFile = await models.Docuware.checkFile(id, fileCabinet, false);
|
const docuwareFile = await models.Docuware.checkFile(ctx, id, fileCabinet, false);
|
||||||
if (docuwareFile) {
|
if (docuwareFile) {
|
||||||
const deleteJson = {
|
const deleteJson = {
|
||||||
'Field': [{'FieldName': 'ESTADO', 'Item': 'Pendiente eliminar', 'ItemElementName': 'String'}]
|
'Field': [{'FieldName': 'ESTADO', 'Item': 'Pendiente eliminar', 'ItemElementName': 'String'}]
|
||||||
};
|
};
|
||||||
const deleteUri = `${docuwareOptions.url}/FileCabinets/${fileCabinetId}/Documents/${docuwareFile.id}/Fields`;
|
const deleteUri = `${options.url}/FileCabinets/${fileCabinetId}/Documents/${docuwareFile.id}/Fields`;
|
||||||
await axios.put(deleteUri, deleteJson, docuwareOptions.headers);
|
await axios.put(deleteUri, deleteJson, options.headers);
|
||||||
}
|
}
|
||||||
|
|
||||||
const uploadUri = `${docuwareOptions.url}/FileCabinets/${fileCabinetId}/Documents?StoreDialogId=${dialogId}`;
|
const uploadUri = `${options.url}/FileCabinets/${fileCabinetId}/Documents?StoreDialogId=${dialogId}`;
|
||||||
const FormData = require('form-data');
|
const FormData = require('form-data');
|
||||||
const data = new FormData();
|
const data = new FormData();
|
||||||
|
|
||||||
|
@ -143,22 +128,14 @@ module.exports = Self => {
|
||||||
headers: {
|
headers: {
|
||||||
'Content-Type': 'multipart/form-data',
|
'Content-Type': 'multipart/form-data',
|
||||||
'X-File-ModifiedDate': Date.vnNew(),
|
'X-File-ModifiedDate': Date.vnNew(),
|
||||||
'Authorization': docuwareOptions.headers.headers.Authorization,
|
'Cookie': options.headers.headers.Cookie,
|
||||||
...data.getHeaders()
|
...data.getHeaders()
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
try {
|
return await axios.post(uploadUri, data, uploadOptions)
|
||||||
await axios.post(uploadUri, data, uploadOptions);
|
.catch(() => {
|
||||||
} catch (err) {
|
throw new UserError('Failed to upload file');
|
||||||
const $t = ctx.req.__;
|
});
|
||||||
const message = $t('Failed to upload delivery note', {id});
|
|
||||||
if (uploaded.length)
|
|
||||||
await models.TicketTracking.setDelivered(ctx, uploaded, myOptions);
|
|
||||||
throw new UserError(message);
|
|
||||||
}
|
|
||||||
uploaded.push(id);
|
|
||||||
}
|
|
||||||
return models.TicketTracking.setDelivered(ctx, ticketIds, myOptions);
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
LOAD DATA LOCAL INFILE ?
|
LOAD DATA LOCAL INFILE ?
|
||||||
INTO TABLE `edi`.`item`
|
INTO TABLE `edi`.`item`
|
||||||
CHARACTER SET ascii
|
|
||||||
FIELDS TERMINATED BY ';'
|
FIELDS TERMINATED BY ';'
|
||||||
LINES TERMINATED BY '\n' (@col1, @col2, @col3, @col4, @col5, @col6, @col7, @col8, @col9, @col10, @col11, @col12)
|
LINES TERMINATED BY '\n' (@col1, @col2, @col3, @col4, @col5, @col6, @col7, @col8, @col9, @col10, @col11, @col12)
|
||||||
SET id = @col2,
|
SET
|
||||||
|
id = @col2,
|
||||||
product_name = @col4,
|
product_name = @col4,
|
||||||
name = @col5,
|
name = @col5,
|
||||||
plant_id = @col7,
|
plant_id = @col7,
|
||||||
|
@ -11,4 +11,3 @@ LOAD DATA LOCAL INFILE ?
|
||||||
entry_date = STR_TO_DATE(@col10, '%Y%m%d'),
|
entry_date = STR_TO_DATE(@col10, '%Y%m%d'),
|
||||||
expiry_date = IFNULL(NULL,STR_TO_DATE(@col11, '%Y%m%d')),
|
expiry_date = IFNULL(NULL,STR_TO_DATE(@col11, '%Y%m%d')),
|
||||||
change_date_time = STR_TO_DATE(@col12, '%Y%m%d%H%i')
|
change_date_time = STR_TO_DATE(@col12, '%Y%m%d%H%i')
|
||||||
|
|
|
@ -16,15 +16,15 @@ module.exports = Self => {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
Self.updateData = async ctx => {
|
Self.updateData = async() => {
|
||||||
const models = Self.app.models;
|
const models = Self.app.models;
|
||||||
|
|
||||||
// Get files checksum
|
// Get files checksum
|
||||||
const tx = await Self.beginTransaction({});
|
const tx = await Self.beginTransaction({});
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const options = {transaction: tx, userId: ctx.req.accessToken.userId};
|
const options = {transaction: tx};
|
||||||
const files = await Self.rawSql('SELECT name, checksum, keyValue FROM edi.fileMultiConfig', null, options);
|
const files = await Self.rawSql('SELECT name, checksum, keyValue FROM edi.fileConfig', null, options);
|
||||||
|
|
||||||
const updatableFiles = [];
|
const updatableFiles = [];
|
||||||
for (const file of files) {
|
for (const file of files) {
|
||||||
|
@ -54,7 +54,7 @@ module.exports = Self => {
|
||||||
|
|
||||||
const tables = await Self.rawSql(`
|
const tables = await Self.rawSql(`
|
||||||
SELECT fileName, toTable, file
|
SELECT fileName, toTable, file
|
||||||
FROM edi.tableMultiConfig
|
FROM edi.tableConfig
|
||||||
WHERE file IN (?)`, [fileNames], options);
|
WHERE file IN (?)`, [fileNames], options);
|
||||||
|
|
||||||
for (const table of tables) {
|
for (const table of tables) {
|
||||||
|
@ -85,7 +85,7 @@ module.exports = Self => {
|
||||||
for (const file of updatableFiles) {
|
for (const file of updatableFiles) {
|
||||||
console.log(`Updating file ${file.name} checksum...`);
|
console.log(`Updating file ${file.name} checksum...`);
|
||||||
await Self.rawSql(`
|
await Self.rawSql(`
|
||||||
UPDATE edi.fileMultiConfig
|
UPDATE edi.fileConfig
|
||||||
SET checksum = ?
|
SET checksum = ?
|
||||||
WHERE name = ?`,
|
WHERE name = ?`,
|
||||||
[file.checksum, file.name], options);
|
[file.checksum, file.name], options);
|
||||||
|
@ -121,8 +121,7 @@ module.exports = Self => {
|
||||||
host: ftpConfig.host,
|
host: ftpConfig.host,
|
||||||
username: ftpConfig.user,
|
username: ftpConfig.user,
|
||||||
password: ftpConfig.password,
|
password: ftpConfig.password,
|
||||||
procotol: 'ftp',
|
procotol: 'ftp'
|
||||||
additionalLftpCommands: 'set ssl:verify-certificate no'
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -133,13 +132,13 @@ module.exports = Self => {
|
||||||
const ftpClient = await getFtpClient();
|
const ftpClient = await getFtpClient();
|
||||||
console.debug(`Checking checksum for file ${file.name}...`);
|
console.debug(`Checking checksum for file ${file.name}...`);
|
||||||
|
|
||||||
ftpClient.cat(`codes/${file.name}.TXT`);
|
ftpClient.cat(`codes/${file.name}.txt`);
|
||||||
|
|
||||||
const response = await new Promise((resolve, reject) => {
|
const response = await new Promise((resolve, reject) => {
|
||||||
ftpClient.exec((err, response) => {
|
ftpClient.exec((err, response) => {
|
||||||
if (err || response.error) {
|
if (err || response.error) {
|
||||||
console.debug(`Error downloading checksum file... ${response.error}`);
|
console.debug(`Error downloading checksum file... ${response.error}`);
|
||||||
return reject(response.error || err);
|
return reject(err);
|
||||||
}
|
}
|
||||||
|
|
||||||
resolve(response);
|
resolve(response);
|
||||||
|
@ -228,7 +227,7 @@ module.exports = Self => {
|
||||||
|
|
||||||
await Self.rawSql(sqlTemplate, [filePath], options);
|
await Self.rawSql(sqlTemplate, [filePath], options);
|
||||||
await Self.rawSql(`
|
await Self.rawSql(`
|
||||||
UPDATE edi.tableMultiConfig
|
UPDATE edi.tableConfig
|
||||||
SET updated = ?
|
SET updated = ?
|
||||||
WHERE fileName = ?
|
WHERE fileName = ?
|
||||||
`, [Date.vnNew(), baseName], options);
|
`, [Date.vnNew(), baseName], options);
|
||||||
|
|
|
@ -47,8 +47,7 @@ module.exports = Self => {
|
||||||
http: {
|
http: {
|
||||||
path: `/:collection/:size/:id/download`,
|
path: `/:collection/:size/:id/download`,
|
||||||
verb: 'GET'
|
verb: 'GET'
|
||||||
},
|
}
|
||||||
accessScopes: ['DEFAULT', 'read:multimedia']
|
|
||||||
});
|
});
|
||||||
|
|
||||||
Self.download = async function(ctx, collection, size, id) {
|
Self.download = async function(ctx, collection, size, id) {
|
||||||
|
@ -68,7 +67,7 @@ module.exports = Self => {
|
||||||
|
|
||||||
if (!image) return false;
|
if (!image) return false;
|
||||||
|
|
||||||
const hasReadRole = await models.ImageCollection.hasReadRole(ctx, collection);
|
const hasReadRole = models.ImageCollection.hasReadRole(ctx, collection);
|
||||||
if (!hasReadRole)
|
if (!hasReadRole)
|
||||||
throw new UserError(`You don't have enough privileges`);
|
throw new UserError(`You don't have enough privileges`);
|
||||||
|
|
||||||
|
@ -88,6 +87,6 @@ module.exports = Self => {
|
||||||
|
|
||||||
await fs.access(file.path);
|
await fs.access(file.path);
|
||||||
const stream = fs.createReadStream(file.path);
|
const stream = fs.createReadStream(file.path);
|
||||||
return [stream, file.contentType, `filename="${fileName}"`];
|
return [stream, file.contentType, `filename="${file.name}"`];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
const fs = require('fs-extra');
|
const fs = require('fs-extra');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const UserError = require('vn-loopback/util/user-error');
|
const UserError = require('vn-loopback/util/user-error');
|
||||||
const isProduction = require('vn-loopback/server/boot/isProduction');
|
|
||||||
|
|
||||||
module.exports = Self => {
|
module.exports = Self => {
|
||||||
Self.remoteMethod('scrub', {
|
Self.remoteMethod('scrub', {
|
||||||
|
@ -44,7 +43,8 @@ module.exports = Self => {
|
||||||
Self.scrub = async function(collection, remove, limit, dryRun, skipLock) {
|
Self.scrub = async function(collection, remove, limit, dryRun, skipLock) {
|
||||||
const $ = Self.app.models;
|
const $ = Self.app.models;
|
||||||
|
|
||||||
dryRun = dryRun || !isProduction(false);
|
const env = process.env.NODE_ENV;
|
||||||
|
dryRun = dryRun || (env && env !== 'production');
|
||||||
|
|
||||||
const instance = await $.ImageCollection.findOne({
|
const instance = await $.ImageCollection.findOne({
|
||||||
fields: ['id'],
|
fields: ['id'],
|
||||||
|
|
|
@ -4,21 +4,20 @@ describe('image download()', () => {
|
||||||
const collection = 'user';
|
const collection = 'user';
|
||||||
const size = '160x160';
|
const size = '160x160';
|
||||||
const employeeId = 1;
|
const employeeId = 1;
|
||||||
const developerId = 9;
|
|
||||||
const jessicaJonesId = 1110;
|
|
||||||
const ctx = {req: {accessToken: {userId: employeeId}}};
|
const ctx = {req: {accessToken: {userId: employeeId}}};
|
||||||
|
|
||||||
it('should return the image content-type of the user', async() => {
|
it('should return the image content-type of the user', async() => {
|
||||||
const image = await models.Image.download(ctx, collection, size, developerId);
|
const userId = 9;
|
||||||
|
const image = await models.Image.download(ctx, collection, size, userId);
|
||||||
const contentType = image[1];
|
const contentType = image[1];
|
||||||
|
|
||||||
expect(contentType).toEqual('image/png');
|
expect(contentType).toEqual('image/png');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should return the user profile picture', async() => {
|
it(`should return false if the user doesn't have image`, async() => {
|
||||||
const image = await models.Image.download(ctx, collection, size, jessicaJonesId);
|
const userId = 1110;
|
||||||
const fileName = image[2];
|
const image = await models.Image.download(ctx, collection, size, userId);
|
||||||
|
|
||||||
expect(fileName).toMatch('1110.png');
|
expect(image).toBeFalse();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -95,7 +95,10 @@ describe('image upload()', () => {
|
||||||
spyOn(containerModel, 'upload');
|
spyOn(containerModel, 'upload');
|
||||||
|
|
||||||
const ctx = {req: {accessToken: {userId: hhrrId}},
|
const ctx = {req: {accessToken: {userId: hhrrId}},
|
||||||
args: {id: itemId, collection: 'user'}
|
args: {
|
||||||
|
id: itemId,
|
||||||
|
collection: 'user'
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
@ -106,7 +109,7 @@ describe('image upload()', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should try to upload a file for the collection "catalog" and throw a privilege error', async() => {
|
it('should try to upload a file for the collection "catalog" and throw a privilege error', async() => {
|
||||||
const ctx = {req: {accessToken: {userId: 1}},
|
const ctx = {req: {accessToken: {userId: hhrrId}},
|
||||||
args: {
|
args: {
|
||||||
id: workerId,
|
id: workerId,
|
||||||
collection: 'catalog'
|
collection: 'catalog'
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
const UserError = require('vn-loopback/util/user-error');
|
const UserError = require('vn-loopback/util/user-error');
|
||||||
const fs = require('fs/promises');
|
const fs = require('fs/promises');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const isProduction = require('vn-loopback/server/boot/isProduction');
|
|
||||||
|
|
||||||
module.exports = Self => {
|
module.exports = Self => {
|
||||||
Self.remoteMethodCtx('upload', {
|
Self.remoteMethodCtx('upload', {
|
||||||
|
@ -42,7 +41,7 @@ module.exports = Self => {
|
||||||
if (!hasWriteRole)
|
if (!hasWriteRole)
|
||||||
throw new UserError(`You don't have enough privileges`);
|
throw new UserError(`You don't have enough privileges`);
|
||||||
|
|
||||||
if (!isProduction())
|
if (process.env.NODE_ENV == 'test')
|
||||||
throw new UserError(`Action not allowed on the test environment`);
|
throw new UserError(`Action not allowed on the test environment`);
|
||||||
|
|
||||||
// Upload file to temporary path
|
// Upload file to temporary path
|
||||||
|
|
|
@ -1,50 +0,0 @@
|
||||||
module.exports = Self => {
|
|
||||||
Self.remoteMethodCtx('getVersion', {
|
|
||||||
description: 'gets app version data',
|
|
||||||
accessType: 'READ',
|
|
||||||
accepts: [{
|
|
||||||
arg: 'app',
|
|
||||||
type: 'string',
|
|
||||||
required: true
|
|
||||||
}],
|
|
||||||
returns: {
|
|
||||||
type: ['object'],
|
|
||||||
root: true
|
|
||||||
},
|
|
||||||
http: {
|
|
||||||
path: `/getVersion`,
|
|
||||||
verb: 'GET'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
Self.getVersion = async(ctx, app) => {
|
|
||||||
const {models} = Self.app;
|
|
||||||
const userId = ctx.req.accessToken.userId;
|
|
||||||
|
|
||||||
const workerFk = await models.WorkerAppTester.findOne({
|
|
||||||
where: {
|
|
||||||
workerFk: userId
|
|
||||||
}
|
|
||||||
});
|
|
||||||
let fields = ['id', 'appName'];
|
|
||||||
|
|
||||||
if (workerFk)
|
|
||||||
fields = fields.concat(['isVersionBetaCritical', 'versionBeta', 'urlBeta']);
|
|
||||||
else
|
|
||||||
fields = fields.concat(['isVersionCritical', 'version', 'urlProduction']);
|
|
||||||
|
|
||||||
const filter = {
|
|
||||||
where: {
|
|
||||||
appName: app
|
|
||||||
},
|
|
||||||
fields,
|
|
||||||
};
|
|
||||||
|
|
||||||
const result = await Self.findOne(filter);
|
|
||||||
return {
|
|
||||||
isVersionCritical: result?.isVersionBetaCritical ?? result?.isVersionCritical,
|
|
||||||
version: result?.versionBeta ?? result?.version,
|
|
||||||
url: result?.urlBeta ?? result?.urlProduction
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
|
@ -1,29 +0,0 @@
|
||||||
const {models} = require('vn-loopback/server/server');
|
|
||||||
|
|
||||||
describe('mobileAppVersionControl getVersion()', () => {
|
|
||||||
const appName = 'delivery';
|
|
||||||
const appNameVersion = '9.2';
|
|
||||||
const appNameVersionBeta = '9.7';
|
|
||||||
beforeAll(async() => {
|
|
||||||
ctx = {
|
|
||||||
req: {
|
|
||||||
accessToken: {},
|
|
||||||
headers: {origin: 'http://localhost'},
|
|
||||||
}
|
|
||||||
};
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should get the version app', async() => {
|
|
||||||
ctx.req.accessToken.userId = 9;
|
|
||||||
const {version} = await models.MobileAppVersionControl.getVersion(ctx, appName);
|
|
||||||
|
|
||||||
expect(version).toEqual(appNameVersion);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should get the beta version app', async() => {
|
|
||||||
ctx.req.accessToken.userId = 66;
|
|
||||||
const {version} = await models.MobileAppVersionControl.getVersion(ctx, appName);
|
|
||||||
|
|
||||||
expect(version).toEqual(appNameVersionBeta);
|
|
||||||
});
|
|
||||||
});
|
|
|
@ -1,20 +0,0 @@
|
||||||
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:mrw="http://www.mrw.es/">
|
|
||||||
<soap:Header>
|
|
||||||
<mrw:AuthInfo>
|
|
||||||
<mrw:CodigoFranquicia><%= mrw.franchiseCode %></mrw:CodigoFranquicia>
|
|
||||||
<mrw:CodigoAbonado><%= clientType %></mrw:CodigoAbonado>
|
|
||||||
<mrw:CodigoDepartamento/>
|
|
||||||
<mrw:UserName><%= mrw.user %></mrw:UserName>
|
|
||||||
<mrw:Password><%= mrw.password %></mrw:Password>
|
|
||||||
</mrw:AuthInfo>
|
|
||||||
</soap:Header>
|
|
||||||
<soap:Body>
|
|
||||||
<mrw:CancelarEnvio>
|
|
||||||
<mrw:request>
|
|
||||||
<mrw:CancelaEnvio>
|
|
||||||
<mrw:NumeroEnvioOriginal><%= externalId %></mrw:NumeroEnvioOriginal>
|
|
||||||
</mrw:CancelaEnvio>
|
|
||||||
</mrw:request>
|
|
||||||
</mrw:CancelarEnvio>
|
|
||||||
</soap:Body>
|
|
||||||
</soap:Envelope>
|
|
|
@ -1,48 +0,0 @@
|
||||||
const axios = require('axios');
|
|
||||||
const fs = require('fs');
|
|
||||||
const ejs = require('ejs');
|
|
||||||
const {DOMParser} = require('xmldom');
|
|
||||||
|
|
||||||
module.exports = Self => {
|
|
||||||
Self.remoteMethod('cancelShipment', {
|
|
||||||
description: 'Cancel a shipment by providing the expedition ID, interacting with MRW WebService',
|
|
||||||
accessType: 'WRITE',
|
|
||||||
accepts: [{
|
|
||||||
arg: 'expeditionFk',
|
|
||||||
type: 'number',
|
|
||||||
required: true
|
|
||||||
}],
|
|
||||||
returns: {
|
|
||||||
type: 'boolean',
|
|
||||||
root: true
|
|
||||||
},
|
|
||||||
http: {
|
|
||||||
path: `/cancelShipment`,
|
|
||||||
verb: 'POST'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
Self.cancelShipment = async expeditionFk => {
|
|
||||||
const models = Self.app.models;
|
|
||||||
|
|
||||||
const mrw = await models.MrwConfig.findOne();
|
|
||||||
const {externalId} = await models.Expedition.findById(expeditionFk);
|
|
||||||
const clientType = await models.MrwConfig.getClientType(expeditionFk);
|
|
||||||
const template = fs.readFileSync(__dirname + '/cancelShipment.ejs', 'utf-8');
|
|
||||||
const renderedXml = ejs.render(template, {mrw, externalId, clientType});
|
|
||||||
const response = await axios.post(mrw.url, renderedXml, {
|
|
||||||
headers: {
|
|
||||||
'Content-Type': 'application/soap+xml; charset=utf-8'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
const xmlString = response.data;
|
|
||||||
const parser = new DOMParser();
|
|
||||||
const xmlDoc = parser.parseFromString(xmlString, 'text/xml');
|
|
||||||
|
|
||||||
await Self.rawSql('CALL util.debugAdd(?,?);', ['cancelShipment', xmlDoc]);
|
|
||||||
|
|
||||||
const result = xmlDoc.getElementsByTagName('Mensaje')[0].textContent;
|
|
||||||
return result.toLowerCase().includes('se ha cancelado correctamente');
|
|
||||||
};
|
|
||||||
};
|
|
|
@ -1,51 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:mrw="http://www.mrw.es/">
|
|
||||||
<soap:Header>
|
|
||||||
<mrw:AuthInfo>
|
|
||||||
<mrw:CodigoFranquicia><%= mrw.franchiseCode %></mrw:CodigoFranquicia>
|
|
||||||
<mrw:CodigoAbonado><%= clientType %></mrw:CodigoAbonado>
|
|
||||||
<mrw:CodigoDepartamento/>
|
|
||||||
<mrw:UserName><%= mrw.user %></mrw:UserName>
|
|
||||||
<mrw:Password><%= mrw.password %></mrw:Password>
|
|
||||||
</mrw:AuthInfo>
|
|
||||||
</soap:Header>
|
|
||||||
<soap:Body>
|
|
||||||
<mrw:TransmEnvio>
|
|
||||||
<mrw:request>
|
|
||||||
<mrw:DatosEntrega>
|
|
||||||
<mrw:Direccion>
|
|
||||||
<mrw:CodigoTipoVia/>
|
|
||||||
<mrw:Via><%= expeditionData.street %></mrw:Via>
|
|
||||||
<mrw:Numero/>
|
|
||||||
<mrw:Resto/>
|
|
||||||
<mrw:CodigoPostal><%= expeditionData.postalCode %></mrw:CodigoPostal>
|
|
||||||
<mrw:Poblacion><%= expeditionData.city %></mrw:Poblacion>
|
|
||||||
<mrw:Provincia/>
|
|
||||||
<mrw:CodigoPais/>
|
|
||||||
</mrw:Direccion>
|
|
||||||
<mrw:Nif><%= expeditionData.fi %></mrw:Nif>
|
|
||||||
<mrw:Nombre><%= expeditionData.clientName %></mrw:Nombre>
|
|
||||||
<mrw:Telefono><%= expeditionData.mobile %></mrw:Telefono>
|
|
||||||
<mrw:Observaciones><%= expeditionData.deliveryObservation %></mrw:Observaciones>
|
|
||||||
</mrw:DatosEntrega>
|
|
||||||
<mrw:DatosServicio>
|
|
||||||
<mrw:Fecha><%= expeditionData.created %></mrw:Fecha>
|
|
||||||
<mrw:Referencia><%= expeditionData.reference %></mrw:Referencia>
|
|
||||||
<mrw:CodigoServicio><%= expeditionData.serviceType %></mrw:CodigoServicio>
|
|
||||||
<mrw:NumeroBultos>1</mrw:NumeroBultos>
|
|
||||||
<mrw:EntregaSabado><%= expeditionData.weekDays %></mrw:EntregaSabado>
|
|
||||||
<mrw:Reembolso/>
|
|
||||||
<mrw:ImporteReembolso/>
|
|
||||||
<mrw:Bultos>
|
|
||||||
<mrw:BultoRequest>
|
|
||||||
<mrw:Alto><%= mrw.defaultHeight %></mrw:Alto>
|
|
||||||
<mrw:Largo><%= mrw.defaultLength %></mrw:Largo>
|
|
||||||
<mrw:Ancho><%= mrw.defaultWidth %></mrw:Ancho>
|
|
||||||
<mrw:Peso><%= mrw.defaultWeight %></mrw:Peso>
|
|
||||||
</mrw:BultoRequest>
|
|
||||||
</mrw:Bultos>
|
|
||||||
</mrw:DatosServicio>
|
|
||||||
</mrw:request>
|
|
||||||
</mrw:TransmEnvio>
|
|
||||||
</soap:Body>
|
|
||||||
</soap:Envelope>
|
|
|
@ -1,91 +0,0 @@
|
||||||
const UserError = require('vn-loopback/util/user-error');
|
|
||||||
|
|
||||||
module.exports = Self => {
|
|
||||||
Self.remoteMethod('createShipment', {
|
|
||||||
description: 'Create an expedition and return a base64Binary label from de MRW WebService',
|
|
||||||
accessType: 'WRITE',
|
|
||||||
accepts: [{
|
|
||||||
arg: 'expeditionFk',
|
|
||||||
type: 'number',
|
|
||||||
required: true
|
|
||||||
}],
|
|
||||||
returns: {
|
|
||||||
type: ['object'],
|
|
||||||
root: true
|
|
||||||
},
|
|
||||||
http: {
|
|
||||||
path: `/createShipment`,
|
|
||||||
verb: 'POST'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
Self.createShipment = async expeditionFk => {
|
|
||||||
const models = Self.app.models;
|
|
||||||
const mrw = await Self.getConfig();
|
|
||||||
const clientType = await models.MrwConfig.getClientType(expeditionFk);
|
|
||||||
|
|
||||||
const today = Date.vnNew();
|
|
||||||
const [hours, minutes] = mrw?.expeditionDeadLine ? mrw.expeditionDeadLine.split(':').map(Number) : [0, 0];
|
|
||||||
|
|
||||||
const deadLine = Date.vnNew();
|
|
||||||
deadLine.setHours(hours, minutes, 0);
|
|
||||||
|
|
||||||
if (today > deadLine && (!mrw.notified || mrw.notified.setHours(0, 0, 0, 0) !== today.setHours(0, 0, 0, 0))) {
|
|
||||||
await models.NotificationQueue.create({notificationFk: 'mrw-deadline'});
|
|
||||||
await mrw.updateAttributes({notified: Date.vnNow()});
|
|
||||||
}
|
|
||||||
|
|
||||||
const query =
|
|
||||||
`SELECT
|
|
||||||
CASE co.code
|
|
||||||
WHEN 'ES' THEN a.postalCode
|
|
||||||
WHEN 'PT' THEN LEFT(a.postalCode, mc.portugalPostCodeTrim)
|
|
||||||
WHEN 'AD' THEN REPLACE(a.postalCode, 'AD', '00')
|
|
||||||
END postalCode,
|
|
||||||
a.city,
|
|
||||||
a.street,
|
|
||||||
co.code countryCode,
|
|
||||||
c.fi,
|
|
||||||
c.name clientName,
|
|
||||||
IFNULL(a.mobile, c.mobile) mobile,
|
|
||||||
DATE_FORMAT(t.shipped, '%d/%m/%Y') created,
|
|
||||||
t.shipped,
|
|
||||||
CONCAT( e.ticketFk, LPAD(e.counter, mc.counterWidth, '0')) reference,
|
|
||||||
LPAD(IF(mw.serviceType IS NULL, ms.serviceType, mw.serviceType), mc.serviceTypeWidth, '0') serviceType,
|
|
||||||
IF(mw.weekdays, 'S', 'N') weekDays,
|
|
||||||
ta.description deliveryObservation
|
|
||||||
FROM expedition e
|
|
||||||
JOIN ticket t ON e.ticketFk = t.id
|
|
||||||
JOIN agencyMode am ON am.id = t.agencyModeFk
|
|
||||||
JOIN mrwService ms ON ms.agencyModeCodeFk = am.code
|
|
||||||
LEFT JOIN mrwServiceWeekday mw ON mw.agencyModeCodeFk = am.code
|
|
||||||
AND mw.weekDays & (1 << WEEKDAY(t.landed))
|
|
||||||
JOIN client c ON t.clientFk = c.id
|
|
||||||
JOIN address a ON t.addressFk = a.id
|
|
||||||
LEFT JOIN ticketObservation ta ON ta.ticketFk = t.id
|
|
||||||
AND ta.observationTypeFk IN (SELECT id FROM observationType ot WHERE ot.code = 'agency')
|
|
||||||
JOIN province p ON a.provinceFk = p.id
|
|
||||||
JOIN country co ON co.id = p.countryFk
|
|
||||||
JOIN mrwConfig mc
|
|
||||||
WHERE e.id = ?
|
|
||||||
LIMIT 1`;
|
|
||||||
|
|
||||||
const [expeditionData] = await Self.rawSql(query, [expeditionFk]);
|
|
||||||
|
|
||||||
if (expeditionData?.shipped.setHours(0, 0, 0, 0) < today.setHours(0, 0, 0, 0))
|
|
||||||
throw new UserError(`This ticket has a shipped date earlier than today`);
|
|
||||||
|
|
||||||
const shipmentResponse = await Self.sendXmlDoc(
|
|
||||||
__dirname + `/createShipment.ejs`,
|
|
||||||
{mrw, expeditionData, clientType},
|
|
||||||
'application/soap+xml'
|
|
||||||
);
|
|
||||||
const shipmentId = Self.getTextByTag(shipmentResponse, 'NumeroEnvio');
|
|
||||||
|
|
||||||
if (!shipmentId) throw new UserError(Self.getTextByTag(shipmentResponse, 'Mensaje'));
|
|
||||||
|
|
||||||
const file = await models.MrwConfig.getLabel(shipmentId, clientType);
|
|
||||||
|
|
||||||
return {shipmentId, file};
|
|
||||||
};
|
|
||||||
};
|
|
|
@ -1,25 +0,0 @@
|
||||||
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:mrw="http://www.mrw.es/">
|
|
||||||
<soapenv:Header>
|
|
||||||
<mrw:AuthInfo>
|
|
||||||
<mrw:CodigoFranquicia><%= mrw.franchiseCode %></mrw:CodigoFranquicia>
|
|
||||||
<mrw:CodigoAbonado><%= clientType %></mrw:CodigoAbonado>
|
|
||||||
<mrw:CodigoDepartamento/>
|
|
||||||
<mrw:UserName><%= mrw.user %></mrw:UserName>
|
|
||||||
<mrw:Password><%= mrw.password %></mrw:Password>
|
|
||||||
</mrw:AuthInfo>
|
|
||||||
</soapenv:Header>
|
|
||||||
<soapenv:Body>
|
|
||||||
<mrw:GetEtiquetaEnvio>
|
|
||||||
<mrw:request>
|
|
||||||
<mrw:NumeroEnvio><%= shipmentId %></mrw:NumeroEnvio>
|
|
||||||
<mrw:NumerosEtiqueta>1</mrw:NumerosEtiqueta>
|
|
||||||
<mrw:SeparadorNumerosEnvio></mrw:SeparadorNumerosEnvio>
|
|
||||||
<mrw:FechaInicioEnvio></mrw:FechaInicioEnvio>
|
|
||||||
<mrw:FechaFinEnvio></mrw:FechaFinEnvio>
|
|
||||||
<mrw:TipoEtiquetaEnvio>0</mrw:TipoEtiquetaEnvio>
|
|
||||||
<mrw:ReportTopMargin>0</mrw:ReportTopMargin>
|
|
||||||
<mrw:ReportLeftMargin>0</mrw:ReportLeftMargin>
|
|
||||||
</mrw:request>
|
|
||||||
</mrw:GetEtiquetaEnvio>
|
|
||||||
</soapenv:Body>
|
|
||||||
</soapenv:Envelope>
|
|
|
@ -1,37 +0,0 @@
|
||||||
module.exports = Self => {
|
|
||||||
Self.remoteMethod('getLabel', {
|
|
||||||
description: 'Return a base64Binary label from de MRW WebService',
|
|
||||||
accessType: 'READ',
|
|
||||||
accepts: [{
|
|
||||||
arg: 'shipmentId',
|
|
||||||
type: 'string',
|
|
||||||
required: true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
arg: 'clientType',
|
|
||||||
type: 'string',
|
|
||||||
required: true
|
|
||||||
},
|
|
||||||
],
|
|
||||||
returns: {
|
|
||||||
type: 'string',
|
|
||||||
root: true
|
|
||||||
},
|
|
||||||
http: {
|
|
||||||
path: `/getLabel`,
|
|
||||||
verb: 'GET'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
Self.getLabel = async(shipmentId, clientType) => {
|
|
||||||
const mrw = await Self.getConfig();
|
|
||||||
|
|
||||||
const getLabelResponse = await Self.sendXmlDoc(
|
|
||||||
__dirname + `/getLabel.ejs`,
|
|
||||||
{mrw, shipmentId, clientType},
|
|
||||||
'text/xml'
|
|
||||||
);
|
|
||||||
|
|
||||||
return Self.getTextByTag(getLabelResponse, 'EtiquetaFile');
|
|
||||||
};
|
|
||||||
};
|
|
|
@ -1,159 +0,0 @@
|
||||||
const models = require('vn-loopback/server/server').models;
|
|
||||||
const axios = require('axios');
|
|
||||||
const fs = require('fs');
|
|
||||||
|
|
||||||
const filter = {notificationFk: 'mrw-deadline'};
|
|
||||||
const mockBase64Binary = 'base64BinaryString';
|
|
||||||
const ticket1 = {
|
|
||||||
'id': '44',
|
|
||||||
'clientFk': 1101,
|
|
||||||
'shipped': Date.vnNew(),
|
|
||||||
'nickname': 'MRW',
|
|
||||||
'addressFk': 1,
|
|
||||||
'agencyModeFk': 999
|
|
||||||
};
|
|
||||||
let expedition;
|
|
||||||
const expedition1 = {
|
|
||||||
'agencyModeFk': 999,
|
|
||||||
'ticketFk': 44,
|
|
||||||
'freightItemFk': 71,
|
|
||||||
'created': '2001-01-01',
|
|
||||||
'counter': 1,
|
|
||||||
'workerFk': 18,
|
|
||||||
'packagingFk': '94',
|
|
||||||
'hostFk': '',
|
|
||||||
'stateTypeFk': 3,
|
|
||||||
'hasNewRoute': 0,
|
|
||||||
'isBox': 71,
|
|
||||||
'editorFk': 100
|
|
||||||
};
|
|
||||||
|
|
||||||
describe('MRWConfig createShipment()', () => {
|
|
||||||
beforeAll(async() => {
|
|
||||||
await models.Agency.create(
|
|
||||||
{'id': 999, 'name': 'mrw'}
|
|
||||||
);
|
|
||||||
|
|
||||||
await models.AgencyMode.create(
|
|
||||||
{'id': 999, 'name': 'mrw', 'agencyFk': 999, 'code': 'mrw'}
|
|
||||||
|
|
||||||
);
|
|
||||||
|
|
||||||
await models.MrwService.create(
|
|
||||||
{'agencyModeCodeFk': 'mrw', 'clientType': '000001', 'serviceType': 105, 'kg': 10}
|
|
||||||
);
|
|
||||||
|
|
||||||
await createMrwConfig();
|
|
||||||
|
|
||||||
await models.Ticket.create(ticket1);
|
|
||||||
expedition = await models.Expedition.create(expedition1);
|
|
||||||
});
|
|
||||||
|
|
||||||
afterAll(async() => {
|
|
||||||
await cleanFixtures();
|
|
||||||
await models.Ticket.destroyAll(ticket1);
|
|
||||||
await models.Expedition.destroyAll(ticket1);
|
|
||||||
});
|
|
||||||
|
|
||||||
beforeEach(async() => {
|
|
||||||
const mockPostResponses = [
|
|
||||||
{data: fs.readFileSync(__dirname + '/mockGetLabel.xml', 'utf-8')},
|
|
||||||
{data: fs.readFileSync(__dirname + '/mockCreateShipment.xml', 'utf-8')}
|
|
||||||
];
|
|
||||||
|
|
||||||
spyOn(axios, 'post').and.callFake(() => Promise.resolve(mockPostResponses.pop()));
|
|
||||||
await cleanFixtures();
|
|
||||||
});
|
|
||||||
|
|
||||||
async function cleanFixtures() {
|
|
||||||
await models.NotificationQueue.destroyAll(filter);
|
|
||||||
await models.MrwConfig.updateAll({id: 1}, {expeditionDeadLine: null, notified: null});
|
|
||||||
}
|
|
||||||
|
|
||||||
async function createMrwConfig() {
|
|
||||||
await models.MrwConfig.create(
|
|
||||||
{
|
|
||||||
'id': 1,
|
|
||||||
'url': 'https://url.com',
|
|
||||||
'user': 'user',
|
|
||||||
'password': 'password',
|
|
||||||
'franchiseCode': 'franchiseCode',
|
|
||||||
'subscriberCode': 'subscriberCode',
|
|
||||||
'clientTypeWidth': 6
|
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
async function getLastNotification() {
|
|
||||||
return models.NotificationQueue.findOne({
|
|
||||||
order: 'id DESC',
|
|
||||||
where: filter
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
it('should create a shipment and return a base64Binary label', async() => {
|
|
||||||
const {file} = await models.MrwConfig.createShipment(expedition.id);
|
|
||||||
|
|
||||||
expect(file).toEqual(mockBase64Binary);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should fail if mrwConfig has no data', async() => {
|
|
||||||
let error;
|
|
||||||
await models.MrwConfig.destroyAll();
|
|
||||||
await models.MrwConfig.createShipment(expedition.id).catch(e => {
|
|
||||||
error = e;
|
|
||||||
}).finally(async() => {
|
|
||||||
expect(error.message).toEqual(`MRW service is not configured`);
|
|
||||||
});
|
|
||||||
await createMrwConfig();
|
|
||||||
|
|
||||||
expect(error).toBeDefined();
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should fail if expeditionFk is not a MrwExpedition', async() => {
|
|
||||||
let error;
|
|
||||||
await models.MrwConfig.createShipment(15).catch(e => {
|
|
||||||
error = e;
|
|
||||||
}).finally(async() => {
|
|
||||||
expect(error.message).toEqual(`ClientType not available`);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should fail if the creation date of this ticket is before the current date', async() => {
|
|
||||||
let error;
|
|
||||||
const yesterday = Date.vnNew();
|
|
||||||
yesterday.setDate(yesterday.getDate() - 1);
|
|
||||||
|
|
||||||
await models.Ticket.updateAll({id: ticket1.id}, {shipped: yesterday});
|
|
||||||
await models.MrwConfig.createShipment(expedition.id).catch(e => {
|
|
||||||
error = e;
|
|
||||||
}).finally(async() => {
|
|
||||||
expect(error.message).toEqual(`This ticket has a shipped date earlier than today`);
|
|
||||||
});
|
|
||||||
await models.Ticket.updateAll({id: ticket1.id}, {shipped: Date.vnNew()});
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should send mail if you are past the dead line and is not notified today', async() => {
|
|
||||||
await models.MrwConfig.updateAll({id: 1}, {expeditionDeadLine: '10:00:00', notified: null});
|
|
||||||
await models.MrwConfig.createShipment(expedition.id);
|
|
||||||
const notification = await getLastNotification();
|
|
||||||
|
|
||||||
expect(notification.notificationFk).toEqual(filter.notificationFk);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should send mail if you are past the dead line and it is notified from another day', async() => {
|
|
||||||
await models.MrwConfig.updateAll({id: 1}, {expeditionDeadLine: '10:00:00', notified: new Date()});
|
|
||||||
await models.MrwConfig.createShipment(expedition.id);
|
|
||||||
const notification = await getLastNotification();
|
|
||||||
|
|
||||||
expect(notification.notificationFk).toEqual(filter.notificationFk);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should not send mail if you are past the dead line and it is notified', async() => {
|
|
||||||
await models.MrwConfig.updateAll({id: 1}, {expeditionDeadLine: '10:00:00', notified: Date.vnNew()});
|
|
||||||
await models.MrwConfig.createShipment(expedition.id);
|
|
||||||
const notification = await getLastNotification();
|
|
||||||
|
|
||||||
expect(notification).toEqual(null);
|
|
||||||
});
|
|
||||||
});
|
|
|
@ -1,16 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
|
||||||
<soap:Body>
|
|
||||||
<TransmEnvioResponse xmlns="http://www.mrw.es/">
|
|
||||||
<TransmEnvioResult>
|
|
||||||
<Estado>1</Estado>
|
|
||||||
<Mensaje />
|
|
||||||
<NumeroSolicitud>1</NumeroSolicitud>
|
|
||||||
<NumeroEnvio>1</NumeroEnvio>
|
|
||||||
<Url>http://url.com</Url>
|
|
||||||
</TransmEnvioResult>
|
|
||||||
</TransmEnvioResponse>
|
|
||||||
</soap:Body>
|
|
||||||
</soap:Envelope>
|
|
|
@ -1,14 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
|
||||||
<soap:Body>
|
|
||||||
<GetEtiquetaEnvioResponse xmlns="http://www.mrw.es/">
|
|
||||||
<GetEtiquetaEnvioResult>
|
|
||||||
<Estado>1</Estado>
|
|
||||||
<Mensaje />
|
|
||||||
<EtiquetaFile>base64BinaryString</EtiquetaFile>
|
|
||||||
</GetEtiquetaEnvioResult>
|
|
||||||
</GetEtiquetaEnvioResponse>
|
|
||||||
</soap:Body>
|
|
||||||
</soap:Envelope>
|
|
|
@ -1,53 +0,0 @@
|
||||||
module.exports = Self => {
|
|
||||||
Self.remoteMethod('getList', {
|
|
||||||
description: 'Get list of the available and active notification subscriptions',
|
|
||||||
accessType: 'READ',
|
|
||||||
accepts: [
|
|
||||||
{
|
|
||||||
arg: 'id',
|
|
||||||
type: 'number',
|
|
||||||
description: 'User to modify',
|
|
||||||
http: {source: 'path'}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
returns: {
|
|
||||||
type: 'object',
|
|
||||||
root: true
|
|
||||||
},
|
|
||||||
http: {
|
|
||||||
path: `/:id/getList`,
|
|
||||||
verb: 'GET'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
Self.getList = async(id, options) => {
|
|
||||||
const activeNotificationsMap = new Map();
|
|
||||||
|
|
||||||
const myOptions = {};
|
|
||||||
|
|
||||||
if (typeof options == 'object')
|
|
||||||
Object.assign(myOptions, options);
|
|
||||||
|
|
||||||
const availableNotificationsMap = await Self.getAvailable(id, myOptions);
|
|
||||||
const activeNotifications = await Self.app.models.NotificationSubscription.find({
|
|
||||||
fields: ['id', 'notificationFk'],
|
|
||||||
include: {relation: 'notification'},
|
|
||||||
where: {userFk: id}
|
|
||||||
}, myOptions);
|
|
||||||
|
|
||||||
for (active of activeNotifications) {
|
|
||||||
activeNotificationsMap.set(active.notificationFk, {
|
|
||||||
id: active.id,
|
|
||||||
notificationFk: active.notificationFk,
|
|
||||||
name: active.notification().name,
|
|
||||||
description: active.notification().description,
|
|
||||||
active: true
|
|
||||||
});
|
|
||||||
availableNotificationsMap.delete(active.notificationFk);
|
|
||||||
}
|
|
||||||
return {
|
|
||||||
active: [...activeNotificationsMap.entries()],
|
|
||||||
available: [...availableNotificationsMap.entries()]
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
|
@ -1,5 +1,4 @@
|
||||||
const {Email} = require('vn-print');
|
const {Email} = require('vn-print');
|
||||||
const isProduction = require('vn-loopback/server/boot/isProduction');
|
|
||||||
|
|
||||||
module.exports = Self => {
|
module.exports = Self => {
|
||||||
Self.remoteMethod('send', {
|
Self.remoteMethod('send', {
|
||||||
|
@ -71,7 +70,7 @@ module.exports = Self => {
|
||||||
const newParams = Object.assign({}, queueParams, sendParams);
|
const newParams = Object.assign({}, queueParams, sendParams);
|
||||||
const email = new Email(queueName, newParams);
|
const email = new Email(queueName, newParams);
|
||||||
|
|
||||||
if (isProduction())
|
if (process.env.NODE_ENV != 'test')
|
||||||
await email.send();
|
await email.send();
|
||||||
|
|
||||||
await queue.updateAttribute('status', statusSent);
|
await queue.updateAttribute('status', statusSent);
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
const models = require('vn-loopback/server/server').models;
|
|
||||||
|
|
||||||
describe('NotificationSubscription getList()', () => {
|
|
||||||
it('should return a list of available and active notifications of a user', async() => {
|
|
||||||
const userId = 9;
|
|
||||||
const {active, available} = await models.NotificationSubscription.getList(userId);
|
|
||||||
const notifications = await models.NotificationSubscription.getAvailable(userId);
|
|
||||||
const totalAvailable = notifications.size - active.length;
|
|
||||||
|
|
||||||
expect(active.length).toEqual(3);
|
|
||||||
expect(available.length).toEqual(totalAvailable);
|
|
||||||
});
|
|
||||||
});
|
|
|
@ -1,70 +0,0 @@
|
||||||
const smtp = require('vn-print/core/smtp');
|
|
||||||
const config = require('vn-print/core/config');
|
|
||||||
|
|
||||||
module.exports = Self => {
|
|
||||||
Self.remoteMethodCtx('sendToSupport', {
|
|
||||||
description: 'Send mail to support',
|
|
||||||
accessType: 'WRITE',
|
|
||||||
accepts: [
|
|
||||||
{
|
|
||||||
arg: 'reason',
|
|
||||||
type: 'string',
|
|
||||||
description: 'The reason'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
arg: 'additionalData',
|
|
||||||
type: 'object',
|
|
||||||
required: true,
|
|
||||||
description: 'The additional data'
|
|
||||||
}
|
|
||||||
],
|
|
||||||
returns: {
|
|
||||||
type: 'object',
|
|
||||||
root: true
|
|
||||||
},
|
|
||||||
http: {
|
|
||||||
path: `/send-to-support`,
|
|
||||||
verb: 'POST'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
Self.sendToSupport = async(ctx, reason, additionalData) => {
|
|
||||||
const emailUser =
|
|
||||||
await Self.app.models.EmailUser.findById(ctx.req.accessToken.userId, {fields: ['email']});
|
|
||||||
|
|
||||||
let html = `<strong>Motivo</strong>:<br/>${reason}<br/>`;
|
|
||||||
html += `<strong>Usuario</strong>:<br/>${ctx.req.accessToken.userId} ${emailUser.email}<br/>`;
|
|
||||||
|
|
||||||
delete additionalData.backError.config.headers.Authorization;
|
|
||||||
const httpRequest = JSON.parse(additionalData?.httpRequest);
|
|
||||||
|
|
||||||
if (httpRequest)
|
|
||||||
delete httpRequest.config.headers.Authorization;
|
|
||||||
additionalData.httpRequest = httpRequest;
|
|
||||||
|
|
||||||
for (const data in additionalData)
|
|
||||||
html += `<strong>${data}</strong>:<br/>${tryParse(additionalData[data])}<br/>`;
|
|
||||||
|
|
||||||
const subjectReason = httpRequest?.data?.error;
|
|
||||||
await smtp.send({
|
|
||||||
to: `${config.app.reportEmail}, ${emailUser.email}`,
|
|
||||||
subject:
|
|
||||||
'[Support-Salix] ' +
|
|
||||||
additionalData?.frontPath + ' ' +
|
|
||||||
subjectReason?.name + ':' +
|
|
||||||
subjectReason?.message,
|
|
||||||
html
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
function tryParse(value) {
|
|
||||||
try {
|
|
||||||
try {
|
|
||||||
value = JSON.parse(value);
|
|
||||||
} catch {}
|
|
||||||
return JSON.stringify(value, null, ' ').split('\n').join('<br>');
|
|
||||||
} catch {
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
|
@ -1,73 +0,0 @@
|
||||||
const {ParameterizedSQL} = require('loopback-connector');
|
|
||||||
const {buildFilter} = require('vn-loopback/util/filter');
|
|
||||||
|
|
||||||
module.exports = Self => {
|
|
||||||
Self.remoteMethod('filter', {
|
|
||||||
description:
|
|
||||||
'Find all postcodes of the model matched by postcode, town, province or country.',
|
|
||||||
accessType: 'READ',
|
|
||||||
accepts: [
|
|
||||||
{
|
|
||||||
arg: 'filter',
|
|
||||||
type: 'object',
|
|
||||||
description: 'Filter defining where, order, offset, and limit - must be a JSON-encoded string',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
returns: {
|
|
||||||
type: ['object'],
|
|
||||||
root: true,
|
|
||||||
},
|
|
||||||
http: {
|
|
||||||
path: `/filter`,
|
|
||||||
verb: 'GET',
|
|
||||||
},
|
|
||||||
});
|
|
||||||
Self.filter = async(filter = {}, options) => {
|
|
||||||
const myOptions = {};
|
|
||||||
if (typeof options == 'object')
|
|
||||||
Object.assign(myOptions, options);
|
|
||||||
|
|
||||||
const conn = Self.dataSource.connector;
|
|
||||||
const where = buildFilter(filter?.where, (param, value) => {
|
|
||||||
switch (param) {
|
|
||||||
case 'search':
|
|
||||||
return {
|
|
||||||
or: [
|
|
||||||
{'pc.code': {like: `%${value}%`}},
|
|
||||||
{'t.name': {like: `%${value}%`}},
|
|
||||||
{'p.name': {like: `%${value}%`}},
|
|
||||||
{'c.name': {like: `%${value}%`}}
|
|
||||||
]
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}) ?? {};
|
|
||||||
delete filter.where;
|
|
||||||
|
|
||||||
const stmts = [];
|
|
||||||
let stmt;
|
|
||||||
stmt = new ParameterizedSQL(`
|
|
||||||
SELECT
|
|
||||||
pc.townFk,
|
|
||||||
t.provinceFk,
|
|
||||||
p.countryFk,
|
|
||||||
pc.code,
|
|
||||||
t.name as town,
|
|
||||||
p.name as province,
|
|
||||||
c.name country
|
|
||||||
FROM
|
|
||||||
postCode pc
|
|
||||||
JOIN town t on t.id = pc.townFk
|
|
||||||
JOIN province p on p.id = t.provinceFk
|
|
||||||
JOIN country c on c.id = p.countryFk
|
|
||||||
`);
|
|
||||||
|
|
||||||
stmt.merge(conn.makeSuffix({where}));
|
|
||||||
stmt.merge(conn.makeLimit(filter));
|
|
||||||
const itemsIndex = stmts.push(stmt) - 1;
|
|
||||||
|
|
||||||
const sql = ParameterizedSQL.join(stmts, ';');
|
|
||||||
const result = await conn.executeStmt(sql, myOptions);
|
|
||||||
|
|
||||||
return itemsIndex === 0 ? result : result[itemsIndex];
|
|
||||||
};
|
|
||||||
};
|
|
|
@ -1,92 +0,0 @@
|
||||||
const {models} = require('vn-loopback/server/server');
|
|
||||||
|
|
||||||
describe('Postcode filter()', () => {
|
|
||||||
it('should retrieve with no filter', async() => {
|
|
||||||
const tx = await models.Postcode.beginTransaction({});
|
|
||||||
const options = {transaction: tx};
|
|
||||||
|
|
||||||
try {
|
|
||||||
const results = await models.Postcode.filter({
|
|
||||||
limit: 1
|
|
||||||
}, options);
|
|
||||||
|
|
||||||
expect(results.length).toEqual(1);
|
|
||||||
await tx.rollback();
|
|
||||||
} catch (e) {
|
|
||||||
await tx.rollback();
|
|
||||||
throw e;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should retrieve with filter as postcode', async() => {
|
|
||||||
const tx = await models.Postcode.beginTransaction({});
|
|
||||||
const options = {transaction: tx};
|
|
||||||
|
|
||||||
try {
|
|
||||||
const results = await models.Postcode.filter({
|
|
||||||
where: {
|
|
||||||
search: 46,
|
|
||||||
}
|
|
||||||
}, options);
|
|
||||||
|
|
||||||
expect(results.length).toEqual(5);
|
|
||||||
await tx.rollback();
|
|
||||||
} catch (e) {
|
|
||||||
await tx.rollback();
|
|
||||||
throw e;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should retrieve with filter as city', async() => {
|
|
||||||
const tx = await models.Postcode.beginTransaction({});
|
|
||||||
const options = {transaction: tx};
|
|
||||||
|
|
||||||
try {
|
|
||||||
const results = await models.Postcode.filter({where: {
|
|
||||||
search: 'Alz',
|
|
||||||
}}, options);
|
|
||||||
|
|
||||||
expect(results.length).toEqual(1);
|
|
||||||
await tx.rollback();
|
|
||||||
} catch (e) {
|
|
||||||
await tx.rollback();
|
|
||||||
throw e;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should retrieve with filter as province', async() => {
|
|
||||||
const tx = await models.Postcode.beginTransaction({});
|
|
||||||
const options = {transaction: tx};
|
|
||||||
|
|
||||||
try {
|
|
||||||
const results = await models.Postcode.filter({where: {
|
|
||||||
search: 'one',
|
|
||||||
}}, options);
|
|
||||||
|
|
||||||
expect(results.length).toEqual(5);
|
|
||||||
await tx.rollback();
|
|
||||||
} catch (e) {
|
|
||||||
await tx.rollback();
|
|
||||||
throw e;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should retrieve with filter as country', async() => {
|
|
||||||
const tx = await models.Postcode.beginTransaction({});
|
|
||||||
const options = {transaction: tx};
|
|
||||||
|
|
||||||
try {
|
|
||||||
const results = await models.Postcode.filter({
|
|
||||||
where: {
|
|
||||||
search: 'Ec',
|
|
||||||
}
|
|
||||||
}, options);
|
|
||||||
|
|
||||||
expect(results.length).toEqual(1);
|
|
||||||
await tx.rollback();
|
|
||||||
} catch (e) {
|
|
||||||
await tx.rollback();
|
|
||||||
throw e;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
|
@ -1,88 +0,0 @@
|
||||||
const axios = require('axios');
|
|
||||||
const UserError = require('vn-loopback/util/user-error');
|
|
||||||
const moment = require('moment');
|
|
||||||
|
|
||||||
module.exports = Self => {
|
|
||||||
Self.remoteMethod('sendOrders', {
|
|
||||||
description: 'Sends a set of orders',
|
|
||||||
accessType: 'WRITE',
|
|
||||||
accepts: [{
|
|
||||||
arg: 'tickets',
|
|
||||||
type: ['number'],
|
|
||||||
required: true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
returns: {
|
|
||||||
type: 'string',
|
|
||||||
root: true
|
|
||||||
},
|
|
||||||
http: {
|
|
||||||
path: `/sendOrders`,
|
|
||||||
verb: 'POST'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
Self.sendOrders = async tickets => {
|
|
||||||
const config = await Self.app.models.QuadmindsApiConfig.findOne();
|
|
||||||
if (!config) throw new UserError('Config params not set');
|
|
||||||
|
|
||||||
if (tickets.length > config.maxObjects)
|
|
||||||
throw new UserError(`Quadminds does not support more than ${config.maxObjects} tickets`);
|
|
||||||
|
|
||||||
let poisData = [];
|
|
||||||
let isOk;
|
|
||||||
for (let offset = 0; !isOk; offset = offset + config.limit) {
|
|
||||||
const pois = await axios.get(`${config.url}pois/search?limit=${config.limit}&offset=${offset}`, {
|
|
||||||
headers: {
|
|
||||||
'Accept': 'application/json',
|
|
||||||
'X-Saas-Apikey': config.key
|
|
||||||
}
|
|
||||||
});
|
|
||||||
pois.data.data.length ? poisData.push(...pois.data.data) : isOk = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
const poiMap = new Map(poisData.map(poi => [poi.code, poi._id]));
|
|
||||||
|
|
||||||
let orders = await Self.rawSql(`
|
|
||||||
SELECT a.id poiCode,
|
|
||||||
t.id code,
|
|
||||||
t.shipped date,
|
|
||||||
'PEDIDO' operation,
|
|
||||||
t.totalWithVat totalAmount,
|
|
||||||
t.totalWithoutVat totalAmountWithoutTaxes,
|
|
||||||
SUM(sv.volume) volume
|
|
||||||
FROM ticket t
|
|
||||||
JOIN address a ON a.id = t.addressFk
|
|
||||||
JOIN saleVolume sv ON sv.ticketFk = t.id
|
|
||||||
WHERE t.id IN (?)
|
|
||||||
GROUP BY t.id
|
|
||||||
`, [tickets]);
|
|
||||||
|
|
||||||
// Transformo code en string ya que lo obtenermos como integer
|
|
||||||
orders = orders.map(order => {
|
|
||||||
return {
|
|
||||||
...order,
|
|
||||||
poiId: poiMap.get(order.poiCode.toString()) || undefined,
|
|
||||||
code: order.code.toString(),
|
|
||||||
date: moment(order.date).format('YYYY-MM-DD'),
|
|
||||||
totalAmount: order.totalAmount || undefined,
|
|
||||||
totalAmountWithoutTaxes: order.totalAmountWithoutTaxes || undefined,
|
|
||||||
timeWindow: [{
|
|
||||||
from: config.orderTimeFrom,
|
|
||||||
to: config.orderTimeTo
|
|
||||||
}],
|
|
||||||
orderMeasures: [{
|
|
||||||
constraintId: 3, // Volumen
|
|
||||||
value: order.volume
|
|
||||||
}]
|
|
||||||
};
|
|
||||||
});
|
|
||||||
|
|
||||||
await axios.post(`${config.url}orders`, orders, {
|
|
||||||
headers: {
|
|
||||||
'Accept': 'application/json',
|
|
||||||
'Content-Type': 'application/json',
|
|
||||||
'X-Saas-Apikey': config.key
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
|
||||||
};
|
|
|
@ -1,87 +0,0 @@
|
||||||
const axios = require('axios');
|
|
||||||
const UserError = require('vn-loopback/util/user-error');
|
|
||||||
|
|
||||||
module.exports = Self => {
|
|
||||||
Self.remoteMethod('sendPois', {
|
|
||||||
description: 'Sends a set of pois',
|
|
||||||
accessType: 'WRITE',
|
|
||||||
accepts: [{
|
|
||||||
arg: 'tickets',
|
|
||||||
type: ['number'],
|
|
||||||
required: true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
returns: {
|
|
||||||
type: 'string',
|
|
||||||
root: true
|
|
||||||
},
|
|
||||||
http: {
|
|
||||||
path: `/sendPois`,
|
|
||||||
verb: 'POST'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
Self.sendPois = async tickets => {
|
|
||||||
const config = await Self.app.models.QuadmindsApiConfig.findOne();
|
|
||||||
if (!config) throw new UserError('Config params not set');
|
|
||||||
|
|
||||||
if (tickets.length > config.maxObjects)
|
|
||||||
throw new UserError(`Quadminds does not support more than ${config.maxObjects} tickets`);
|
|
||||||
|
|
||||||
let pois = await Self.rawSql(`
|
|
||||||
WITH deliveryNotes AS (
|
|
||||||
SELECT t.id, t.routeFk, tn.description
|
|
||||||
FROM ticket t
|
|
||||||
JOIN ticketObservation tn ON tn.ticketFk = t.id
|
|
||||||
JOIN observationType ot ON ot.id = tn.observationTypeFk
|
|
||||||
WHERE ot.code = 'delivery'
|
|
||||||
)
|
|
||||||
SELECT a.id code,
|
|
||||||
c.socialName name,
|
|
||||||
IF(ABS(a.latitude - ROUND(a.latitude)) < 0.000001, NULL, a.latitude) latitude,
|
|
||||||
IF(ABS(a.longitude - ROUND(a.longitude)) < 0.000001, NULL, a.longitude) longitude,
|
|
||||||
a.street,
|
|
||||||
a.city locality,
|
|
||||||
p.name state,
|
|
||||||
co.name country,
|
|
||||||
CONCAT_WS(', ', IFNULL(a.street, ''), IFNULL(a.city, ''), IFNULL(p.name, '')) longAddress,
|
|
||||||
CONCAT(IFNULL(a.mobile, c.mobile)) phoneNumber,
|
|
||||||
dn.description poiDeliveryComments,
|
|
||||||
c.email email
|
|
||||||
FROM ticket t
|
|
||||||
JOIN address a ON a.id = t.addressFk
|
|
||||||
JOIN province p ON p.id = a.provinceFk
|
|
||||||
JOIN country co ON co.id = p.countryFk
|
|
||||||
JOIN client c ON c.id = t.clientFk
|
|
||||||
LEFT JOIN deliveryNotes dn ON dn.id = t.id
|
|
||||||
WHERE t.id IN (?)
|
|
||||||
GROUP BY t.id
|
|
||||||
`, [tickets]);
|
|
||||||
|
|
||||||
// Transformo code en string ya que lo obtenermos como integer
|
|
||||||
pois = pois.map(poi => {
|
|
||||||
return {
|
|
||||||
...poi,
|
|
||||||
code: poi.code.toString(),
|
|
||||||
latitude: poi.latitude || undefined,
|
|
||||||
longitude: poi.longitude || undefined,
|
|
||||||
address: {
|
|
||||||
street: poi.street || undefined,
|
|
||||||
locality: poi.locality || undefined,
|
|
||||||
state: poi.state || undefined,
|
|
||||||
country: poi.country || undefined
|
|
||||||
},
|
|
||||||
poiDeliveryComments: poi.poiDeliveryComments || undefined,
|
|
||||||
phoneNumber: poi.phoneNumber || undefined,
|
|
||||||
email: poi.email || undefined
|
|
||||||
};
|
|
||||||
});
|
|
||||||
|
|
||||||
await axios.post(`${config.url}pois`, pois, {
|
|
||||||
headers: {
|
|
||||||
'Accept': 'application/json',
|
|
||||||
'Content-Type': 'application/json',
|
|
||||||
'X-Saas-Apikey': config.key
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
|
||||||
};
|
|
|
@ -1,7 +1,22 @@
|
||||||
const {models} = require('vn-loopback/server/server');
|
const {models} = require('vn-loopback/server/server');
|
||||||
|
const LoopBackContext = require('loopback-context');
|
||||||
|
|
||||||
describe('getStarredModules()', () => {
|
describe('getStarredModules()', () => {
|
||||||
const ctx = beforeAll.getCtx();
|
const activeCtx = {
|
||||||
|
accessToken: {userId: 9},
|
||||||
|
http: {
|
||||||
|
req: {
|
||||||
|
headers: {origin: 'http://localhost'}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
const ctx = {req: activeCtx};
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
spyOn(LoopBackContext, 'getCurrentContext').and.returnValue({
|
||||||
|
active: activeCtx
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
it(`should return the starred modules for a given user`, async() => {
|
it(`should return the starred modules for a given user`, async() => {
|
||||||
const newStarred = await models.StarredModule.create({workerFk: 9, moduleFk: 'customer', position: 1});
|
const newStarred = await models.StarredModule.create({workerFk: 9, moduleFk: 'customer', position: 1});
|
||||||
|
|
|
@ -1,8 +1,24 @@
|
||||||
const {models} = require('vn-loopback/server/server');
|
const {models} = require('vn-loopback/server/server');
|
||||||
|
const LoopBackContext = require('loopback-context');
|
||||||
|
|
||||||
describe('setPosition()', () => {
|
describe('setPosition()', () => {
|
||||||
const ctx = beforeAll.getCtx();
|
const activeCtx = {
|
||||||
beforeAll.mockLoopBackContext();
|
accessToken: {userId: 9},
|
||||||
|
http: {
|
||||||
|
req: {
|
||||||
|
headers: {origin: 'http://localhost'}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
const ctx = {
|
||||||
|
req: activeCtx
|
||||||
|
};
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
spyOn(LoopBackContext, 'getCurrentContext').and.returnValue({
|
||||||
|
active: activeCtx
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
it('should increase the orders module position by replacing it with clients and vice versa', async() => {
|
it('should increase the orders module position by replacing it with clients and vice versa', async() => {
|
||||||
const tx = await models.StarredModule.beginTransaction({});
|
const tx = await models.StarredModule.beginTransaction({});
|
||||||
|
|
|
@ -1,7 +1,24 @@
|
||||||
const {models} = require('vn-loopback/server/server');
|
const {models} = require('vn-loopback/server/server');
|
||||||
|
const LoopBackContext = require('loopback-context');
|
||||||
|
|
||||||
describe('toggleStarredModule()', () => {
|
describe('toggleStarredModule()', () => {
|
||||||
const ctx = beforeAll.getCtx();
|
const activeCtx = {
|
||||||
|
accessToken: {userId: 9},
|
||||||
|
http: {
|
||||||
|
req: {
|
||||||
|
headers: {origin: 'http://localhost'}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
const ctx = {
|
||||||
|
req: activeCtx
|
||||||
|
};
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
spyOn(LoopBackContext, 'getCurrentContext').and.returnValue({
|
||||||
|
active: activeCtx
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
it('should create a new starred module and then remove it by calling the method again with same args', async() => {
|
it('should create a new starred module and then remove it by calling the method again with same args', async() => {
|
||||||
const starredModule = await models.StarredModule.toggleStarredModule(ctx, 'order');
|
const starredModule = await models.StarredModule.toggleStarredModule(ctx, 'order');
|
||||||
|
@ -9,7 +26,7 @@ describe('toggleStarredModule()', () => {
|
||||||
|
|
||||||
expect(starredModules.length).toEqual(1);
|
expect(starredModules.length).toEqual(1);
|
||||||
expect(starredModule.moduleFk).toEqual('order');
|
expect(starredModule.moduleFk).toEqual('order');
|
||||||
expect(starredModule.workerFk).toEqual(ctx.req.accessToken.userId);
|
expect(starredModule.workerFk).toEqual(activeCtx.accessToken.userId);
|
||||||
expect(starredModule.position).toEqual(starredModules.length);
|
expect(starredModule.position).toEqual(starredModules.length);
|
||||||
|
|
||||||
await models.StarredModule.toggleStarredModule(ctx, 'order');
|
await models.StarredModule.toggleStarredModule(ctx, 'order');
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
module.exports = function(Self) {
|
|
||||||
Self.remoteMethod('getByUser', {
|
|
||||||
description: 'returns the starred modules for the current user',
|
|
||||||
accessType: 'READ',
|
|
||||||
accepts: [{
|
|
||||||
arg: 'userId',
|
|
||||||
type: 'number',
|
|
||||||
description: 'The user id',
|
|
||||||
required: true,
|
|
||||||
http: {source: 'path'}
|
|
||||||
}],
|
|
||||||
returns: {
|
|
||||||
type: 'object',
|
|
||||||
root: true
|
|
||||||
},
|
|
||||||
http: {
|
|
||||||
path: `/:userId/get-by-user`,
|
|
||||||
verb: 'GET'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
Self.getByUser = async userId => {
|
|
||||||
const models = Self.app.models;
|
|
||||||
const appNames = ['hedera'];
|
|
||||||
const filter = {
|
|
||||||
fields: ['appName', 'url'],
|
|
||||||
where: {
|
|
||||||
appName: {inq: appNames},
|
|
||||||
environment: process.env.NODE_ENV ?? 'development',
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const isWorker = await models.Account.findById(userId, {fields: ['id']});
|
|
||||||
if (!isWorker)
|
|
||||||
return models.Url.find(filter);
|
|
||||||
|
|
||||||
appNames.push('salix');
|
|
||||||
return models.Url.find(filter);
|
|
||||||
};
|
|
||||||
};
|
|
|
@ -1,30 +0,0 @@
|
||||||
module.exports = Self => {
|
|
||||||
Self.remoteMethod('getUrl', {
|
|
||||||
description: 'Returns the colling app name',
|
|
||||||
accessType: 'READ',
|
|
||||||
accepts: [
|
|
||||||
{
|
|
||||||
arg: 'app',
|
|
||||||
type: 'string',
|
|
||||||
required: false
|
|
||||||
}
|
|
||||||
],
|
|
||||||
returns: {
|
|
||||||
type: 'object',
|
|
||||||
root: true
|
|
||||||
},
|
|
||||||
http: {
|
|
||||||
path: `/getUrl`,
|
|
||||||
verb: 'get'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
Self.getUrl = async(appName = 'salix') => {
|
|
||||||
const url = await Self.app.models.Url.findOne({
|
|
||||||
where: {
|
|
||||||
appName,
|
|
||||||
environment: process.env.NODE_ENV || 'dev'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
return url?.url;
|
|
||||||
};
|
|
||||||
};
|
|
|
@ -1,19 +0,0 @@
|
||||||
const {models} = require('vn-loopback/server/server');
|
|
||||||
|
|
||||||
describe('getByUser()', () => {
|
|
||||||
const worker = 1;
|
|
||||||
const notWorker = 2;
|
|
||||||
it(`should return only hedera url if not is worker`, async() => {
|
|
||||||
const urls = await models.Url.getByUser(notWorker);
|
|
||||||
|
|
||||||
expect(urls.length).toEqual(1);
|
|
||||||
expect(urls[0].appName).toEqual('hedera');
|
|
||||||
});
|
|
||||||
|
|
||||||
it(`should return more than hedera url`, async() => {
|
|
||||||
const urls = await models.Url.getByUser(worker);
|
|
||||||
|
|
||||||
expect(urls.length).toBeGreaterThan(1);
|
|
||||||
expect(urls.find(url => url.appName == 'salix').appName).toEqual('salix');
|
|
||||||
});
|
|
||||||
});
|
|
|
@ -1,12 +1,12 @@
|
||||||
const models = require('vn-loopback/server/server').models;
|
const models = require('vn-loopback/server/server').models;
|
||||||
|
|
||||||
describe('userConfig getUserConfig()', () => {
|
describe('userConfig getUserConfig()', () => {
|
||||||
const ctx = beforeAll.getCtx();
|
|
||||||
it(`should return the configuration data of a given user`, async() => {
|
it(`should return the configuration data of a given user`, async() => {
|
||||||
const tx = await models.Item.beginTransaction({});
|
const tx = await models.Item.beginTransaction({});
|
||||||
const options = {transaction: tx};
|
const options = {transaction: tx};
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
const ctx = {req: {accessToken: {userId: 9}}};
|
||||||
const result = await models.UserConfig.getUserConfig(ctx, options);
|
const result = await models.UserConfig.getUserConfig(ctx, options);
|
||||||
|
|
||||||
expect(result.warehouseFk).toEqual(1);
|
expect(result.warehouseFk).toEqual(1);
|
||||||
|
|
|
@ -1,11 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
|
|
||||||
<soap12:Body>
|
|
||||||
<DeleteEnvio xmlns="http://82.223.6.71:82">
|
|
||||||
<IdCliente><%= viaexpressConfig.client %></IdCliente>
|
|
||||||
<Usuario><%= viaexpressConfig.user %></Usuario>
|
|
||||||
<Password><%= viaexpressConfig.password %></Password>
|
|
||||||
<etiqueta><%= externalId %></etiqueta>
|
|
||||||
</DeleteEnvio>
|
|
||||||
</soap12:Body>
|
|
||||||
</soap12:Envelope>
|
|
|
@ -1,45 +0,0 @@
|
||||||
const axios = require('axios');
|
|
||||||
const {DOMParser} = require('xmldom');
|
|
||||||
|
|
||||||
module.exports = Self => {
|
|
||||||
Self.remoteMethod('deleteExpedition', {
|
|
||||||
description: 'Delete a shipment by providing the expedition ID, interacting with Viaexpress API',
|
|
||||||
accessType: 'WRITE',
|
|
||||||
accepts: [{
|
|
||||||
arg: 'expeditionFk',
|
|
||||||
type: 'number',
|
|
||||||
required: true
|
|
||||||
}],
|
|
||||||
returns: {
|
|
||||||
type: ['object'],
|
|
||||||
root: true
|
|
||||||
},
|
|
||||||
http: {
|
|
||||||
path: `/deleteExpedition`,
|
|
||||||
verb: 'POST'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
Self.deleteExpedition = async expeditionFk => {
|
|
||||||
const models = Self.app.models;
|
|
||||||
|
|
||||||
const viaexpressConfig = await models.ViaexpressConfig.findOne({
|
|
||||||
fields: ['url']
|
|
||||||
});
|
|
||||||
|
|
||||||
const renderedXml = await models.ViaexpressConfig.deleteExpeditionRenderer(expeditionFk);
|
|
||||||
const response = await axios.post(`${viaexpressConfig.url}ServicioVxClientes.asmx`, renderedXml, {
|
|
||||||
headers: {
|
|
||||||
'Content-Type': 'application/soap+xml; charset=utf-8'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
const xmlString = response.data;
|
|
||||||
const parser = new DOMParser();
|
|
||||||
const xmlDoc = parser.parseFromString(xmlString, 'text/xml');
|
|
||||||
const resultElement = xmlDoc.getElementsByTagName('DeleteEnvioResult')[0];
|
|
||||||
const result = resultElement.textContent;
|
|
||||||
|
|
||||||
return result;
|
|
||||||
};
|
|
||||||
};
|
|
|
@ -1,44 +0,0 @@
|
||||||
const fs = require('fs');
|
|
||||||
const ejs = require('ejs');
|
|
||||||
|
|
||||||
module.exports = Self => {
|
|
||||||
Self.remoteMethod('deleteExpeditionRenderer', {
|
|
||||||
description: 'Renders the data from an XML',
|
|
||||||
accessType: 'READ',
|
|
||||||
accepts: [{
|
|
||||||
arg: 'expeditionFk',
|
|
||||||
type: 'number',
|
|
||||||
required: true
|
|
||||||
}],
|
|
||||||
returns: {
|
|
||||||
type: ['object'],
|
|
||||||
root: true
|
|
||||||
},
|
|
||||||
http: {
|
|
||||||
path: `/deleteExpeditionRenderer`,
|
|
||||||
verb: 'GET'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
Self.deleteExpeditionRenderer = async expeditionFk => {
|
|
||||||
const models = Self.app.models;
|
|
||||||
|
|
||||||
const viaexpressConfig = await models.ViaexpressConfig.findOne({
|
|
||||||
fields: ['client', 'user', 'password']
|
|
||||||
});
|
|
||||||
|
|
||||||
const expedition = await models.Expedition.findOne({
|
|
||||||
fields: ['id', 'externalId'],
|
|
||||||
where: {id: expeditionFk}
|
|
||||||
});
|
|
||||||
|
|
||||||
const data = {
|
|
||||||
viaexpressConfig,
|
|
||||||
externalId: expedition.externalId
|
|
||||||
};
|
|
||||||
|
|
||||||
const template = fs.readFileSync(__dirname + '/deleteExpedition.ejs', 'utf-8');
|
|
||||||
const renderedXml = ejs.render(template, data);
|
|
||||||
return renderedXml;
|
|
||||||
};
|
|
||||||
};
|
|
|
@ -1,45 +0,0 @@
|
||||||
const axios = require('axios');
|
|
||||||
const {DOMParser} = require('xmldom');
|
|
||||||
|
|
||||||
module.exports = Self => {
|
|
||||||
Self.remoteMethod('internationalExpedition', {
|
|
||||||
description: 'Create an expedition and return a label',
|
|
||||||
accessType: 'WRITE',
|
|
||||||
accepts: [{
|
|
||||||
arg: 'expeditionFk',
|
|
||||||
type: 'number',
|
|
||||||
required: true
|
|
||||||
}],
|
|
||||||
returns: {
|
|
||||||
type: ['object'],
|
|
||||||
root: true
|
|
||||||
},
|
|
||||||
http: {
|
|
||||||
path: `/internationalExpedition`,
|
|
||||||
verb: 'POST'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
Self.internationalExpedition = async (expeditionFk) => {
|
|
||||||
const models = Self.app.models;
|
|
||||||
|
|
||||||
const viaexpressConfig = await models.ViaexpressConfig.findOne({
|
|
||||||
fields: ['url']
|
|
||||||
});
|
|
||||||
|
|
||||||
const renderedXml = await models.ViaexpressConfig.renderer(expeditionFk);
|
|
||||||
const response = await axios.post(`${viaexpressConfig.url}ServicioVxClientes.asmx`, renderedXml, {
|
|
||||||
headers: {
|
|
||||||
'Content-Type': 'application/soap+xml; charset=utf-8'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
const xmlString = response.data;
|
|
||||||
const parser = new DOMParser();
|
|
||||||
const xmlDoc = parser.parseFromString(xmlString, 'text/xml');
|
|
||||||
const referenciaVxElement = xmlDoc.getElementsByTagName('ReferenciaVx')[0];
|
|
||||||
const referenciaVx = referenciaVxElement.textContent;
|
|
||||||
|
|
||||||
return referenciaVx;
|
|
||||||
};
|
|
||||||
};
|
|
|
@ -1,127 +0,0 @@
|
||||||
const fs = require('fs');
|
|
||||||
const ejs = require('ejs');
|
|
||||||
|
|
||||||
module.exports = Self => {
|
|
||||||
Self.remoteMethod('renderer', {
|
|
||||||
description: 'Renders the data from an XML',
|
|
||||||
accessType: 'READ',
|
|
||||||
accepts: [{
|
|
||||||
arg: 'expeditionFk',
|
|
||||||
type: 'number',
|
|
||||||
required: true
|
|
||||||
}],
|
|
||||||
returns: {
|
|
||||||
type: ['object'],
|
|
||||||
root: true
|
|
||||||
},
|
|
||||||
http: {
|
|
||||||
path: `/renderer`,
|
|
||||||
verb: 'GET'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
Self.renderer = async expeditionFk => {
|
|
||||||
const models = Self.app.models;
|
|
||||||
|
|
||||||
const viaexpressConfig = await models.ViaexpressConfig.findOne({
|
|
||||||
fields: ['client', 'user', 'password', 'defaultWeight', 'deliveryType', 'agencyModeFk']
|
|
||||||
});
|
|
||||||
|
|
||||||
const expedition = await models.Expedition.findOne({
|
|
||||||
fields: ['id', 'ticketFk'],
|
|
||||||
where: {id: expeditionFk},
|
|
||||||
include: [
|
|
||||||
{
|
|
||||||
relation: 'ticket',
|
|
||||||
scope: {
|
|
||||||
fields: ['shipped', 'addressFk', 'clientFk', 'companyFk', 'agencyModeFk'],
|
|
||||||
include: [
|
|
||||||
{
|
|
||||||
relation: 'client',
|
|
||||||
scope: {
|
|
||||||
fields: ['mobile', 'phone', 'email']
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
relation: 'address',
|
|
||||||
scope: {
|
|
||||||
fields: [
|
|
||||||
'nickname',
|
|
||||||
'street',
|
|
||||||
'postalCode',
|
|
||||||
'city',
|
|
||||||
'mobile',
|
|
||||||
'phone',
|
|
||||||
'provinceFk'
|
|
||||||
],
|
|
||||||
include: {
|
|
||||||
relation: 'province',
|
|
||||||
scope: {
|
|
||||||
fields: ['name', 'countryFk'],
|
|
||||||
include: {
|
|
||||||
relation: 'country',
|
|
||||||
scope: {
|
|
||||||
fields: ['code'],
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
relation: 'company',
|
|
||||||
scope: {
|
|
||||||
fields: ['clientFk'],
|
|
||||||
include: {
|
|
||||||
relation: 'client',
|
|
||||||
scope: {
|
|
||||||
fields: ['socialName', 'mobile', 'phone', 'email', 'defaultAddressFk'],
|
|
||||||
include: {
|
|
||||||
relation: 'defaultAddress',
|
|
||||||
scope: {
|
|
||||||
fields: [
|
|
||||||
'street',
|
|
||||||
'postalCode',
|
|
||||||
'city',
|
|
||||||
'mobile',
|
|
||||||
'phone',
|
|
||||||
'provinceFk'
|
|
||||||
],
|
|
||||||
include: {
|
|
||||||
relation: 'province',
|
|
||||||
scope: {
|
|
||||||
fields: ['name']
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
});
|
|
||||||
|
|
||||||
const ticket = expedition.ticket();
|
|
||||||
const sender = ticket.company().client();
|
|
||||||
const shipped = ticket.shipped.toISOString();
|
|
||||||
const isInterdia = (ticket.agencyModeFk === viaexpressConfig.agencyModeFk);
|
|
||||||
const data = {
|
|
||||||
viaexpressConfig,
|
|
||||||
sender,
|
|
||||||
senderAddress: sender.defaultAddress(),
|
|
||||||
client: ticket.client(),
|
|
||||||
address: ticket.address(),
|
|
||||||
shipped,
|
|
||||||
isInterdia
|
|
||||||
};
|
|
||||||
|
|
||||||
const template = fs.readFileSync(__dirname + '/template.ejs', 'utf-8');
|
|
||||||
const renderedXml = ejs.render(template, data);
|
|
||||||
return renderedXml;
|
|
||||||
};
|
|
||||||
};
|
|
|
@ -1,52 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
|
|
||||||
<soap12:Body>
|
|
||||||
<PutExpedicionInternacional xmlns="http://82.223.6.71:82">
|
|
||||||
<ObjetoEnvio>
|
|
||||||
<Peso><%= viaexpressConfig.defaultWeight %></Peso>
|
|
||||||
<Bultos>1</Bultos>
|
|
||||||
<Reembolso>0</Reembolso>
|
|
||||||
<Fecha><%= shipped %></Fecha>
|
|
||||||
<ConRetorno>0</ConRetorno>
|
|
||||||
<Tipo><%= viaexpressConfig.deliveryType %></Tipo>
|
|
||||||
<Debidos>0</Debidos>
|
|
||||||
<Asegurado>0</Asegurado>
|
|
||||||
<Imprimir>0</Imprimir>
|
|
||||||
<ConDevolucionAlbaran>0</ConDevolucionAlbaran>
|
|
||||||
<Intradia><%= isInterdia %></Intradia>
|
|
||||||
<Observaciones></Observaciones>
|
|
||||||
<AlbaranRemitente></AlbaranRemitente>
|
|
||||||
<Modo>0</Modo>
|
|
||||||
<TextoAgencia></TextoAgencia>
|
|
||||||
<Terminal></Terminal>
|
|
||||||
<ObjetoRemitente>
|
|
||||||
<RazonSocial><%= sender.socialName %></RazonSocial>
|
|
||||||
<Domicilio><%= senderAddress.street %></Domicilio>
|
|
||||||
<Cpostal><%= senderAddress.postalCode %></Cpostal>
|
|
||||||
<Poblacion><%= senderAddress.city %></Poblacion>
|
|
||||||
<Provincia><%= senderAddress.province().name %></Provincia>
|
|
||||||
<Contacto></Contacto>
|
|
||||||
<Telefono><%= senderAddress.mobile || senderAddress.phone || sender.mobile || sender.phone %></Telefono>
|
|
||||||
<Email><%= sender.email %></Email>
|
|
||||||
</ObjetoRemitente>
|
|
||||||
<ObjetoDestinatario>
|
|
||||||
<RazonSocial><%= address.nickname %></RazonSocial>
|
|
||||||
<Domicilio><%= address.street %></Domicilio>
|
|
||||||
<Cpostal><%= address.postalCode %></Cpostal>
|
|
||||||
<Poblacion><%= address.city %></Poblacion>
|
|
||||||
<Municipio></Municipio>
|
|
||||||
<Provincia><%= address.province().name %></Provincia>
|
|
||||||
<Contacto></Contacto>
|
|
||||||
<Telefono><%= address.mobile || address.phone || client.mobile || client.phone %></Telefono>
|
|
||||||
<Email><%= client.email %></Email>
|
|
||||||
<Pais><%= address.province().country().code %></Pais>
|
|
||||||
</ObjetoDestinatario>
|
|
||||||
<ObjetoLogin>
|
|
||||||
<IdCliente><%= viaexpressConfig.client %></IdCliente>
|
|
||||||
<Usuario><%= viaexpressConfig.user %></Usuario>
|
|
||||||
<Password><%= viaexpressConfig.password %></Password>
|
|
||||||
</ObjetoLogin>
|
|
||||||
</ObjetoEnvio>
|
|
||||||
</PutExpedicionInternacional>
|
|
||||||
</soap12:Body>
|
|
||||||
</soap12:Envelope>
|
|
|
@ -1,29 +0,0 @@
|
||||||
module.exports = Self => {
|
|
||||||
Self.remoteMethodCtx('killSession', {
|
|
||||||
description: 'Kill session',
|
|
||||||
accepts: [{
|
|
||||||
arg: 'userId',
|
|
||||||
type: 'integer',
|
|
||||||
description: 'The user id',
|
|
||||||
required: true,
|
|
||||||
}, {
|
|
||||||
arg: 'created',
|
|
||||||
type: 'date',
|
|
||||||
description: 'The created time',
|
|
||||||
required: true,
|
|
||||||
}],
|
|
||||||
accessType: 'WRITE',
|
|
||||||
http: {
|
|
||||||
path: `/killSession`,
|
|
||||||
verb: 'POST'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
Self.killSession = async function(ctx, userId, created) {
|
|
||||||
await Self.app.models.VnUser.userSecurity(ctx, ctx.req.accessToken.userId);
|
|
||||||
const tokens = await Self.app.models.AccessToken.find({where: {userId, created}});
|
|
||||||
if (!tokens?.length) return;
|
|
||||||
for (const token of tokens)
|
|
||||||
await Self.app.models.AccessToken.deleteById(token.id);
|
|
||||||
};
|
|
||||||
};
|
|
|
@ -23,7 +23,13 @@ module.exports = Self => {
|
||||||
let models = Self.app.models;
|
let models = Self.app.models;
|
||||||
|
|
||||||
let user = await Self.findById(userId, {
|
let user = await Self.findById(userId, {
|
||||||
fields: ['id', 'name', 'nickname', 'email', 'lang']
|
fields: ['id', 'name', 'nickname', 'email', 'lang'],
|
||||||
|
include: {
|
||||||
|
relation: 'userConfig',
|
||||||
|
scope: {
|
||||||
|
fields: ['darkMode']
|
||||||
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
let roles = await models.RoleMapping.find({
|
let roles = await models.RoleMapping.find({
|
||||||
|
|
|
@ -1,72 +0,0 @@
|
||||||
module.exports = Self => {
|
|
||||||
Self.remoteMethodCtx('acls', {
|
|
||||||
description: 'Get all of the current user acls',
|
|
||||||
returns: {
|
|
||||||
type: 'Object',
|
|
||||||
root: true
|
|
||||||
},
|
|
||||||
http: {
|
|
||||||
path: '/acls',
|
|
||||||
verb: 'GET'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
const staticAcls = new Map();
|
|
||||||
const app = require('vn-loopback/server/server');
|
|
||||||
app.on('started', function() {
|
|
||||||
for (const model of app.models()) {
|
|
||||||
for (const acl of model.settings.acls) {
|
|
||||||
if (acl.principalType == 'ROLE' && acl.permission == 'ALLOW') {
|
|
||||||
const staticAcl = {
|
|
||||||
model: model.name,
|
|
||||||
property: '*',
|
|
||||||
accessType: acl.accessType,
|
|
||||||
permission: acl.permission,
|
|
||||||
principalType: acl.principalType,
|
|
||||||
principalId: acl.principalId,
|
|
||||||
};
|
|
||||||
if (staticAcls.has(acl.principalId))
|
|
||||||
staticAcls.get(acl.principalId).push(staticAcl);
|
|
||||||
else
|
|
||||||
staticAcls.set(acl.principalId, [staticAcl]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
Self.acls = async function(ctx) {
|
|
||||||
const models = Self.app.models;
|
|
||||||
const acls = [];
|
|
||||||
const userId = ctx.req.accessToken.userId;
|
|
||||||
if (userId) {
|
|
||||||
const roleMapping = await models.RoleMapping.find({
|
|
||||||
where: {
|
|
||||||
principalId: userId
|
|
||||||
},
|
|
||||||
include: [
|
|
||||||
{
|
|
||||||
relation: 'role',
|
|
||||||
scope: {
|
|
||||||
fields: [
|
|
||||||
'name'
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
});
|
|
||||||
const dynamicAcls = await models.ACL.find({
|
|
||||||
where: {
|
|
||||||
principalId: {
|
|
||||||
inq: roleMapping.map(rm => rm.role().name)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
dynamicAcls.forEach(acl => acls.push(acl));
|
|
||||||
staticAcls.get('$authenticated').forEach(acl => acls.push(acl));
|
|
||||||
} else
|
|
||||||
staticAcls.get('$unauthenticated').forEach(acl => acls.push(acl));
|
|
||||||
|
|
||||||
staticAcls.get('$everyone').forEach(acl => acls.push(acl));
|
|
||||||
return acls;
|
|
||||||
};
|
|
||||||
};
|
|
|
@ -47,7 +47,7 @@ module.exports = Self => {
|
||||||
const user = await Self.findById(userId, {fields: ['hasGrant']}, myOptions);
|
const user = await Self.findById(userId, {fields: ['hasGrant']}, myOptions);
|
||||||
|
|
||||||
const userToUpdate = await Self.findById(id, {
|
const userToUpdate = await Self.findById(id, {
|
||||||
fields: ['id', 'name', 'hasGrant', 'roleFk', 'password', 'email'],
|
fields: ['id', 'name', 'hasGrant', 'roleFk', 'password'],
|
||||||
include: {
|
include: {
|
||||||
relation: 'role',
|
relation: 'role',
|
||||||
scope: {
|
scope: {
|
||||||
|
@ -68,7 +68,7 @@ module.exports = Self => {
|
||||||
userToUpdate.hasGrant = hasGrant;
|
userToUpdate.hasGrant = hasGrant;
|
||||||
|
|
||||||
if (roleFk) {
|
if (roleFk) {
|
||||||
const role = await models.VnRole.findById(roleFk, {fields: ['name']}, myOptions);
|
const role = await models.Role.findById(roleFk, {fields: ['name']}, myOptions);
|
||||||
const hasRole = await Self.hasRole(userId, role.name, myOptions);
|
const hasRole = await Self.hasRole(userId, role.name, myOptions);
|
||||||
|
|
||||||
if (!hasRole)
|
if (!hasRole)
|
||||||
|
|
|
@ -7,11 +7,6 @@ module.exports = Self => {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
description: 'The user name or email',
|
description: 'The user name or email',
|
||||||
required: true
|
required: true
|
||||||
},
|
|
||||||
{
|
|
||||||
arg: 'app',
|
|
||||||
type: 'string',
|
|
||||||
description: 'The directory for mail'
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
http: {
|
http: {
|
||||||
|
@ -20,7 +15,7 @@ module.exports = Self => {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
Self.recoverPassword = async function(user, app) {
|
Self.recoverPassword = async function(user) {
|
||||||
const models = Self.app.models;
|
const models = Self.app.models;
|
||||||
|
|
||||||
const usesEmail = user.indexOf('@') !== -1;
|
const usesEmail = user.indexOf('@') !== -1;
|
||||||
|
@ -29,12 +24,11 @@ module.exports = Self => {
|
||||||
fields: ['email'],
|
fields: ['email'],
|
||||||
where: {name: user}
|
where: {name: user}
|
||||||
});
|
});
|
||||||
if (!account) return;
|
|
||||||
user = account.email;
|
user = account.email;
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await Self.resetPassword({email: user, emailTemplate: 'recover-password', app});
|
await Self.resetPassword({email: user, emailTemplate: 'recover-password'});
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
if (err.code === 'EMAIL_NOT_FOUND')
|
if (err.code === 'EMAIL_NOT_FOUND')
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -1,66 +0,0 @@
|
||||||
const {models} = require('vn-loopback/server/server');
|
|
||||||
|
|
||||||
module.exports = Self => {
|
|
||||||
Self.remoteMethodCtx('renewToken', {
|
|
||||||
description: 'Checks if the token has more than renewPeriod seconds to live and if so, renews it',
|
|
||||||
accessType: 'WRITE',
|
|
||||||
accepts: [],
|
|
||||||
returns: {
|
|
||||||
type: 'Object',
|
|
||||||
root: true
|
|
||||||
},
|
|
||||||
http: {
|
|
||||||
path: `/renewToken`,
|
|
||||||
verb: 'POST'
|
|
||||||
},
|
|
||||||
accessScopes: ['DEFAULT', 'read:multimedia']});
|
|
||||||
|
|
||||||
Self.renewToken = async function(ctx) {
|
|
||||||
let createTokenOptions = {};
|
|
||||||
let token; let isNotExceeded;
|
|
||||||
try {
|
|
||||||
token = ctx.req.accessToken;
|
|
||||||
|
|
||||||
const {courtesyTime} = await models.AccessTokenConfig.findOne({
|
|
||||||
fields: ['courtesyTime']
|
|
||||||
});
|
|
||||||
isNotExceeded = await Self.validateToken(ctx);
|
|
||||||
if (isNotExceeded)
|
|
||||||
return token;
|
|
||||||
|
|
||||||
// Schedule to remove current token
|
|
||||||
setTimeout(async() => {
|
|
||||||
try {
|
|
||||||
await Self.logout(token.id);
|
|
||||||
} catch (error) {
|
|
||||||
// FIXME: Crash if do throw new Error(error)
|
|
||||||
}
|
|
||||||
}, courtesyTime * 1000);
|
|
||||||
|
|
||||||
// Get scopes
|
|
||||||
const {scopes} = token;
|
|
||||||
if (scopes)
|
|
||||||
createTokenOptions = {scopes: [scopes[0]]};
|
|
||||||
// Create new accessToken
|
|
||||||
const user = await Self.findById(token.userId);
|
|
||||||
const accessToken = await user.accessTokens.create(createTokenOptions);
|
|
||||||
|
|
||||||
return {id: accessToken.id, ttl: accessToken.ttl};
|
|
||||||
} catch (error) {
|
|
||||||
const body = {
|
|
||||||
error: error.message,
|
|
||||||
userId: token?.userId ?? null,
|
|
||||||
token: token?.id,
|
|
||||||
scopes: token?.scopes,
|
|
||||||
createTokenOptions,
|
|
||||||
isNotExceeded
|
|
||||||
};
|
|
||||||
await handleError(JSON.stringify(body));
|
|
||||||
throw new Error(error);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
async function handleError(body) {
|
|
||||||
await models.Application.rawSql('CALL util.debugAdd(?,?);', ['renewToken', body]);
|
|
||||||
}
|
|
|
@ -1,27 +0,0 @@
|
||||||
|
|
||||||
module.exports = Self => {
|
|
||||||
Self.remoteMethodCtx('shareToken', {
|
|
||||||
description: 'Returns token to view files or images and share it',
|
|
||||||
accessType: 'WRITE',
|
|
||||||
accepts: [],
|
|
||||||
returns: {
|
|
||||||
type: 'Object',
|
|
||||||
root: true
|
|
||||||
},
|
|
||||||
http: {
|
|
||||||
path: `/shareToken`,
|
|
||||||
verb: 'GET'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
Self.shareToken = async function(ctx) {
|
|
||||||
const {accessToken: token} = ctx.req;
|
|
||||||
|
|
||||||
const user = await Self.findById(token.userId);
|
|
||||||
const multimediaToken = await user.accessTokens.create({
|
|
||||||
scopes: ['read:multimedia']
|
|
||||||
});
|
|
||||||
|
|
||||||
return {multimediaToken};
|
|
||||||
};
|
|
||||||
};
|
|
|
@ -1,97 +0,0 @@
|
||||||
const ForbiddenError = require('vn-loopback/util/forbiddenError');
|
|
||||||
const UserError = require('vn-loopback/util/user-error');
|
|
||||||
|
|
||||||
module.exports = Self => {
|
|
||||||
Self.remoteMethodCtx('signIn', {
|
|
||||||
description: 'Login a user with username/email and password',
|
|
||||||
accepts: [
|
|
||||||
{
|
|
||||||
arg: 'user',
|
|
||||||
type: 'String',
|
|
||||||
description: 'The user name or email',
|
|
||||||
required: true
|
|
||||||
}, {
|
|
||||||
arg: 'password',
|
|
||||||
type: 'String',
|
|
||||||
description: 'The password'
|
|
||||||
}
|
|
||||||
],
|
|
||||||
returns: {
|
|
||||||
type: 'object',
|
|
||||||
root: true
|
|
||||||
},
|
|
||||||
http: {
|
|
||||||
path: `/sign-in`,
|
|
||||||
verb: 'POST'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
Self.signIn = async function(ctx, user, password, options) {
|
|
||||||
const myOptions = {};
|
|
||||||
if (typeof options == 'object')
|
|
||||||
Object.assign(myOptions, options);
|
|
||||||
|
|
||||||
const where = Self.userUses(user);
|
|
||||||
const vnUser = await Self.findOne({
|
|
||||||
fields: ['id', 'name', 'password', 'active', 'email', 'passExpired', 'twoFactor'],
|
|
||||||
where
|
|
||||||
}, myOptions);
|
|
||||||
|
|
||||||
const validCredentials = vnUser
|
|
||||||
&& await vnUser.hasPassword(password);
|
|
||||||
|
|
||||||
if (validCredentials) {
|
|
||||||
if (!vnUser.active)
|
|
||||||
throw new UserError('User disabled');
|
|
||||||
await Self.sendTwoFactor(ctx, vnUser, myOptions);
|
|
||||||
await Self.passExpired(vnUser, myOptions);
|
|
||||||
|
|
||||||
if (vnUser.twoFactor)
|
|
||||||
throw new ForbiddenError(null, 'REQUIRES_2FA');
|
|
||||||
}
|
|
||||||
return Self.validateLogin(user, password, ctx);
|
|
||||||
};
|
|
||||||
|
|
||||||
Self.passExpired = async vnUser => {
|
|
||||||
const today = Date.vnNew();
|
|
||||||
today.setHours(0, 0, 0, 0);
|
|
||||||
|
|
||||||
if (vnUser.passExpired && vnUser.passExpired.getTime() <= today.getTime()) {
|
|
||||||
const err = new UserError('Pass expired', 'passExpired');
|
|
||||||
err.details = {userId: vnUser.id, twoFactor: vnUser.twoFactor ? true : false};
|
|
||||||
throw err;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
Self.sendTwoFactor = async(ctx, vnUser, myOptions) => {
|
|
||||||
if (vnUser.twoFactor === 'email') {
|
|
||||||
const $ = Self.app.models;
|
|
||||||
|
|
||||||
const min = 100000;
|
|
||||||
const max = 999999;
|
|
||||||
const code = String(Math.floor(Math.random() * (max - min + 1)) + min);
|
|
||||||
const maxTTL = ((60 * 1000) * 5); // 5 min
|
|
||||||
await $.AuthCode.upsertWithWhere({userFk: vnUser.id}, {
|
|
||||||
userFk: vnUser.id,
|
|
||||||
code: code,
|
|
||||||
expires: Date.vnNow() + maxTTL
|
|
||||||
}, myOptions);
|
|
||||||
|
|
||||||
const headers = ctx.req.headers;
|
|
||||||
const platform = headers['sec-ch-ua-platform']?.replace(/['"=]+/g, '');
|
|
||||||
const browser = headers['sec-ch-ua']?.replace(/['"=]+/g, '');
|
|
||||||
const params = {
|
|
||||||
args: {
|
|
||||||
recipientId: vnUser.id,
|
|
||||||
recipient: vnUser.email,
|
|
||||||
code: code,
|
|
||||||
ip: ctx.req?.connection?.remoteAddress,
|
|
||||||
device: platform && browser ? platform + ', ' + browser : headers['user-agent'],
|
|
||||||
},
|
|
||||||
req: {getLocale: ctx.req.getLocale},
|
|
||||||
};
|
|
||||||
|
|
||||||
await Self.sendTemplate(params, 'auth-code', true);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
};
|
|
|
@ -0,0 +1,68 @@
|
||||||
|
const UserError = require('vn-loopback/util/user-error');
|
||||||
|
|
||||||
|
module.exports = Self => {
|
||||||
|
Self.remoteMethod('signIn', {
|
||||||
|
description: 'Login a user with username/email and password',
|
||||||
|
accepts: [
|
||||||
|
{
|
||||||
|
arg: 'user',
|
||||||
|
type: 'String',
|
||||||
|
description: 'The user name or email',
|
||||||
|
http: {source: 'form'},
|
||||||
|
required: true
|
||||||
|
}, {
|
||||||
|
arg: 'password',
|
||||||
|
type: 'String',
|
||||||
|
description: 'The password'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
returns: {
|
||||||
|
type: 'object',
|
||||||
|
root: true
|
||||||
|
},
|
||||||
|
http: {
|
||||||
|
path: `/signIn`,
|
||||||
|
verb: 'POST'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
Self.signIn = async function(user, password) {
|
||||||
|
let models = Self.app.models;
|
||||||
|
let token;
|
||||||
|
let usesEmail = user.indexOf('@') !== -1;
|
||||||
|
|
||||||
|
let userInfo = usesEmail
|
||||||
|
? {email: user}
|
||||||
|
: {username: user};
|
||||||
|
let instance = await Self.findOne({
|
||||||
|
fields: ['username', 'password'],
|
||||||
|
where: userInfo
|
||||||
|
});
|
||||||
|
|
||||||
|
let where = usesEmail
|
||||||
|
? {email: user}
|
||||||
|
: {name: user};
|
||||||
|
let vnUser = await Self.findOne({
|
||||||
|
fields: ['active'],
|
||||||
|
where
|
||||||
|
});
|
||||||
|
|
||||||
|
let validCredentials = instance
|
||||||
|
&& await instance.hasPassword(password);
|
||||||
|
|
||||||
|
if (validCredentials) {
|
||||||
|
if (!vnUser.active)
|
||||||
|
throw new UserError('User disabled');
|
||||||
|
|
||||||
|
try {
|
||||||
|
await models.Account.sync(instance.username, password);
|
||||||
|
} catch (err) {
|
||||||
|
console.warn(err);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
let loginInfo = Object.assign({password}, userInfo);
|
||||||
|
token = await Self.login(loginInfo, 'user');
|
||||||
|
return {token: token.id};
|
||||||
|
};
|
||||||
|
};
|
|
@ -1,27 +0,0 @@
|
||||||
const {models} = require('vn-loopback/server/server');
|
|
||||||
const id = {administrative: 5, employee: 1, productionBoss: 50};
|
|
||||||
|
|
||||||
describe('VnUser acls()', () => {
|
|
||||||
it('should get its owns acls', async() => {
|
|
||||||
expect(await hasAcl('administrative', id.administrative)).toBeTruthy();
|
|
||||||
expect(await hasAcl('productionBoss', id.productionBoss)).toBeTruthy();
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should not get administrative acls', async() => {
|
|
||||||
expect(await hasAcl('administrative', id.employee)).toBeFalsy();
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should get the $authenticated acls', async() => {
|
|
||||||
expect(await hasAcl('$authenticated', id.employee)).toBeTruthy();
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should get the $everyone acls', async() => {
|
|
||||||
expect(await hasAcl('$everyone', id.employee)).toBeTruthy();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
const hasAcl = async(role, userId) => {
|
|
||||||
const ctx = {req: {accessToken: {userId}, headers: {origin: 'http://localhost'}}};
|
|
||||||
const acls = await models.VnUser.acls(ctx);
|
|
||||||
return Object.values(acls).some(acl => acl.principalId === role);
|
|
||||||
};
|
|
|
@ -70,7 +70,7 @@ describe('VnUser privileges()', () => {
|
||||||
const tx = await models.VnUser.beginTransaction({});
|
const tx = await models.VnUser.beginTransaction({});
|
||||||
|
|
||||||
const options = {transaction: tx};
|
const options = {transaction: tx};
|
||||||
const agency = await models.VnRole.findOne({
|
const agency = await models.Role.findOne({
|
||||||
where: {
|
where: {
|
||||||
name: 'agency'
|
name: 'agency'
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,81 +0,0 @@
|
||||||
const {models} = require('vn-loopback/server/server');
|
|
||||||
describe('Renew Token', () => {
|
|
||||||
const startingTime = Date.now();
|
|
||||||
let ctx = null;
|
|
||||||
beforeAll(async() => {
|
|
||||||
const unAuthCtx = {
|
|
||||||
req: {
|
|
||||||
headers: {},
|
|
||||||
connection: {
|
|
||||||
remoteAddress: '127.0.0.1'
|
|
||||||
},
|
|
||||||
getLocale: () => 'en'
|
|
||||||
},
|
|
||||||
args: {}
|
|
||||||
};
|
|
||||||
let login = await models.VnUser.signIn(unAuthCtx, 'salesAssistant', 'nightmare');
|
|
||||||
let accessToken = await models.AccessToken.findById(login.token);
|
|
||||||
ctx = {req: {accessToken: accessToken}};
|
|
||||||
});
|
|
||||||
|
|
||||||
beforeEach(() => {
|
|
||||||
jasmine.clock().install();
|
|
||||||
jasmine.clock().mockDate(new Date(startingTime));
|
|
||||||
});
|
|
||||||
|
|
||||||
afterEach(() => {
|
|
||||||
jasmine.clock().uninstall();
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should renew token', async() => {
|
|
||||||
const {courtesyTime} = await models.AccessTokenConfig.findOne({
|
|
||||||
fields: ['courtesyTime']
|
|
||||||
});
|
|
||||||
const mockDate = new Date(startingTime + 26600000);
|
|
||||||
jasmine.clock().mockDate(mockDate);
|
|
||||||
const {id} = await models.VnUser.renewToken(ctx);
|
|
||||||
|
|
||||||
expect(id).not.toEqual(ctx.req.accessToken.id);
|
|
||||||
|
|
||||||
await models.VnUser.logout(ctx.req.accessToken.id);
|
|
||||||
jasmine.clock().tick((courtesyTime + 10) * 1000);
|
|
||||||
let tokenNotExists;
|
|
||||||
try {
|
|
||||||
tokenNotExists = await models.AccessToken.findById(ctx.req.accessToken.id);
|
|
||||||
} catch (e) {
|
|
||||||
error = e;
|
|
||||||
}
|
|
||||||
|
|
||||||
expect(tokenNotExists).toBeNull();
|
|
||||||
});
|
|
||||||
|
|
||||||
it('NOT should renew', async() => {
|
|
||||||
let error;
|
|
||||||
let response;
|
|
||||||
try {
|
|
||||||
response = await models.VnUser.renewToken(ctx);
|
|
||||||
} catch (e) {
|
|
||||||
error = e;
|
|
||||||
}
|
|
||||||
|
|
||||||
expect(error).toBeUndefined();
|
|
||||||
expect(response.id).toEqual(ctx.req.accessToken.id);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('throw error', async() => {
|
|
||||||
let error;
|
|
||||||
|
|
||||||
try {
|
|
||||||
await models.VnUser.renewToken({req: {token: null}});
|
|
||||||
} catch (e) {
|
|
||||||
error = e;
|
|
||||||
}
|
|
||||||
|
|
||||||
expect(error).toBeDefined();
|
|
||||||
|
|
||||||
const query = 'SELECT * FROM util.debug WHERE variable = "renewToken"';
|
|
||||||
const debugLog = await models.Application.rawSql(query);
|
|
||||||
|
|
||||||
expect(debugLog.length).toEqual(1);
|
|
||||||
});
|
|
||||||
});
|
|
|
@ -1,64 +0,0 @@
|
||||||
const {models} = require('vn-loopback/server/server');
|
|
||||||
const TOKEN_MULTIMEDIA = 'read:multimedia';
|
|
||||||
describe('Share Token', () => {
|
|
||||||
let ctx = null;
|
|
||||||
const startingTime = Date.now();
|
|
||||||
let multimediaToken = null;
|
|
||||||
beforeAll(async() => {
|
|
||||||
const unAuthCtx = {
|
|
||||||
req: {
|
|
||||||
headers: {},
|
|
||||||
connection: {
|
|
||||||
remoteAddress: '127.0.0.1'
|
|
||||||
},
|
|
||||||
getLocale: () => 'en'
|
|
||||||
},
|
|
||||||
args: {}
|
|
||||||
};
|
|
||||||
let login = await models.VnUser.signIn(unAuthCtx, 'salesAssistant', 'nightmare');
|
|
||||||
let accessToken = await models.AccessToken.findById(login.token);
|
|
||||||
ctx = {req: {accessToken: accessToken}};
|
|
||||||
});
|
|
||||||
|
|
||||||
beforeEach(async() => {
|
|
||||||
multimediaToken = await models.VnUser.shareToken(ctx);
|
|
||||||
jasmine.clock().install();
|
|
||||||
jasmine.clock().mockDate(new Date(startingTime));
|
|
||||||
});
|
|
||||||
|
|
||||||
afterEach(() => {
|
|
||||||
jasmine.clock().uninstall();
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should generate token', async() => {
|
|
||||||
expect(Object.keys(multimediaToken).length).toEqual(1);
|
|
||||||
expect(multimediaToken.multimediaToken.userId).toEqual(ctx.req.accessToken.userId);
|
|
||||||
expect(multimediaToken.multimediaToken.scopes[0]).toEqual(TOKEN_MULTIMEDIA);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('NOT should renew', async() => {
|
|
||||||
let error;
|
|
||||||
let response;
|
|
||||||
try {
|
|
||||||
response = await models.VnUser.renewToken(ctx);
|
|
||||||
} catch (e) {
|
|
||||||
error = e;
|
|
||||||
}
|
|
||||||
|
|
||||||
expect(error).toBeUndefined();
|
|
||||||
expect(response.id).toEqual(ctx.req.accessToken.id);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should renew token', async() => {
|
|
||||||
const mockDate = new Date(startingTime + 26600000);
|
|
||||||
jasmine.clock().mockDate(mockDate);
|
|
||||||
|
|
||||||
const newShareToken = await models.VnUser.renewToken({req: {accessToken: multimediaToken.multimediaToken}});
|
|
||||||
const {id} = newShareToken;
|
|
||||||
|
|
||||||
expect(id).not.toEqual(ctx.req.accessToken.id);
|
|
||||||
const newMultimediaToken = await models.AccessToken.findById(id);
|
|
||||||
|
|
||||||
expect(newMultimediaToken.scopes[0]).toEqual(TOKEN_MULTIMEDIA);
|
|
||||||
});
|
|
||||||
});
|
|
|
@ -1,112 +0,0 @@
|
||||||
const {models} = require('vn-loopback/server/server');
|
|
||||||
|
|
||||||
describe('VnUser Sign-in()', () => {
|
|
||||||
const employeeId = 1;
|
|
||||||
const unAuthCtx = {
|
|
||||||
req: {
|
|
||||||
headers: {},
|
|
||||||
connection: {
|
|
||||||
remoteAddress: '127.0.0.1'
|
|
||||||
},
|
|
||||||
getLocale: () => 'en'
|
|
||||||
},
|
|
||||||
args: {}
|
|
||||||
};
|
|
||||||
const {VnUser, AccessToken, SignInLog} = models;
|
|
||||||
describe('when credentials are correct', () => {
|
|
||||||
it('should return the token if user uses email', async() => {
|
|
||||||
let login = await VnUser.signIn(unAuthCtx, 'salesAssistant@mydomain.com', 'nightmare');
|
|
||||||
let accessToken = await AccessToken.findById(login.token);
|
|
||||||
let ctx = {req: {accessToken: accessToken}};
|
|
||||||
let signInLog = await SignInLog.find({where: {token: accessToken.id}});
|
|
||||||
|
|
||||||
expect(signInLog.length).toEqual(0);
|
|
||||||
|
|
||||||
await VnUser.logout(ctx.req.accessToken.id);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should return the token', async() => {
|
|
||||||
let login = await VnUser.signIn(unAuthCtx, 'salesAssistant', 'nightmare');
|
|
||||||
let accessToken = await AccessToken.findById(login.token);
|
|
||||||
let ctx = {req: {accessToken: accessToken}};
|
|
||||||
|
|
||||||
expect(login.token).toBeDefined();
|
|
||||||
|
|
||||||
await VnUser.logout(ctx.req.accessToken.id);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should return the token if the user doesnt exist but the client does', async() => {
|
|
||||||
let login = await VnUser.signIn(unAuthCtx, 'PetterParker', 'nightmare');
|
|
||||||
let accessToken = await AccessToken.findById(login.token);
|
|
||||||
let ctx = {req: {accessToken: accessToken}};
|
|
||||||
|
|
||||||
expect(login.token).toBeDefined();
|
|
||||||
|
|
||||||
await VnUser.logout(ctx.req.accessToken.id);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('when credentials are incorrect', () => {
|
|
||||||
it('should throw a 401 error', async() => {
|
|
||||||
let error;
|
|
||||||
|
|
||||||
try {
|
|
||||||
await VnUser.signIn(unAuthCtx, 'IDontExist', 'TotallyWrongPassword');
|
|
||||||
} catch (e) {
|
|
||||||
error = e;
|
|
||||||
}
|
|
||||||
|
|
||||||
expect(error).toBeDefined();
|
|
||||||
expect(error.statusCode).toBe(401);
|
|
||||||
expect(error.code).toBe('LOGIN_FAILED');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('when two-factor auth is required', () => {
|
|
||||||
it('should throw a 403 error', async() => {
|
|
||||||
const employee = await VnUser.findById(employeeId);
|
|
||||||
const tx = await VnUser.beginTransaction({});
|
|
||||||
|
|
||||||
let error;
|
|
||||||
try {
|
|
||||||
const options = {transaction: tx};
|
|
||||||
await employee.updateAttribute('twoFactor', 'email', options);
|
|
||||||
|
|
||||||
await VnUser.signIn(unAuthCtx, 'employee', 'nightmare', options);
|
|
||||||
await tx.rollback();
|
|
||||||
} catch (e) {
|
|
||||||
await tx.rollback();
|
|
||||||
error = e;
|
|
||||||
}
|
|
||||||
|
|
||||||
expect(error).toBeDefined();
|
|
||||||
expect(error.statusCode).toBe(403);
|
|
||||||
expect(error.code).toBe('REQUIRES_2FA');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('when passExpired', () => {
|
|
||||||
it('should throw a passExpired error', async() => {
|
|
||||||
const tx = await VnUser.beginTransaction({});
|
|
||||||
const employee = await VnUser.findById(employeeId);
|
|
||||||
const yesterday = Date.vnNew();
|
|
||||||
yesterday.setDate(yesterday.getDate() - 1);
|
|
||||||
|
|
||||||
let error;
|
|
||||||
try {
|
|
||||||
const options = {transaction: tx};
|
|
||||||
await employee.updateAttribute('passExpired', yesterday, options);
|
|
||||||
|
|
||||||
await VnUser.signIn(unAuthCtx, 'employee', 'nightmare', options);
|
|
||||||
await tx.rollback();
|
|
||||||
} catch (e) {
|
|
||||||
await tx.rollback();
|
|
||||||
error = e;
|
|
||||||
}
|
|
||||||
|
|
||||||
expect(error).toBeDefined();
|
|
||||||
expect(error.statusCode).toBe(400);
|
|
||||||
expect(error.message).toBe('Pass expired');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
|
@ -0,0 +1,41 @@
|
||||||
|
const {models} = require('vn-loopback/server/server');
|
||||||
|
|
||||||
|
describe('VnUser signIn()', () => {
|
||||||
|
describe('when credentials are correct', () => {
|
||||||
|
it('should return the token', async() => {
|
||||||
|
let login = await models.VnUser.signIn('salesAssistant', 'nightmare');
|
||||||
|
let accessToken = await models.AccessToken.findById(login.token);
|
||||||
|
let ctx = {req: {accessToken: accessToken}};
|
||||||
|
|
||||||
|
expect(login.token).toBeDefined();
|
||||||
|
|
||||||
|
await models.VnUser.signOut(ctx);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should return the token if the user doesnt exist but the client does', async() => {
|
||||||
|
let login = await models.VnUser.signIn('PetterParker', 'nightmare');
|
||||||
|
let accessToken = await models.AccessToken.findById(login.token);
|
||||||
|
let ctx = {req: {accessToken: accessToken}};
|
||||||
|
|
||||||
|
expect(login.token).toBeDefined();
|
||||||
|
|
||||||
|
await models.VnUser.signOut(ctx);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('when credentials are incorrect', () => {
|
||||||
|
it('should throw a 401 error', async() => {
|
||||||
|
let error;
|
||||||
|
|
||||||
|
try {
|
||||||
|
await models.VnUser.signIn('IDontExist', 'TotallyWrongPassword');
|
||||||
|
} catch (e) {
|
||||||
|
error = e;
|
||||||
|
}
|
||||||
|
|
||||||
|
expect(error).toBeDefined();
|
||||||
|
expect(error.statusCode).toBe(401);
|
||||||
|
expect(error.code).toBe('LOGIN_FAILED');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
|
@ -0,0 +1,42 @@
|
||||||
|
const {models} = require('vn-loopback/server/server');
|
||||||
|
|
||||||
|
describe('VnUser signOut()', () => {
|
||||||
|
it('should logout and remove token after valid login', async() => {
|
||||||
|
let loginResponse = await models.VnUser.signOut('buyer', 'nightmare');
|
||||||
|
let accessToken = await models.AccessToken.findById(loginResponse.token);
|
||||||
|
let ctx = {req: {accessToken: accessToken}};
|
||||||
|
|
||||||
|
let logoutResponse = await models.VnUser.signOut(ctx);
|
||||||
|
let tokenAfterLogout = await models.AccessToken.findById(loginResponse.token);
|
||||||
|
|
||||||
|
expect(logoutResponse).toBeTrue();
|
||||||
|
expect(tokenAfterLogout).toBeNull();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw a 401 error when token is invalid', async() => {
|
||||||
|
let error;
|
||||||
|
let ctx = {req: {accessToken: {id: 'invalidToken'}}};
|
||||||
|
|
||||||
|
try {
|
||||||
|
response = await models.VnUser.signOut(ctx);
|
||||||
|
} catch (e) {
|
||||||
|
error = e;
|
||||||
|
}
|
||||||
|
|
||||||
|
expect(error).toBeDefined();
|
||||||
|
expect(error.statusCode).toBe(401);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw an error when no token is passed', async() => {
|
||||||
|
let error;
|
||||||
|
let ctx = {req: {accessToken: null}};
|
||||||
|
|
||||||
|
try {
|
||||||
|
response = await models.VnUser.signOut(ctx);
|
||||||
|
} catch (e) {
|
||||||
|
error = e;
|
||||||
|
}
|
||||||
|
|
||||||
|
expect(error).toBeDefined();
|
||||||
|
});
|
||||||
|
});
|
|
@ -1,52 +0,0 @@
|
||||||
const {models} = require('vn-loopback/server/server');
|
|
||||||
|
|
||||||
describe('VnUser validate-auth()', () => {
|
|
||||||
describe('validateAuth', () => {
|
|
||||||
it('should signin if data is correct', async() => {
|
|
||||||
await models.AuthCode.create({
|
|
||||||
userFk: 9,
|
|
||||||
code: '555555',
|
|
||||||
expires: Date.vnNow() + (60 * 1000)
|
|
||||||
});
|
|
||||||
const token = await models.VnUser.validateAuth('developer', 'nightmare', '555555');
|
|
||||||
|
|
||||||
expect(token.token).toBeDefined();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('validateCode', () => {
|
|
||||||
it('should throw an error for a non existent code', async() => {
|
|
||||||
let error;
|
|
||||||
try {
|
|
||||||
await models.VnUser.validateCode('developer', '123456');
|
|
||||||
} catch (e) {
|
|
||||||
error = e;
|
|
||||||
}
|
|
||||||
|
|
||||||
expect(error).toBeDefined();
|
|
||||||
expect(error.statusCode).toBe(400);
|
|
||||||
expect(error.message).toEqual('Invalid or expired verification code');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should throw an error when a code doesn`t match the login username', async() => {
|
|
||||||
let error;
|
|
||||||
let authCode;
|
|
||||||
try {
|
|
||||||
authCode = await models.AuthCode.create({
|
|
||||||
userFk: 1,
|
|
||||||
code: '555555',
|
|
||||||
expires: Date.vnNow() + (60 * 1000)
|
|
||||||
});
|
|
||||||
|
|
||||||
await models.VnUser.validateCode('developer', '555555');
|
|
||||||
} catch (e) {
|
|
||||||
authCode && await authCode.destroy();
|
|
||||||
error = e;
|
|
||||||
}
|
|
||||||
|
|
||||||
expect(error).toBeDefined();
|
|
||||||
expect(error.statusCode).toBe(400);
|
|
||||||
expect(error.message).toEqual('Authentication failed');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
|
@ -1,43 +0,0 @@
|
||||||
module.exports = Self => {
|
|
||||||
Self.remoteMethodCtx('updateUser', {
|
|
||||||
description: 'Update user data',
|
|
||||||
accepts: [
|
|
||||||
{
|
|
||||||
arg: 'id',
|
|
||||||
type: 'integer',
|
|
||||||
description: 'The user id',
|
|
||||||
required: true,
|
|
||||||
http: {source: 'path'}
|
|
||||||
}, {
|
|
||||||
arg: 'name',
|
|
||||||
type: 'string',
|
|
||||||
description: 'The user name',
|
|
||||||
}, {
|
|
||||||
arg: 'nickname',
|
|
||||||
type: 'string',
|
|
||||||
description: 'The user nickname',
|
|
||||||
}, {
|
|
||||||
arg: 'email',
|
|
||||||
type: 'string',
|
|
||||||
description: 'The user email'
|
|
||||||
}, {
|
|
||||||
arg: 'lang',
|
|
||||||
type: 'string',
|
|
||||||
description: 'The user lang'
|
|
||||||
}, {
|
|
||||||
arg: 'twoFactor',
|
|
||||||
type: 'any',
|
|
||||||
description: 'The user twoFactor'
|
|
||||||
}
|
|
||||||
],
|
|
||||||
http: {
|
|
||||||
path: `/:id/update-user`,
|
|
||||||
verb: 'PATCH'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
Self.updateUser = async(ctx, id, name, nickname, email, lang, twoFactor) => {
|
|
||||||
await Self.userSecurity(ctx, id);
|
|
||||||
await Self.upsertWithWhere({id}, {name, nickname, email, lang, twoFactor});
|
|
||||||
};
|
|
||||||
};
|
|
|
@ -1,66 +0,0 @@
|
||||||
const UserError = require('vn-loopback/util/user-error');
|
|
||||||
|
|
||||||
module.exports = Self => {
|
|
||||||
Self.remoteMethod('validateAuth', {
|
|
||||||
description: 'Login a user with username/email and password',
|
|
||||||
accepts: [
|
|
||||||
{
|
|
||||||
arg: 'user',
|
|
||||||
type: 'String',
|
|
||||||
description: 'The user name or email',
|
|
||||||
required: true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
arg: 'password',
|
|
||||||
type: 'String',
|
|
||||||
description: 'The password'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
arg: 'code',
|
|
||||||
type: 'String',
|
|
||||||
description: 'The auth code'
|
|
||||||
}
|
|
||||||
],
|
|
||||||
returns: {
|
|
||||||
type: 'object',
|
|
||||||
root: true
|
|
||||||
},
|
|
||||||
http: {
|
|
||||||
path: `/validate-auth`,
|
|
||||||
verb: 'POST'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
Self.validateAuth = async(username, password, code, options) => {
|
|
||||||
const myOptions = {};
|
|
||||||
if (typeof options == 'object')
|
|
||||||
Object.assign(myOptions, options);
|
|
||||||
|
|
||||||
const token = Self.validateLogin(username, password);
|
|
||||||
await Self.validateCode(username, code, myOptions);
|
|
||||||
return token;
|
|
||||||
};
|
|
||||||
|
|
||||||
Self.validateCode = async(username, code, myOptions) => {
|
|
||||||
const {AuthCode} = Self.app.models;
|
|
||||||
|
|
||||||
const authCode = await AuthCode.findOne({
|
|
||||||
where: {
|
|
||||||
code: code
|
|
||||||
}
|
|
||||||
}, myOptions);
|
|
||||||
|
|
||||||
const expired = authCode && Date.vnNow() > authCode.expires;
|
|
||||||
if (!authCode || expired)
|
|
||||||
throw new UserError('Invalid or expired verification code');
|
|
||||||
|
|
||||||
const user = await Self.findById(authCode.userFk, {
|
|
||||||
fields: ['name', 'twoFactor']
|
|
||||||
}, myOptions);
|
|
||||||
|
|
||||||
if (user.name.toLowerCase() !== username.toLowerCase())
|
|
||||||
throw new UserError('Authentication failed');
|
|
||||||
|
|
||||||
await authCode.destroy(myOptions);
|
|
||||||
};
|
|
||||||
};
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue