2022-05-24 10:50:22 +00:00
|
|
|
module.exports = Self => {
|
|
|
|
require('../methods/shelving/getSummary')(Self);
|
2024-03-14 07:36:19 +00:00
|
|
|
require('../methods/shelving/addLog')(Self);
|
2025-02-19 11:53:29 +00:00
|
|
|
|
|
|
|
Self.validatesUniquenessOf('code', {
|
2025-02-20 12:00:00 +00:00
|
|
|
message: `The code already exists`
|
2025-02-19 11:53:29 +00:00
|
|
|
});
|
2022-05-24 10:50:22 +00:00
|
|
|
};
|