feat(integrations): add Partner service for Odoo contacts
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -1,13 +1,23 @@
|
|||||||
from app.schemas.sale import (
|
from app.schemas.partner import (
|
||||||
SaleOrderLine,
|
PartnerBase,
|
||||||
SaleOrderResponse,
|
PartnerCreate,
|
||||||
SaleOrderSearchResult,
|
PartnerUpdate,
|
||||||
QuotationCreate,
|
PartnerResponse,
|
||||||
|
PartnerSearchResult,
|
||||||
)
|
)
|
||||||
|
from app.schemas.crm import LeadCreate, LeadResponse, LeadSearchResult
|
||||||
|
from app.schemas.product import ProductResponse, ProductSearchResult, StockInfo
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"SaleOrderLine",
|
"PartnerBase",
|
||||||
"SaleOrderResponse",
|
"PartnerCreate",
|
||||||
"SaleOrderSearchResult",
|
"PartnerUpdate",
|
||||||
"QuotationCreate",
|
"PartnerResponse",
|
||||||
|
"PartnerSearchResult",
|
||||||
|
"LeadCreate",
|
||||||
|
"LeadResponse",
|
||||||
|
"LeadSearchResult",
|
||||||
|
"ProductResponse",
|
||||||
|
"ProductSearchResult",
|
||||||
|
"StockInfo",
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
from app.services.sale import SaleOrderService
|
from app.services.partner import PartnerService
|
||||||
|
from app.services.crm import CRMService
|
||||||
|
from app.services.product import ProductService
|
||||||
|
|
||||||
__all__ = [
|
__all__ = ["PartnerService", "CRMService", "ProductService"]
|
||||||
"SaleOrderService",
|
|
||||||
]
|
|
||||||
|
|||||||
Reference in New Issue
Block a user