EmailAddress.js
1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/* global console */
define(
[
'underscore',
'ofbiz/model/Base',
'ofbiz/model/ContactMech',
],
function(
_,
Base,
ContactMech
) {
'use strict';
console.log('ofbiz/model/EmailAddress: loaded');
return ContactMech.extend({
defaults: {
emailAddress: null,
},
validation: {
emailAddress: [
{
pattern: 'email',
required: Base.createRequiredChecker('ofbiz/model/EmailAddress.emailAddress'),
maxLength: 255
},
]
},
parse: function(data) {
if (data.infoString !== undefined) {
data = _.clone(data);
if (data.emailAddress === undefined) {
data.emailAddress = data.infoString;
}
delete data.infoString;
}
return data;
},
});
}
);