fix: updateTracking refs #6276
gitea/salix/pipeline/head There was a failure building this commit
Details
gitea/salix/pipeline/head There was a failure building this commit
Details
This commit is contained in:
parent
384d9ec803
commit
da8057e4c7
|
@ -30,7 +30,7 @@ module.exports = Self => {
|
|||
},
|
||||
{
|
||||
arg: 'isScanned',
|
||||
type: 'number',
|
||||
type: 'boolean',
|
||||
},
|
||||
],
|
||||
http: {
|
||||
|
@ -64,7 +64,7 @@ module.exports = Self => {
|
|||
originalQuantity,
|
||||
workerFk: userId,
|
||||
stateFk: state.id,
|
||||
isScanned,
|
||||
isScanned: isScanned === undefined ? null : isScanned,
|
||||
};
|
||||
|
||||
const saleTracking = await models.SaleTracking.findOne({
|
||||
|
|
Loading…
Reference in New Issue