Skip to content

Commit eb3bb58

Browse files
committed
OSB-44: resolved conflicts
2 parents 02d6666 + 22b1bd9 commit eb3bb58

13 files changed

Lines changed: 645 additions & 429 deletions

.gitignore

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,31 @@ cython_debug/
166166
# and can be added to the global gitignore or merged into this file. For a more nuclear
167167
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
168168
#.idea/
169+
.idea/
169170

170171
# PyPI configuration file
171172
.pypirc
172173

173-
output*
174+
# Node
175+
node_modules/
176+
.vscode/
177+
178+
# Output directories and files
179+
output*/
180+
output.*
181+
results/
182+
logs/
183+
184+
# Local configuration files
185+
*.config.local
186+
config.local.*
187+
188+
# Virtual Environment directory typically used with pipenv
189+
.venv/
190+
191+
# Mac OS specific files
192+
.DS_Store
193+
194+
# Windows specific files
195+
Thumbs.db
196+
desktop.ini

package-lock.json

Lines changed: 130 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"dependencies": {
3+
"js-yaml": "^4.1.0",
4+
"jszip": "^3.10.1"
5+
}
6+
}

solution/modules/claim.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"menus": [],
3+
"fePackages": ["ClaimModule"],
4+
"bePackages": ["claim"],
5+
"roles": []
6+
}

solution/modules/claim_batch.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"menus": [],
3+
"fePackages": ["ClaimBatchModule"],
4+
"bePackages": ["claim_batch"],
5+
"roles": []
6+
}

solution/modules/medical.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"menus": [],
3+
"fePackages": ["MedicalModule", "MedicalPriceListModule"],
4+
"bePackages": ["medical", "medical_pricelist"],
5+
"roles": []
6+
}

solution/modules/payer.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"menus": [
3+
{
4+
"position": 2,
5+
"id": "AdministrationMainMenu",
6+
"name": "Administration",
7+
"icon": "administration-icon",
8+
"description": "Administration",
9+
"submenus": [
10+
{
11+
"position": 4,
12+
"id": "admin.payers"
13+
}
14+
]
15+
}
16+
],
17+
"fePackages": ["PayerModule"],
18+
"bePackages": ["payer"],
19+
"roles": [
20+
{
21+
"roleName": "LOCAL Administrator",
22+
"code": "local_admin",
23+
"permissions": [
24+
"payer.payers",
25+
"payer.create_payers",
26+
"payer.update_payers",
27+
"payer.delete_payers"
28+
]
29+
}
30+
]
31+
}

solution/modules/payment.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"menus": [],
3+
"fePackages": ["PaymentModule"],
4+
"bePackages": ["payment"],
5+
"roles": []
6+
}

solution/modules/product.json

Lines changed: 17 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,22 @@
11
{
22
"menus": [
33
{
4-
"position":2,
5-
"id": "EnrolmentMainMenu",
6-
"name":"EnrolmentMainMenu",
7-
"icon":"how-to-reg-icon",
8-
"description":"Enrolment",
9-
"submenus":[
10-
{
11-
"position":3,
12-
"id":"iadmin.products"
13-
}
14-
]
15-
}
16-
],
17-
"fePackages": [
18-
"ProductModule"
19-
],
20-
"bePackages": [
21-
"policy"
4+
"position": 2,
5+
"id": "AdministrationMainMenu",
6+
"name": "Administration",
7+
"icon": "administration-icon",
8+
"description": "Administration",
9+
"submenus": [
10+
{
11+
"position": 2,
12+
"id": "admin.products"
13+
}
14+
]
15+
}
2216
],
23-
"roles": [
17+
"fePackages": ["ProductModule"],
18+
"bePackages": ["product"],
19+
"roles": [
2420
{
2521
"roleName": "LOCAL Administrator",
2622
"code": "local_admin",
@@ -32,5 +28,5 @@
3228
"product.duplicate_product"
3329
]
3430
}
35-
]
36-
}
31+
]
32+
}

0 commit comments

Comments
 (0)