summaryrefslogtreecommitdiff
path: root/addons/sms/static/src/js/fields_phone_widget.js
diff options
context:
space:
mode:
Diffstat (limited to 'addons/sms/static/src/js/fields_phone_widget.js')
-rw-r--r--addons/sms/static/src/js/fields_phone_widget.js100
1 files changed, 100 insertions, 0 deletions
diff --git a/addons/sms/static/src/js/fields_phone_widget.js b/addons/sms/static/src/js/fields_phone_widget.js
new file mode 100644
index 00000000..82b8e5b3
--- /dev/null
+++ b/addons/sms/static/src/js/fields_phone_widget.js
@@ -0,0 +1,100 @@
+odoo.define('sms.fields', function (require) {
+"use strict";
+
+var basic_fields = require('web.basic_fields');
+var core = require('web.core');
+var session = require('web.session');
+
+var _t = core._t;
+
+/**
+ * Override of FieldPhone to add a button calling SMS composer if option activated (default)
+ */
+
+var Phone = basic_fields.FieldPhone;
+Phone.include({
+ /**
+ * By default, enable_sms is activated
+ *
+ * @override
+ */
+ init() {
+ this._super.apply(this, arguments);
+ this.enableSMS = 'enable_sms' in this.attrs.options ? this.attrs.options.enable_sms : true;
+ // reinject in nodeOptions (and thus in this.attrs) to signal the property
+ this.attrs.options.enable_sms = this.enableSMS;
+ },
+ /**
+ * When the send SMS button is displayed, $el becomes a div wrapping
+ * the original links.
+ * This method makes sure we always focus the phone number
+ *
+ * @override
+ */
+ getFocusableElement() {
+ if (this.enableSMS && this.mode === 'readonly') {
+ return this.$el.filter('.' + this.className);
+ }
+ return this._super.apply(this, arguments);
+ },
+ //--------------------------------------------------------------------------
+ // Private
+ //--------------------------------------------------------------------------
+
+ /**
+ * Open SMS composer wizard
+ *
+ * @private
+ */
+ _onClickSMS: function (ev) {
+ ev.preventDefault();
+ ev.stopPropagation();
+
+ var context = session.user_context;
+ context = _.extend({}, context, {
+ default_res_model: this.model,
+ default_res_id: parseInt(this.res_id),
+ default_number_field_name: this.name,
+ default_composition_mode: 'comment',
+ });
+ var self = this;
+ return this.do_action({
+ title: _t('Send SMS Text Message'),
+ type: 'ir.actions.act_window',
+ res_model: 'sms.composer',
+ target: 'new',
+ views: [[false, 'form']],
+ context: context,
+ }, {
+ on_close: function () {
+ self.trigger_up('reload');
+ }});
+ },
+
+ /**
+ * Add a button to call the composer wizard
+ *
+ * @override
+ * @private
+ */
+ _renderReadonly: function () {
+ var def = this._super.apply(this, arguments);
+ if (this.enableSMS && this.value) {
+ var $composerButton = $('<a>', {
+ title: _t('Send SMS Text Message'),
+ href: '',
+ class: 'ml-3 d-inline-flex align-items-center o_field_phone_sms',
+ html: $('<small>', {class: 'font-weight-bold ml-1', html: 'SMS'}),
+ });
+ $composerButton.prepend($('<i>', {class: 'fa fa-mobile'}));
+ $composerButton.on('click', this._onClickSMS.bind(this));
+ this.$el = this.$el.add($composerButton);
+ }
+
+ return def;
+ },
+});
+
+return Phone;
+
+});