feat: refs #7289 #7289 remove bad translation

This commit is contained in:
Javier Segarra 2024-11-18 10:10:30 +01:00
parent 6c00efae89
commit 9558d030ff
2 changed files with 2 additions and 2 deletions

View File

@ -388,6 +388,5 @@
"There is no company associated with that warehouse": "No hay ninguna empresa asociada a ese almacén",
"ticketLostExpedition": "El ticket [{{ticketId}}]({{{ticketUrl}}}) tiene la siguiente expedición perdida:{{ expeditionId }}",
"The web user's email already exists": "El correo del usuario web ya existe",
"Sales already moved": "Ya han sido transferidas",
"Línea ya ha sido transferida": "Línea ya ha sido transferida"
"Sales already moved": "Ya han sido transferidas"
}

View File

@ -80,6 +80,7 @@ module.exports = Self => {
const hasClaimedSales = await models.ClaimBeginning.findOne({where: {saleFk: {inq: saleIds}}});
if (ticketId != id && hasClaimedSales)
throw new UserError(`Can't transfer claimed sales`);
const missingSales = sales.some(({id}) => !map.has(id));
if (missingSales)
throw new UserError($t('Sales already moved'));