fix: remove reserved ticket functionality from TicketProblems and TicketSaleMoreActions components #1600

Merged
jsegarra merged 10 commits from hotfix_remove_reserved into master 2025-03-31 21:50:49 +00:00
1 changed files with 4 additions and 2 deletions
Showing only changes of commit dcf0b906f4 - Show all commits

View File

@ -187,7 +187,9 @@ const getRowUpdateInputEvents = (sale) => {
const resetChanges = async () => {
arrayData.fetch({ append: false });
tableRef.value.reload();
tableRef.value.CrudModelRef.hasChanges = false;
await tableRef.value.reload();
selectedRows.value = [];
};
const changeQuantity = async (sale) => {
@ -390,7 +392,7 @@ const changeTicketState = async (val) => {
const params = { ticketFk: route.params.id, code: val };
await axios.post('Tickets/state', params);
notify('globals.dataSaved', 'positive');
await resetChanges();
resetChanges();
};
const removeSelectedSales = () => {