salix/modules/ticket/back/models/ticket-packaging.js

14 lines
391 B
JavaScript
Raw Permalink 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
}
2018-09-19 13:05:07 +00:00
Self.validatesPresenceOf('packagingFk', {message: 'Package cannot be blank'});
2018-03-21 10:08:59 +00:00
};