-
Notifications
You must be signed in to change notification settings - Fork 0
feat: database-backed COA with trust-path classification #84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,77 @@ | ||
| // Seed script for Chart of Accounts global defaults | ||
| // Seeds REI_CHART_OF_ACCOUNTS as global entries (tenant_id = NULL) | ||
| // Run after schema push: npm run db:push:system && npx tsx database/seeds/chart-of-accounts.ts | ||
|
|
||
| import { db } from '../../server/db'; | ||
| import * as schema from '../system.schema'; | ||
| import { REI_CHART_OF_ACCOUNTS, TURBOTENANT_CATEGORY_MAP } from '../chart-of-accounts'; | ||
|
|
||
| export async function seedChartOfAccounts() { | ||
| console.log('Seeding global Chart of Accounts...'); | ||
|
|
||
| const values = REI_CHART_OF_ACCOUNTS.map((acct) => ({ | ||
| tenantId: null as unknown as undefined, // global account | ||
chitcommit marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| code: acct.code, | ||
| name: acct.name, | ||
| type: acct.type, | ||
| subtype: acct.subtype ?? null, | ||
| description: acct.description, | ||
| scheduleELine: acct.scheduleE ?? null, | ||
| taxDeductible: acct.taxDeductible ?? false, | ||
| parentCode: deriveParentCode(acct.code), | ||
| isActive: true, | ||
| modifiedBy: 'seed:chart-of-accounts', | ||
| metadata: { | ||
| keywords: getKeywordsForCode(acct.code), | ||
| }, | ||
| })); | ||
|
|
||
| // Upsert: insert or skip on conflict (global code uniqueness) | ||
| let inserted = 0; | ||
| for (const val of values) { | ||
| try { | ||
| await db.insert(schema.chartOfAccounts).values(val); | ||
| inserted++; | ||
| } catch (e: any) { | ||
| if (e.message?.includes('unique') || e.code === '23505') { | ||
| // Already exists — skip | ||
| continue; | ||
| } | ||
| throw e; | ||
| } | ||
chitcommit marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| } | ||
|
|
||
| console.log(` ${inserted} accounts seeded (${values.length - inserted} already existed)`); | ||
| console.log('Done.'); | ||
| } | ||
|
|
||
| // Derive parent code from account code (e.g. '5110' -> '5100', '5020' -> '5000') | ||
| function deriveParentCode(code: string): string | null { | ||
| if (code.length !== 4) return null; | ||
| const num = parseInt(code, 10); | ||
| // Top-level codes (x000) have no parent | ||
| if (num % 1000 === 0) return null; | ||
| // Sub-codes within a 100-range share a parent at the x00 level | ||
| const parentNum = Math.floor(num / 100) * 100; | ||
| const parentCode = parentNum.toString().padStart(4, '0'); | ||
| // Only set parent if the parent account exists in our COA | ||
| const parentExists = REI_CHART_OF_ACCOUNTS.some((a) => a.code === parentCode); | ||
| return parentExists ? parentCode : null; | ||
chitcommit marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| } | ||
|
|
||
| // Reverse-map: for a given COA code, find all keywords from TURBOTENANT_CATEGORY_MAP | ||
| function getKeywordsForCode(code: string): string[] { | ||
| return Object.entries(TURBOTENANT_CATEGORY_MAP) | ||
| .filter(([_, c]) => c === code) | ||
| .map(([keyword]) => keyword); | ||
| } | ||
|
|
||
| // Run directly if executed as script | ||
| if (import.meta.url.endsWith(process.argv[1]?.replace(/^file:\/\//, '') || '')) { | ||
| seedChartOfAccounts() | ||
| .then(() => process.exit(0)) | ||
| .catch((e) => { | ||
| console.error('Seed failed:', e); | ||
| process.exit(1); | ||
| }); | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.