0
0
Fork 0

mini change

This commit is contained in:
William Buezas 2024-06-17 12:19:44 -03:00
parent c31e865faa
commit 6b7c76dde3
1 changed files with 7 additions and 1 deletions

View File

@ -240,7 +240,13 @@ const updateConcept = async (sale) => {
}
};
const DEFAULT_EDIT = { price: null, discount: null, sale: null, sales: null };
const DEFAULT_EDIT = {
price: null,
discount: null,
sale: null,
sales: null,
oldQuantity: null,
};
const edit = ref({ ...DEFAULT_EDIT });
const usesMana = ref(null);