feat: AI-powered product creation wizard with SEO and image geo-tagging

4-step wizard: Basic Info → Images → Content & SEO → Review & Create.
AI generates product titles, descriptions, meta data using Claude or OpenAI.
Image geo-tagging with company EXIF data. SEO meta pushed to Rank Math,
Yoast, AIOSEO, and SEOPress simultaneously. Products created with CAPS
name in Odoo, Title Case in WooCommerce.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
gsinghpal
2026-04-01 14:44:48 -04:00
parent f759bf558f
commit 4efd5066d0
6 changed files with 732 additions and 1 deletions

View File

@@ -410,7 +410,20 @@ export class ProductMapping extends Component {
}
async createInWC(odooProductId) {
this.notification.add("Create in WooCommerce queued.", { type: "info" });
if (!this.state.instanceId) {
this.notification.add("Please select an instance first.", { type: "warning" });
return;
}
this.actionService.doAction({
type: 'ir.actions.act_window',
res_model: 'woo.product.create.wizard',
views: [[false, 'form']],
target: 'new',
context: {
default_instance_id: this.state.instanceId,
default_odoo_product_id: odooProductId,
},
});
}
async createInOdoo(wooMapId) {