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

13 lines
321 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);
require('../methods/zone/editPrices')(Self);
2019-03-14 14:07:24 +00:00
2018-09-19 13:05:07 +00:00
Self.validatesPresenceOf('warehouseFk', {
message: `Warehouse cannot be blank`
});
Self.validatesPresenceOf('agencyModeFk', {
message: `Agency cannot be blank`
});
};