salix/modules/agency/back/models/zone.js

12 lines
272 B
JavaScript
Raw Normal View History

2018-09-19 13:05:07 +00:00
module.exports = Self => {
2019-03-14 14:07:24 +00:00
require('../methods/zone/clone')(Self);
2018-09-19 13:05:07 +00:00
Self.validatesPresenceOf('warehouseFk', {
message: `Warehouse cannot be blank`
});
Self.validatesPresenceOf('agencyModeFk', {
message: `Agency cannot be blank`
});
};