mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +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 GSTR2 extends BaseGSTR {
|
||
|
static title = 'GSTR2';
|
||
|
static reportName = 'gstr-2';
|
||
|
|
||
|
gstrType: GSTRType = 'GSTR-2';
|
||
|
getActions(): Action[] {
|
||
|
return [];
|
||
|
}
|
||
|
}
|