mirror of
https://github.com/frappe/books.git
synced 2024-11-13 00:46:28 +00:00
14 lines
296 B
TypeScript
14 lines
296 B
TypeScript
|
import { Action } from 'fyo/model/types';
|
||
|
import { BaseGSTR } from './BaseGSTR';
|
||
|
import { GSTRType } from './types';
|
||
|
|
||
|
export class GSTR1 extends BaseGSTR {
|
||
|
static title = 'GSTR1';
|
||
|
static reportName = 'gstr-1';
|
||
|
|
||
|
gstrType: GSTRType = 'GSTR-1';
|
||
|
getActions(): Action[] {
|
||
|
return [];
|
||
|
}
|
||
|
}
|