PartyGroup.js
524 Bytes
/* global console */
define(
[
'ofbiz/model/Base',
'ofbiz/model/Party',
],
function(
Base,
Party
) {
'use strict';
console.log('ofbiz/model/PartyGroup: loaded');
return Party.extend({
defaults: {
groupName: null,
},
validation: {
groupName: [
Base.createRequiredValidator('ofbiz/model/PartyGroup.groupName'),
],
},
});
}
);