mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-21 07:10:33 +00:00
fix: remove blank files
This commit is contained in:
@@ -545,7 +545,6 @@ export default class PaymentReceivesController extends BaseController {
|
|||||||
includeOptionals: false,
|
includeOptionals: false,
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
console.log(req.params);
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await this.paymentReceiveApplication.notifyPaymentByMail(
|
await this.paymentReceiveApplication.notifyPaymentByMail(
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ export interface IJournalReportQuery {
|
|||||||
|
|
||||||
export interface IJournalReportEntriesGroup {
|
export interface IJournalReportEntriesGroup {
|
||||||
id: string;
|
id: string;
|
||||||
|
date: Date;
|
||||||
dateFormatted: string;
|
dateFormatted: string;
|
||||||
entries: IJournalEntry[];
|
entries: IJournalEntry[];
|
||||||
currencyCode: string;
|
currencyCode: string;
|
||||||
|
|||||||
@@ -141,11 +141,11 @@ export const GeneralLedgerSheetExportMenu = () => {
|
|||||||
);
|
);
|
||||||
// Handle csv export button click.
|
// Handle csv export button click.
|
||||||
const handleCsvExportBtnClick = () => {
|
const handleCsvExportBtnClick = () => {
|
||||||
csvExport().then(() => {});
|
csvExport();
|
||||||
};
|
};
|
||||||
// Handle xlsx export button click.
|
// Handle xlsx export button click.
|
||||||
const handleXlsxExportBtnClick = () => {
|
const handleXlsxExportBtnClick = () => {
|
||||||
xlsxExport().then(() => {});
|
xlsxExport();
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|||||||
Reference in New Issue
Block a user