2
0
mirror of https://github.com/frappe/books.git synced 2024-11-10 07:40:55 +00:00

Added sleep back to populate data properly

This commit is contained in:
Piyush Singhania 2021-12-27 15:30:01 +05:30 committed by Ankit Singhaniya
parent 540f2988f1
commit 9fd833f416

View File

@ -1,6 +1,6 @@
import { showMessageDialog } from '@/utils';
import frappe from 'frappejs';
import { _ } from 'frappejs/utils';
import { sleep, _ } from 'frappejs/utils';
import { DateTime } from 'luxon';
import { saveExportData } from '../reports/commonExporter';
import { getSavePath } from '../src/utils';
@ -120,6 +120,7 @@ export async function generateGstr1Json(getReportData) {
gstData.b2cs = await generateB2csData(rows);
}
await sleep(1);
const jsonData = JSON.stringify(gstData);
await saveExportData(jsonData, filePath);
}