gigafibre-fsm/services/targo-hub/lib/referral.js
louispaulb 41d9b5f316 feat: flow editor, Gemini QR scanner with offline queue, dispatch planning v2
Major additions accumulated over 9 days — single commit per request.

Flow editor (new):
- Generic visual editor for step trees, usable by project wizard + agent flows
- PROJECT_KINDS / AGENT_KINDS catalogs decouple UI from domain
- Drag-and-drop reorder via vuedraggable with scope isolation per peer group
- Chain-aware depends_on rewrite on reorder (sequential only — DAGs preserved)
- Variable picker with per-applies_to catalog (Customer / Quotation /
  Service Contract / Issue / Subscription), insert + copy-clipboard modes
- trigger_condition helper with domain-specific JSONLogic examples
- Global FlowEditorDialog mounted once in MainLayout, Odoo inline pattern
- Server: targo-hub flow-runtime.js, flow-api.js, flow-templates.js
- ERPNext: Flow Template/Run doctypes, scheduler, 5 seeded system templates
- depends_on chips resolve to step labels instead of opaque "s4" ids

QR/OCR scanner (field app):
- Camera capture → Gemini Vision via targo-hub with 8s timeout
- IndexedDB offline queue retries photos when signal returns
- Watcher merges late-arriving scan results into the live UI

Dispatch:
- Planning mode (draft → publish) with offer pool for unassigned jobs
- Shared presets, recurrence selector, suggested-slots dialog
- PublishScheduleModal, unassign confirmation

Ops app:
- ClientDetailPage composables extraction (useClientData, useDeviceStatus,
  useWifiDiagnostic, useModemDiagnostic)
- Project wizard: shared detail sections, wizard catalog/publish composables
- Address pricing composable + pricing-mock data
- Settings redesign hosting flow templates

Targo-hub:
- Contract acceptance (JWT residential + DocuSeal commercial tracks)
- Referral system
- Modem-bridge diagnostic normalizer
- Device extractors consolidated

Migration scripts:
- Invoice/quote print format setup, Jinja rendering
- Additional import + fix scripts (reversals, dates, customers, payments)

Docs:
- Consolidated: old scattered MDs → HANDOFF, ARCHITECTURE, DATA_AND_FLOWS,
  FLOW_EDITOR_ARCHITECTURE, BILLING_AND_PAYMENTS, CPE_MANAGEMENT,
  APP_DESIGN_GUIDELINES
- Archived legacy wizard PHP for reference
- STATUS snapshots for 2026-04-18/19

Cleanup:
- Removed ~40 generated PDFs/HTMLs (invoice_preview*, rendered_jinja*)
- .gitignore now covers invoice preview output + nested .DS_Store

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-22 10:44:17 -04:00

141 lines
6.0 KiB
JavaScript

'use strict'
// Referral Credit — validation + application endpoints backing the wizard's
// referral code field. Codes are stored in the ERPNext "Referral Credit"
// doctype (code unique, status Active/Used/Fulfilled/Cancelled).
//
// POST /api/referral/validate { code } → { ok, referrer, error? }
// POST /api/referral/apply { code, quotation, customer } → { ok, error? }
// POST /api/referral/generate { customer } → { ok, code }
//
// Apply is called from the Vue wizard at publish time (after quote creation)
// so the code flips to "Used" and links to the quotation. Fulfilled happens
// server-side once the service invoice is submitted (not here).
const { log, json, parseBody, erpFetch } = require('./helpers')
const DT = 'Referral Credit'
const encoded = encodeURIComponent(DT)
async function fetchByCode (code) {
const filters = [['code', '=', code]]
const fields = ['name', 'code', 'referrer', 'referrer_customer_name', 'status', 'new_subscriber_credit', 'referrer_credit']
const res = await erpFetch(`/api/resource/${encoded}?filters=${encodeURIComponent(JSON.stringify(filters))}&fields=${encodeURIComponent(JSON.stringify(fields))}&limit_page_length=1`)
if (res.status !== 200) return null
const rows = res.data.data || []
return rows[0] || null
}
async function validateCode (code) {
if (!code || !code.trim()) return { ok: false, error: 'Code manquant' }
const normalized = code.trim().toUpperCase()
const row = await fetchByCode(normalized)
if (!row) return { ok: false, error: 'Code introuvable' }
if (row.status !== 'Active') {
return { ok: false, error: `Code déjà ${row.status === 'Used' ? 'utilisé' : row.status === 'Fulfilled' ? 'complété' : 'annulé'}` }
}
return {
ok: true,
code: row.code,
referrer: row.referrer,
referrer_name: row.referrer_customer_name || '',
new_subscriber_credit: Number(row.new_subscriber_credit) || 50,
referrer_credit: Number(row.referrer_credit) || 50,
}
}
async function applyCode (code, quotation, customer) {
if (!code) return { ok: false, error: 'Code manquant' }
const normalized = String(code).trim().toUpperCase()
const row = await fetchByCode(normalized)
if (!row) return { ok: false, error: 'Code introuvable' }
if (row.status !== 'Active') return { ok: false, error: `Code non applicable (statut: ${row.status})` }
if (row.referrer === customer) return { ok: false, error: "On ne peut pas utiliser son propre code" }
const patch = {
status: 'Used',
applied_on: new Date().toISOString().slice(0, 10),
}
if (quotation) patch.referred_quotation = quotation
if (customer) patch.referred_customer = customer
const res = await erpFetch(`/api/resource/${encoded}/${encodeURIComponent(row.name)}`, {
method: 'PUT',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(patch),
})
if (res.status !== 200) {
log('referral.apply PUT failed:', res.status, res.data)
return { ok: false, error: 'Erreur de mise à jour (' + res.status + ')' }
}
return { ok: true, code: row.code }
}
// Generate a new code for a customer. Idempotent — returns the existing
// Active code if one already exists for that referrer (customers can share
// one code perpetually until explicitly cancelled).
async function generateCode (customer) {
if (!customer) return { ok: false, error: 'customer manquant' }
const existing = await erpFetch(`/api/resource/${encoded}?filters=${encodeURIComponent(JSON.stringify([['referrer', '=', customer], ['status', '=', 'Active']]))}&fields=${encodeURIComponent(JSON.stringify(['name', 'code']))}&limit_page_length=1`)
if (existing.status === 200 && (existing.data.data || []).length) {
return { ok: true, code: existing.data.data[0].code, created: false }
}
// New code — 6 uppercase alphanumerics, prefixed with GIGA-. Retry on
// collision (the unique constraint guarantees we don't double-insert).
const alphabet = 'ABCDEFGHJKLMNPQRSTUVWXYZ23456789' // ambiguous chars omitted
for (let attempt = 0; attempt < 8; attempt++) {
let suffix = ''
for (let i = 0; i < 6; i++) suffix += alphabet[Math.floor(Math.random() * alphabet.length)]
const code = `GIGA-${suffix}`
const res = await erpFetch(`/api/resource/${encoded}`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ code, referrer: customer, status: 'Active' }),
})
if (res.status === 200) return { ok: true, code, created: true }
// 409 on duplicate code — retry with new suffix
if (res.status !== 409 && res.status !== 417) {
log('referral.generate POST failed:', res.status, res.data)
return { ok: false, error: 'Erreur ERP (' + res.status + ')' }
}
}
return { ok: false, error: 'Génération échouée après 8 tentatives' }
}
async function handle (req, res, method, path) {
if (path === '/api/referral/validate' && method === 'POST') {
try {
const body = await parseBody(req)
const result = await validateCode(body.code || '')
return json(res, 200, result)
} catch (e) {
log('referral.validate error:', e.message)
return json(res, 500, { ok: false, error: e.message })
}
}
if (path === '/api/referral/apply' && method === 'POST') {
try {
const body = await parseBody(req)
const result = await applyCode(body.code || '', body.quotation || '', body.customer || '')
return json(res, result.ok ? 200 : 400, result)
} catch (e) {
log('referral.apply error:', e.message)
return json(res, 500, { ok: false, error: e.message })
}
}
if (path === '/api/referral/generate' && method === 'POST') {
try {
const body = await parseBody(req)
const result = await generateCode(body.customer || '')
return json(res, result.ok ? 200 : 400, result)
} catch (e) {
log('referral.generate error:', e.message)
return json(res, 500, { ok: false, error: e.message })
}
}
return json(res, 404, { error: 'Referral route not found: ' + path })
}
module.exports = { handle, validateCode, applyCode, generateCode }