mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
feat(ManualJournals): Auto-increment.
fix(BillPayment): Validate the opened payment bills. fix(redux): presist redux state. fix(useRequestQuery): hook.
This commit is contained in:
@@ -3,9 +3,9 @@ import { IJournalEntry } from './Journal';
|
||||
import { ISystemUser } from './User';
|
||||
|
||||
export interface IManualJournal {
|
||||
id: number;
|
||||
id?: number;
|
||||
date: Date | string;
|
||||
journalNumber: number;
|
||||
journalNumber: string;
|
||||
journalType: string;
|
||||
reference: string;
|
||||
amount: number;
|
||||
@@ -37,7 +37,7 @@ export interface IManualJournalEntryDTO {
|
||||
|
||||
export interface IManualJournalDTO {
|
||||
date: Date;
|
||||
journalNumber: number;
|
||||
journalNumber: string;
|
||||
journalType: string;
|
||||
reference?: string;
|
||||
description?: string;
|
||||
|
||||
10
server/src/interfaces/Setup.ts
Normal file
10
server/src/interfaces/Setup.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
|
||||
|
||||
|
||||
export interface IOrganizationSetupDTO{
|
||||
organizationName: string,
|
||||
baseCurrency: string,
|
||||
fiscalYear: string,
|
||||
industry: string,
|
||||
timeZone: string,
|
||||
}
|
||||
@@ -39,4 +39,5 @@ export * from './AgingReport';
|
||||
export * from './ARAgingSummaryReport';
|
||||
export * from './APAgingSummaryReport';
|
||||
export * from './Mailable';
|
||||
export * from './InventoryAdjustment';
|
||||
export * from './InventoryAdjustment';
|
||||
export * from './Setup'
|
||||
Reference in New Issue
Block a user