-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #139 from mkumar-02/17.0-develop
Migration 17.0: Migrated bank and registry api module.
- Loading branch information
Showing
48 changed files
with
513 additions
and
833 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Part of OpenG2P Registry. See LICENSE file for full copyright and licensing details. | ||
from . import models | ||
from . import services | ||
from . import schemas | ||
from . import routers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
..._rest_api/services/process_group_mixin.py → ...k_rest_api/routers/process_group_mixin.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
..._api/services/process_individual_mixin.py → ...t_api/routers/process_individual_mixin.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
from odoo.addons.g2p_registry_rest_api.schemas import naive_orm_model | ||
|
||
|
||
class BankDetailsRequest(naive_orm_model.NaiveOrmModel): | ||
bank_name: str = None | ||
acc_number: str = None | ||
|
||
|
||
class BankDetailsResponse(naive_orm_model.NaiveOrmModel): | ||
bank_name: str = None | ||
acc_number: str = None |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
from odoo.addons.g2p_registry_rest_api.schemas import group_membership | ||
|
||
from . import bank_details | ||
|
||
|
||
class GroupMembersInfoRequest( | ||
group_membership.GroupMembersInfoRequest, extends=group_membership.GroupMembersInfoRequest | ||
): | ||
bank_ids: list[bank_details.BankDetailsRequest] | None |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
from odoo.addons.g2p_registry_rest_api.schemas import registrant | ||
|
||
from . import bank_details | ||
|
||
|
||
class RegistrantAddlInfoRequest(registrant.RegistrantInfoRequest, extends=registrant.RegistrantInfoRequest): | ||
bank_ids: list[bank_details.BankDetailsRequest] | None = None | ||
|
||
|
||
class RegistrantAddlInfoResponse( | ||
registrant.RegistrantInfoResponse, extends=registrant.RegistrantInfoResponse | ||
): | ||
bank_ids: list[bank_details.BankDetailsResponse] | None = None |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,10 +8,11 @@ | |
|
||
/* | ||
:Author: David Goodger ([email protected]) | ||
:Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $ | ||
:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $ | ||
:Copyright: This stylesheet has been placed in the public domain. | ||
|
||
Default cascading style sheet for the HTML output of Docutils. | ||
Despite the name, some widely supported CSS2 features are used. | ||
|
||
See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to | ||
customize this style sheet. | ||
|
@@ -274,7 +275,7 @@ | |
margin-left: 2em ; | ||
margin-right: 2em } | ||
|
||
pre.code .ln { color: grey; } /* line numbers */ | ||
pre.code .ln { color: gray; } /* line numbers */ | ||
pre.code, code { background-color: #eeeeee } | ||
pre.code .comment, code .comment { color: #5C6576 } | ||
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold } | ||
|
@@ -300,7 +301,7 @@ | |
span.pre { | ||
white-space: pre } | ||
|
||
span.problematic { | ||
span.problematic, pre.problematic { | ||
color: red } | ||
|
||
span.section-subtitle { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Part of OpenG2P Registry. See LICENSE file for full copyright and licensing details. | ||
from . import models | ||
from . import services | ||
from . import controllers | ||
from . import http | ||
from . import routers | ||
|
||
# from . import http | ||
from . import exceptions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<odoo> | ||
<record model="fastapi.endpoint" id="fastapi_endpoint_registry"> | ||
<field name="name">OpenG2P FastAPI Endpoint</field> | ||
<field name="description">This module implements OpenG2P APIs.</field> | ||
<field name="app">registry</field> | ||
<field name="root_path">/api/v1/registry</field> | ||
</record> | ||
|
||
<function | ||
model="fastapi.endpoint" | ||
name="sync_endpoint_id_with_registry" | ||
eval="(ref('g2p_registry_rest_api.fastapi_endpoint_registry'),)" | ||
/> | ||
|
||
</odoo> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
# Part of OpenG2P Registry. See LICENSE file for full copyright and licensing details. | ||
from . import registrant | ||
from . import group | ||
from . import individual | ||
from . import group_membership | ||
from . import error_response | ||
|
||
from . import fastapi_endpoint_registry |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
from fastapi import APIRouter | ||
|
||
from odoo import api, fields, models | ||
|
||
from ..routers.group import group_router | ||
from ..routers.individual import individual_router | ||
|
||
|
||
class G2PRegistryEndpoint(models.Model): | ||
_inherit = "fastapi.endpoint" | ||
|
||
app: str = fields.Selection( | ||
selection_add=[("registry", "Registry Endpoint")], ondelete={"registry": "cascade"} | ||
) | ||
|
||
def _get_fastapi_routers(self) -> list[APIRouter]: | ||
routers = super()._get_fastapi_routers() | ||
if self.app == "registry": | ||
routers.append(group_router) | ||
routers.append(individual_router) | ||
return routers | ||
|
||
@api.model | ||
def sync_endpoint_id_with_registry(self, endpoint_id): | ||
return self.browse(endpoint_id).action_sync_registry() |
Oops, something went wrong.