• Pass 4 of the routine-narrative job. While documenting xly's 1,861 stored
    procedures and functions, the narrative-writing subagents incidentally
    surfaced ~140 code-level defects, header/comment drift, sealed-but-still-
    bound routines, tenant-baked GUIDs, dead code, debug leakage, and naming
    inconsistencies — flagged in individual narrative pages but otherwise
    scattered.
    
    This new page (en/docs/reference/maintainer/known-issues-in-stored-procedures.md)
    collects them in one navigable index, deep-linking back to each routine's
    auto-catalog page where the per-routine evidence lives. Grouped by
    category:
    
      - Real correctness / runtime bugs (~40)
      - Header / comment drift (~35)
      - Sealed-but-still-bound (~25 families)
      - Tenant-baked GUIDs / hardcoded magic values (~30)
      - Dead code / unimplemented stubs (~30)
      - Debug leakage left in production (~15)
      - Naming / structural inconsistencies (~10)
      - Security-adjacent (3)
    
    Explicitly NOT a fix plan — flags are signals worth verifying, not
    confirmed defect tickets. Several are operationally invisible; others are
    likely intentional rollback-retained legacy. Methodology and "what this
    page is and is not" framing are in the page header.
    
    Also linked from reference/maintainer/index.md and added to mkdocs.yml nav.
    zichun authored
     
    Browse Code »

  • User asked "Is there a BI engine?" Investigation found a substantial
    metadata-driven BI layer that the wiki had no dedicated coverage for.
    
    New page reference/maintainer/bi-engine.md:
    - Charts: gdsconfigcharmaster (3,006 rows) + slave (1,951) +
      CharServiceImpl (2,219 lines, one of the heaviest in
      xlyBusinessService). 11 chart types catalogued by sCharType
      distribution: Div(1558)/sLabel(1143)/Progress(137)/sPie(52)/
      commonList(45)/sColumnarGroup(30)/sColumnar(28)/sBrokenLine(5)/
      sBar(3)/ColorBlock(3)/sGauge(2).
    - 20 Sp_chart_* aggregation procs catalogued by domain (homepage
      cards, today/month sales, financial, equipment/shop-floor).
    - 6 /indexPage/commonChar dashboard modules listed by sId+name.
    - KPI subsystem: 6 kpi* tables (kpimaster=124,524 rows live),
      KpiServiceImpl (833 lines), BusinessModelKpiServiceImpl (901),
      FlushModleKpiThread, 2 Sp_KPI_* procs + spKPImodule.
    - Render flow end-to-end (SPA → getModelBysId → CharServiceImpl
      → generic proc dispatch → ECharts).
    - Customer-override KPI examples under script/客户/ noted.
    - Explicit "what this is not": not self-service BI, not real-time
      analytics, not OLAP-cube-backed.
    - Added to mkdocs nav under Reference (Maintainer).
    
    Tech-stack.md correction:
    - The OLAP4J row previously claimed "1 file in xlyPersist imports
      org.olap4j.*". Empirical re-grep returns ZERO Java imports of
      org.olap4j anywhere in source. The jars are classpath dead weight
      (the xmlaserver line is even commented out in build.gradle).
      Updated row to reflect the actual state and link to bi-engine.md.
    zichun authored
     
    Browse Code »

  • User flagged that searches for `BusinessBaseServiceImpl` and `MyBatis`
    were returning thousands of irrelevant matches. Cause: the search
    plugin's separator regex included `(?!\b)(?=[A-Z][a-z])`, which split
    every CamelCase boundary at INDEX time AND at QUERY time. So the
    indexed token stream for `BusinessBaseServiceImpl` was [Business, Base,
    Service, Impl] (each a common, low-relevance token), and the same
    4-token expansion happened on the query — every page that mentioned
    "service" matched.
    
    Removing the CamelCase splitter so identifiers stay whole. Verified
    via search_index.json: 18 docs now contain the intact
    `BusinessBaseServiceImpl` token (down from 119 spurious matches);
    `MyBatis` queries no longer collide with `MySQL` / `My...`. Lunr
    still supports wildcard suffixes (`Service*`) for partial-token
    search if a maintainer wants it.
    zichun authored
     
    Browse Code »
  • Third commit closing high-value gaps the user flagged in the
    verification plan.
    
    Cross-node cache coherence — LOCKED EMPIRICALLY:
    - Connected to live Redis at 118.178.19.35:16379 db=0.
    - 233 of 267 keys use Spring's `<cacheName>::<key>` separator.
    - Confirmed key shapes match @Cacheable SpEL specs:
        businessGdsconfigformsServiceGetFormconstData::{...}  (37 entries)
        gdsmoduleById::gdsmoduleById_<sBrandsId>_<sSubsidiaryId>_<sLanguage>  (2 entries)
    - Conclusion: Spring's RedisCacheManager IS the active CacheManager.
      @CacheEvict on any node clears the shared Redis store; cross-node
      coherence works without any JMS involvement. Removed the "open
      question" hedge in cache-invalidation.md.
    
    New page — Metadata-management services (xlyManage):
    - Closes the biggest documentation gap surfaced by Pass C2.
    - Catalogs the 8 large Gds*ServiceImpl classes (878+729+555+489+
      362+319+243+221 = ~3,800 lines of metadata-CRUD logic) plus
      CommonServiceImpl (56) and SysbrandsServiceImpl (125).
    - Documents the universal five-method shape every Gds*Service
      follows (get/getBysId/add/update/delete) and how it pairs with
      the corresponding Gds*Controller in xlyEntry/.../systemweb/.
    - Maps each service to its BACK admin screen.
    - Notes the cache-invalidation hookpoint (synchronous
      BusinessCleanRedisData.delCleanRedisData* on commit).
    - Added to mkdocs nav under Reference (Maintainer).
    
    Worked examples:
    - Slice 04: gdsconfigformcustomslave is empty in the dev DB
      (0 rows). Updated the open verification item to confirm this
      rather than leave the framing "depends on the deployment".
    - Slice 05: side-by-side diff of 重庆展印's Sp_SalSalesCheck vs
      the standard. Quantified differences (1714 vs 723 lines, same
      14-param signature, override adds CbxSrcNoCheck branch and
      strips temp-table aggregation, 12 sibling procs use the same
      CbxSrcNoCheck pattern). Added a copy-pasteable diff command.
    
    Honest scope acknowledgement:
    - api-reference/internal.md: explicit "what this catalog
      includes vs treats as illustrative" paragraph. ~19 framework-
      primitive controllers documented; ~52 business-domain
      controllers (workorder/salesorder/productionPlan/etc.) treated
      as illustrations of the framework at work, with grep guidance
      for maintainers who need to find them.
    
    Auto-catalog regenerated:
    - Ran scripts/gen_catalog.py against live DB. No changes
      (catalog was already current); 3081 generated pages.
    
    Pass E save trace:
    - Tried multiple angles (UI flow, hand-crafted POST with token
      in Authorization header, fetch interception). Edit-mode UI
      didn't yield a save fire under our setup (Ant Design grid +
      Vue SPA edit-mode peculiarity). Read trace remains
      fully verified end-to-end. Save body shape is documented in
      the Javadoc on BusinessBaseController.java:161-163 and
      reflected in the wiki; live save corroboration deferred again.
    zichun authored
     
    Browse Code »

  • en:
    - new: api-reference/notifications.md, reference/maintainer/running-locally.md,
      reference/maintainer/tech-stack.md
    - concepts/index.md: add Mermaid architecture diagram
    - index.md: scope-note MongoDB store as plat-tier
    - concepts/api-surface.md: point "the four-table read" link at the
      reference/maintainer/runtime.md anchor that actually contains the section
    - maintainer/index.md, api-reference/index.md, mkdocs.yml: nav + cross-links
    
    zh:
    - mirror translations of the new en pages, plus zh api-reference/* section
    zichun authored
     
    Browse File »

  • Verified every factual claim in the hand-written prose against the
    codebase under ../xly/ and the live xlyweberp_saas_ai schema, and fixed
    the drift:
    
    - semantic-fk: clarified — zero FKs on xly tables; the ones that exist
      are all on bundled Activiti / Quartz schemas, which the runtime
      doesn't join through.
    - multi-tenancy / runtime / slice 2: corrected RequestAddParamUtil shape
      (16 keys, 56 lines), noted the parallel xlyApi copy.
    - slice 1: corrected line ranges for addUpdateDelBusinessData;
      clarified that sTableNameList is a cache-invalidation gate, not an
      authorisation gate; corrected the gdsroute claim — unregistered paths
      are NOT 404'd server-side, the SPA uses gdsroute as a client-side
      whitelist (web-verified).
    - runtime: fixed controller package paths
      (Gdsmodule/Gdsconfigform/Gdsconfigtb live in systemweb/, not
      businessweb/); added CheckFlowController.
    - sql-templates / proc-dispatch: 8 scaffolds, not 7 (sSqlStr.sql).
    - master-slave: removed table names that don't exist (accOrderCostAnalysisMaster,
      quoQuotationCalc, mftWorkOrderCalc, mftWorkOrderSlaveMoney);
      added the *_tmp family that does.
    - permissions: full rewrite. The original page described
      gdsjurisdiction as a per-(module, role, button) rule table backed by
      empty plat_base_authority_* lookups; reality is gdsjurisdiction is a
      per-module catalog of buttons/actions, with sysjurisdiction carrying
      the actual role/user grants.
    - Removed environment-specific facts (row counts, sizes, timestamps,
      per-DB enumerations) so the wiki documents the framework, not one
      particular DB snapshot.
    
    Auto-catalog generator (en/scripts/gen_catalog.py):
    - Rewritten to query MySQL directly via ~/.my.cnf (replaces the
      recon/*.tsv pipeline).
    - Stripped ephemeral fields from output (Rows, Data size, Created,
      Updated on tables; Created, Last altered on routines; Definer on
      views).
    - Strips the schema-name prefix from VIEW_DEFINITION so view bodies
      are portable across deployments.
    - Wipes and rewrites docs/auto-catalog/{tables,views,procedures,functions}/
      on each run.
    - Auto-catalog regenerated.
    
    New API Reference chapter (5):
    - concepts/api-surface.md introduces the three-tier design (xlyEntry
      internal, xlyApi external, xlyInterface webhooks).
    - api-reference/{index,internal,external,webhooks,messaging}.md cover
      each surface, with the data-driven /api/invoke{sApiCode} pattern,
      sysapi schema, token flow, and the SpringFox Swagger UI location on
      xlyInterface.
    - mkdocs nav: chapters renumbered (Auto-Catalog → 6, Glossary → 7,
      Contributing → 8); glossary/contributing wrapped as section indexes
      to render correctly under navigation.sections.
    
    Other:
    - Bilingual top-level README (Chinese + English).
    - requirements.txt: pymysql added for the new generator.
    zichun authored
     
    Browse Code »
  • zichun authored
     
    Browse Code »
  • zichun authored
     
    Browse Code »
  • Documents the xly (小羚羊) printing-industry ERP framework. Built with
    MkDocs Material; CJK search via jieba; 3,076 auto-generated catalog
    pages from recon/*.tsv plus hand-written prose for the framework's
    core mental model and end-to-end vertical slices.
    
    Phase 0 recon: stack, schema shape, framework metadata layer, scope.
    Phase 1 wiki: scaffold + auto-catalog + Slices 1-6 (Slice 7 deferred).
    
    Slice coverage:
      1. CRUD module (Hello World) — observed network + cited source
      2. Multi-tenancy & product editions — sBrandsId/sSubsidiaryId/sVersionFlowId
      3. View-backed module (read-only report)
      4. Custom field overlay (gdsconfigformcustomslave)
      5. Per-customer SQL override (script/客户/<customer>/)
      6. Hardware integration (xlyPlc, optional)
      7. Workflow (deferred — Activiti tables empty in dev DB)
    
    Concepts: thesis, modules-forms-vtables, master/slave, semantic-FK,
    customization channels & layers, multi-tenancy, request lifecycle.
    
    Reference (Builder): define-form, define-vtable, permissions,
    attach-workflow (deferred).
    
    Reference (Maintainer): runtime, proc-dispatch, cache-invalidation,
    sql-templates, deployment, activiti.
    reporkey authored
     
    Browse Code »