PartyGroup.js
621 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: [
{
required: Base.createRequiredValidator('ofbiz/model/PartyGroup.groupName'),
maxLength: 100
}
],
},
});
}
);