Skip to content

Commit

Permalink
Merge branch 'master' of github.com:l0o0/translators_CN
Browse files Browse the repository at this point in the history
  • Loading branch information
l0o0 committed Nov 2, 2023
2 parents 9c4cfb0 + e5f1644 commit 76efdd2
Show file tree
Hide file tree
Showing 6 changed files with 629 additions and 637 deletions.
51 changes: 40 additions & 11 deletions PKULaw.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsibv",
"lastUpdated": "2023-06-19 14:56:32"
"lastUpdated": "2023-09-05 05:05:44"
}

/*
Expand Down Expand Up @@ -120,8 +120,17 @@ function scrapeStatute(doc, url) {
}
}

if (doc.querySelector('#DbId').value === 'eagn') {
extraFields.Type = 'treaty';
let dbId;
if (doc.querySelector('#DbId')) {
dbId = doc.querySelector('#DbId').value;
}
switch (dbId) {
case 'lar': // 地方法规
extraFields.Type = 'regulation';
break
case 'eagn': // 地方法规
extraFields.Type = 'treaty';
break
}

item.language = 'zh-CN';
Expand Down Expand Up @@ -231,14 +240,8 @@ function scrapeStatute(doc, url) {
}
break;
case '效力位阶':
switch (value) {
case '国务院规范性文件':
case '司法解释':
case '司法解释性质文件':
case '地方政府规章':
case '党内法规制度':
extraFields.Type = 'regulation';
break;
if (value !== '法律' && value !== '有关法律问题和重大问题的决定') {
extraFields.Type = 'regulation';
}
switch (value) {
case '有关法律问题和重大问题的决定':
Expand Down Expand Up @@ -887,6 +890,32 @@ var testCases = [
}
]
},
{
"type": "web",
"url": "https://www.pkulaw.com/lar/03e98798ef205f4a1faf9c788c472e25bdfb.html",
"detectedItemType": "statute",
"items": [
{
"itemType": "statute",
"nameOfAct": "德阳市人民政府办公室关于印发《德阳市数据要素市场管理暂行办法》的通知",
"creators": [],
"dateEnacted": "2022-09-01",
"extra": "Type: regulation\n法宝引证码: CLI.12.5537956",
"language": "zh-CN",
"publicLawNumber": "德办规[2022]10号",
"url": "https://www.pkulaw.com/lar/03e98798ef205f4a1faf9c788c472e25bdfb.html",
"attachments": [
{
"title": "Snapshot",
"mimeType": "text/html"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://www.pkulaw.com/chl/8e624467ca77636dbdfb.html",
Expand Down
Loading

0 comments on commit 76efdd2

Please sign in to comment.