16 lines
444 B
JavaScript
16 lines
444 B
JavaScript
module.exports = function(Self) {
|
|
require('../methods/packaging/crudTicketPackaging')(Self);
|
|
|
|
Self.validateBinded('quantity', validateQuantity, {
|
|
message: 'Quantity cannot be zero',
|
|
allowNull: false,
|
|
allowBlank: false
|
|
});
|
|
|
|
function validateQuantity(quantity) {
|
|
return !isNaN(quantity) && quantity != 0;
|
|
}
|
|
|
|
Self.validatesPresenceOf('packagingFk', {message: 'Package cannot be blank'});
|
|
};
|