2018-08-30 07:19:09 +00:00
|
|
|
module.exports = Self => {
|
2018-09-25 12:39:08 +00:00
|
|
|
require('../methods/claim-beginning/importToNewRefundTicket')(Self);
|
2018-08-30 07:19:09 +00:00
|
|
|
Self.validatesUniquenessOf('saleFk', {
|
|
|
|
message: `A claim with that sale already exists`
|
|
|
|
});
|
|
|
|
};
|