Prevent businessTypeFk validation for other invalid fields
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Joan Sanchez 2022-01-05 15:17:21 +01:00
parent e1c9195495
commit 2279b3d9ab
1 changed files with 9 additions and 7 deletions

View File

@ -184,15 +184,17 @@ module.exports = Self => {
const changes = ctx.data || ctx.instance;
const orgData = ctx.currentInstance;
const businessTypeFk = changes && changes.businessTypeFk || orgData && orgData.businessTypeFk;
const isTaxDataChecked = changes && changes.isTaxDataChecked || orgData && orgData.isTaxDataChecked;
if (!ctx.isNewInstance) {
const businessTypeFk = changes && changes.businessTypeFk || orgData && orgData.businessTypeFk;
const isTaxDataChecked = changes && changes.isTaxDataChecked || orgData && orgData.isTaxDataChecked;
const changedFields = Object.keys(changes);
const hasChangedOtherFields = changedFields.some(key => key !== 'businessTypeFk');
let isWorker = false;
if (!ctx.isNewInstance)
isWorker = await Self.app.models.UserAccount.findById(orgData.id);
const isWorker = await Self.app.models.UserAccount.findById(orgData.id);
if (!businessTypeFk && !isTaxDataChecked && !isWorker)
throw new UserError(`The type of business must be filled in basic data`);
if (!businessTypeFk && !isTaxDataChecked && !isWorker && !hasChangedOtherFields)
throw new UserError(`The type of business must be filled in basic data`);
}
});
Self.observe('before save', async function(ctx) {