feat(flow-engine): add Odoo node executors

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Claude AI
2026-01-29 22:28:26 +00:00
parent 619b291f49
commit d1d1aa58e1
4 changed files with 301 additions and 0 deletions

View File

@@ -24,3 +24,13 @@ from app.nodes.validation import (
ValidatePhoneExecutor,
ValidateRegexExecutor,
)
from app.nodes.odoo import (
OdooSearchPartnerExecutor,
OdooCreatePartnerExecutor,
OdooGetBalanceExecutor,
OdooSearchOrdersExecutor,
OdooGetOrderExecutor,
OdooSearchProductsExecutor,
OdooCheckStockExecutor,
OdooCreateLeadExecutor,
)