import { Doc } from 'fyo/model/doc'; function getPaddedName(prefix: string, next: number, padZeros: number): string { return prefix + next.toString().padStart(padZeros ?? 4, '0'); } export default class NumberSeries extends Doc { setCurrent() { let current = this.get('current') as number | null; /** * Increment current if it isn't the first entry. This * is to prevent reassignment of NumberSeries document ids. */ if (!current) { current = this.get('start') as number; } else { current = current + 1; } this.current = current; } async next(schemaName: string) { this.setCurrent(); const exists = await this.checkIfCurrentExists(schemaName); if (exists) { this.current = (this.current as number) + 1; } await this.sync(); return this.getPaddedName(this.current as number); } async checkIfCurrentExists(schemaName: string) { if (!schemaName) { return true; } const name = this.getPaddedName(this.current as number); return await this.fyo.db.exists(schemaName, name); } getPaddedName(next: number): string { return getPaddedName(this.name as string, next, this.padZeros as number); } }