openerp.web.formats = function(instance) { var _t = instance.web._t; /** * Intersperses ``separator`` in ``str`` at the positions indicated by * ``indices``. * * ``indices`` is an array of relative offsets (from the previous insertion * position, starting from the end of the string) at which to insert * ``separator``. * * There are two special values: * * ``-1`` * indicates the insertion should end now * ``0`` * indicates that the previous section pattern should be repeated (until all * of ``str`` is consumed) * * @param {String} str * @param {Array} indices * @param {String} separator * @returns {String} */ instance.web.intersperse = function (str, indices, separator) { separator = separator || ''; var result = [], last = str.length; for(var i=0; i stop break; } else if (section === 0) { // repeat previous section forever //noinspection AssignmentToForLoopParameterJS section = indices[--i]; } result.push(str.substring(last-section, last)); last -= section; } var s = str.substring(0, last); if (s) { result.push(s); } return result.reverse().join(separator); }; /** * Insert "thousands" separators in the provided number (which is actually * a string) * * @param {String} num * @returns {String} */ instance.web.insert_thousand_seps = function (num) { var negative = num[0] === '-'; num = (negative ? num.slice(1) : num); return (negative ? '-' : '') + instance.web.intersperse( num, _t.database.parameters.grouping, _t.database.parameters.thousands_sep); }; /** * removes literal (non-format) text from a date or time pattern, as datejs can * not deal with literal text in format strings (whatever the format), whereas * strftime allows for literal characters * * @param {String} value original format */ instance.web.strip_raw_chars = function (value) { var isletter = /[a-zA-Z]/, output = []; for(var index=0; index < value.length; ++index) { var character = value[index]; if(isletter.test(character) && (index === 0 || value[index-1] !== '%')) { continue; } output.push(character); } return output.join(''); }; var normalize_format = function (format) { return Date.normalizeFormat(instance.web.strip_raw_chars(format)); }; /** * Formats a single atomic value based on a field descriptor * * @param {Object} value read from OpenERP * @param {Object} descriptor union of orm field and view field * @param {Object} [descriptor.widget] widget to use to display the value * @param {Object} descriptor.type fallback if no widget is provided, or if the provided widget is unknown * @param {Object} [descriptor.digits] used for the formatting of floats * @param {String} [value_if_empty=''] returned if the ``value`` argument is considered empty */ instance.web.format_value = function (value, descriptor, value_if_empty) { // If NaN value, display as with a `false` (empty cell) if (typeof value === 'number' && isNaN(value)) { value = false; } //noinspection FallthroughInSwitchStatementJS switch (value) { case '': if (descriptor.type === 'char') { return ''; } console.warn('Field', descriptor, 'had an empty string as value, treating as false...'); case false: case Infinity: case -Infinity: return value_if_empty === undefined ? '' : value_if_empty; } var l10n = _t.database.parameters; switch (descriptor.widget || descriptor.type || (descriptor.field && descriptor.field.type)) { case 'id': return value.toString(); case 'integer': return instance.web.insert_thousand_seps( _.str.sprintf('%d', value)); case 'float': var digits = descriptor.digits ? descriptor.digits : [69,2]; digits = typeof digits === "string" ? py.eval(digits) : digits; var precision = digits[1]; var formatted = _.str.sprintf('%.' + precision + 'f', value).split('.'); formatted[0] = instance.web.insert_thousand_seps(formatted[0]); return formatted.join(l10n.decimal_point); case 'float_time': var pattern = '%02d:%02d'; if (value < 0) { value = Math.abs(value); pattern = '-' + pattern; } return _.str.sprintf(pattern, Math.floor(value), Math.round((value % 1) * 60)); case 'many2one': // name_get value format return value[1]; case 'one2many': case 'many2many': return _.str.sprintf(_t("(%d records)"), value.length); case 'datetime': if (typeof(value) == "string") value = instance.web.auto_str_to_date(value); return value.toString(normalize_format(l10n.date_format) + ' ' + normalize_format(l10n.time_format)); case 'date': if (typeof(value) == "string") value = instance.web.auto_str_to_date(value); return value.toString(normalize_format(l10n.date_format)); case 'time': if (typeof(value) == "string") value = instance.web.auto_str_to_date(value); return value.toString(normalize_format(l10n.time_format)); case 'selection': case 'statusbar': // Each choice is [value, label] if(_.isArray(value)) { value = value[0] } var result = _(descriptor.selection).detect(function (choice) { return choice[0] === value; }); if (result) { return result[1]; } return; default: return value; } }; instance.web.parse_value = function (value, descriptor, value_if_empty) { var date_pattern = normalize_format(_t.database.parameters.date_format), time_pattern = normalize_format(_t.database.parameters.time_format); switch (value) { case false: case "": return value_if_empty === undefined ? false : value_if_empty; } switch (descriptor.widget || descriptor.type || (descriptor.field && descriptor.field.type)) { case 'integer': var tmp; do { tmp = value; value = value.replace(instance.web._t.database.parameters.thousands_sep, ""); } while(tmp !== value); tmp = Number(value); if (isNaN(tmp)) throw new Error(value + " is not a correct integer"); return tmp; case 'float': var tmp = Number(value); if (!isNaN(tmp)) return tmp; var tmp2 = value; do { tmp = tmp2; tmp2 = tmp.replace(instance.web._t.database.parameters.thousands_sep, ""); } while(tmp !== tmp2); var reformatted_value = tmp.replace(instance.web._t.database.parameters.decimal_point, "."); var parsed = Number(reformatted_value); if (isNaN(parsed)) throw new Error(value + " is not a correct float"); return parsed; case 'float_time': var factor = 1; if (value[0] === '-') { value = value.slice(1); factor = -1; } var float_time_pair = value.split(":"); if (float_time_pair.length != 2) return factor * instance.web.parse_value(value, {type: "float"}); var hours = instance.web.parse_value(float_time_pair[0], {type: "integer"}); var minutes = instance.web.parse_value(float_time_pair[1], {type: "integer"}); return factor * (hours + (minutes / 60)); case 'progressbar': return instance.web.parse_value(value, {type: "float"}); case 'datetime': var datetime = Date.parseExact( value, (date_pattern + ' ' + time_pattern)); if (datetime !== null) return instance.web.datetime_to_str(datetime); datetime = Date.parse(value); if (datetime !== null) return instance.web.datetime_to_str(datetime); throw new Error(value + " is not a valid datetime"); case 'date': var date = Date.parseExact(value, date_pattern); if (date !== null) return instance.web.date_to_str(date); date = Date.parse(value); if (date !== null) return instance.web.date_to_str(date); throw new Error(value + " is not a valid date"); case 'time': var time = Date.parseExact(value, time_pattern); if (time !== null) return instance.web.time_to_str(time); time = Date.parse(value); if (time !== null) return instance.web.time_to_str(time); throw new Error(value + " is not a valid time"); } return value; }; instance.web.auto_str_to_date = function(value, type) { try { return instance.web.str_to_datetime(value); } catch(e) {} try { return instance.web.str_to_date(value); } catch(e) {} try { return instance.web.str_to_time(value); } catch(e) {} throw new Error("'" + value + "' is not a valid date, datetime nor time"); }; instance.web.auto_date_to_str = function(value, type) { switch(type) { case 'datetime': return instance.web.datetime_to_str(value); case 'date': return instance.web.date_to_str(value); case 'time': return instance.web.time_to_str(value); default: throw new Error(type + " is not convertible to date, datetime nor time"); } }; };