From 6badef7778921954f2df625669a3cec1da6a9643 Mon Sep 17 00:00:00 2001 From: Abdul Aziz Amrullah Date: Fri, 19 Jun 2026 11:03:46 +0700 Subject: [PATCH] Forgot to rollback .xlsx format --- wizard/pos_export_bc_wizard.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wizard/pos_export_bc_wizard.py b/wizard/pos_export_bc_wizard.py index 5aee81e..6ab743d 100644 --- a/wizard/pos_export_bc_wizard.py +++ b/wizard/pos_export_bc_wizard.py @@ -239,9 +239,9 @@ class PosExportBcWizard(models.TransientModel): end_str = self.end_date.strftime('%y%m%d') if export_all: - file_name = f"POS_{company_ident}_{start_str}_to_{end_str}_OLD_ALL.xls" + file_name = f"POS_{company_ident}_{start_str}_to_{end_str}_OLD_ALL.xlsx" elif old_format: - file_name = f"POS_{company_ident}_{start_str}_to_{end_str}_OLD.xls" + file_name = f"POS_{company_ident}_{start_str}_to_{end_str}_OLD.xlsx" else: file_name = f"POS_{company_ident}_{start_str}_to_{end_str}.xlsx"