salix/services/ticket/common/models/ticket-packaging.js

14 lines
395 B
JavaScript
Raw Normal View History

2018-03-21 10:08:59 +00:00
module.exports = function(Self) {
Self.validateBinded('quantity', validateQuantity, {
2018-04-04 14:41:06 +00:00
message: 'Enter an integer different to zero',
2018-03-21 10:08:59 +00:00
allowNull: false,
allowBlank: false
});
function validateQuantity(quantity) {
return !isNaN(quantity) && quantity != 0;
2018-03-21 10:08:59 +00:00
}
Self.validatesPresenceOf('packagingFk', {message: 'The package cannot be blank'});
2018-03-21 10:08:59 +00:00
};