Merge pull request 'hotfix clientUnpaid' (!1380) from hotfix-clientUnpaid into master
gitea/salix/pipeline/head This commit looks good Details

Reviewed-on: #1380
This commit is contained in:
Joan Sanchez 2023-03-09 08:06:29 +00:00
commit 76f5b3def3
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ module.exports = function(Self) {
const data = await Self.rawSql(query, [id, date], myOptions);
client.debt = data[0].debt;
client.unpaid = await Self.app.models.ClientUnpaid.findOne({id}, myOptions);
client.unpaid = await Self.app.models.ClientUnpaid.findById(id, null, myOptions);
return client;
};