Compare commits
11 Commits
4a45ebfe3b
...
fix-nldatm
Author | SHA1 | Date | |
---|---|---|---|
f246e75eab | |||
|
149e318a87 | ||
|
8657826e60 | ||
![]() |
a45f5bb3b2 | ||
![]() |
ae9a91a7a1 | ||
|
3638bde633 | ||
3a2361f42c | |||
|
1bd0eef913 | ||
85aa3b38b7 | |||
678859a68d | |||
|
e531acee3f |
14
CHANGELOG.md
14
CHANGELOG.md
@@ -1,3 +1,17 @@
|
||||
# [6.14.0](https://git.datacontroller.io/dc/dc/compare/v6.13.2...v6.14.0) (2025-02-26)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* uses SORTSEQ=LINGUISTIC for the services/metanav/metadetails service ([a45f5bb](https://git.datacontroller.io/dc/dc/commit/a45f5bb3b27a86da5f55ff28c9c7669956484ddf))
|
||||
|
||||
## [6.13.2](https://git.datacontroller.io/dc/dc/compare/v6.13.1...v6.13.2) (2025-02-26)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* get metadata email if exists ([1bd0eef](https://git.datacontroller.io/dc/dc/commit/1bd0eef913593579771c647d80010ce628c00819))
|
||||
|
||||
## [6.13.1](https://git.datacontroller.io/dc/dc/compare/v6.13.0...v6.13.1) (2025-02-18)
|
||||
|
||||
|
||||
|
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "dcfrontend",
|
||||
"version": "6.13.1",
|
||||
"version": "6.14.0",
|
||||
"description": "Data Controller",
|
||||
"devDependencies": {
|
||||
"@saithodev/semantic-release-gitea": "^2.1.0",
|
||||
|
8
sas/package-lock.json
generated
8
sas/package-lock.json
generated
@@ -7,7 +7,7 @@
|
||||
"name": "dc-sas",
|
||||
"dependencies": {
|
||||
"@sasjs/cli": "^4.11.1",
|
||||
"@sasjs/core": "^4.53.0"
|
||||
"@sasjs/core": "^4.54.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@coolaj86/urequest": {
|
||||
@@ -116,9 +116,9 @@
|
||||
"integrity": "sha512-Grwydm5GxBsYk238PZw41XPjXVVQ9vWcvfZ06L2P0bQbvK0sGn7l69JA7H5MGr3QcaLpiD4Kg70cAh7PgE+JOw=="
|
||||
},
|
||||
"node_modules/@sasjs/core": {
|
||||
"version": "4.53.0",
|
||||
"resolved": "https://registry.npmjs.org/@sasjs/core/-/core-4.53.0.tgz",
|
||||
"integrity": "sha512-bGLa9OUlrA6s8+TFjoxc1/0B7LlR+f1gLEXU5vNnrxbidOZ8raR+i1vgBtF4Ux9432G8g+Ju80E5vR/Q/QyK3Q==",
|
||||
"version": "4.54.0",
|
||||
"resolved": "https://registry.npmjs.org/@sasjs/core/-/core-4.54.0.tgz",
|
||||
"integrity": "sha512-nuPXEsuxZnHiaSmkLf92v5B0tVybbPaU70EM0nU15BXUYO+PNZSZe9ofp5/+L2qi03UB0+WJHuPU6Xx+CwWr9A==",
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/@sasjs/lint": {
|
||||
|
@@ -29,6 +29,6 @@
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@sasjs/cli": "^4.11.1",
|
||||
"@sasjs/core": "^4.53.0"
|
||||
"@sasjs/core": "^4.54.0"
|
||||
}
|
||||
}
|
||||
|
@@ -96,6 +96,8 @@ data work.emails;
|
||||
/* get email from metadata if not in input table */
|
||||
if metadata_getnasn(uri,"EmailAddresses",1,emailuri)<=0 then do;
|
||||
putlog "DCWARN: " alert_user " has no emails in MPE_EMAILS or metadata!";
|
||||
end;
|
||||
else do;
|
||||
if metadata_getattr(emailuri,"Address",user_email)<0 then do;
|
||||
putlog 'DCWARN: Unexpected error! Valid emailURI but no email. Weird.';
|
||||
end;
|
||||
|
@@ -340,14 +340,14 @@ select upcase(loadtype)
|
||||
if ctrlOptions ne '' then
|
||||
colType=cats(coltype,',"type":"dropdown","source":',ctrlOptions,"}");
|
||||
else if type='num' then do;
|
||||
if format=:'DATETIME' or format=:'E8601DT' then do;
|
||||
if format=:'DATETIME' or format=:'E8601DT' or format=:'NLDATM' then do;
|
||||
colType=cats(coltype
|
||||
,',"type":"date","dateFormat":"YYYY-MM-DD HH:mm:ss"'
|
||||
,',"correctFormat":"true"}');
|
||||
/* build var list to reformat datetimes in javascript format */
|
||||
call symput('jsdttmvars',symget('jsdttmvars')!!' '!!name);
|
||||
end;
|
||||
else if format=:'DATE' or format=:'DDMMYY' or format=:'MMDDYY'
|
||||
else if format=:'DATE' or format=:'DDMMYY' or format=:'MMDDYY' or format=:'NLDATE'
|
||||
or format=:'YYMMDD' or format=:'E8601DA' or format=:'B8601DA'
|
||||
or format=:'MONYY'
|
||||
then do;
|
||||
|
@@ -23,10 +23,11 @@
|
||||
%mm_getdetails(&objecturi
|
||||
,outattrs=work.attributes
|
||||
,outassocs=work.associations
|
||||
,sortoptions=SORTSEQ=LINGUISTIC
|
||||
)
|
||||
|
||||
%webout(OPEN)
|
||||
%webout(OBJ,attributes)
|
||||
%webout(OBJ,attributes, missing=STRING)
|
||||
%webout(OBJ,associations)
|
||||
%webout(CLOSE)
|
||||
%mpeterm()
|
||||
|
Reference in New Issue
Block a user