Built motion from commit 2239aeb.|0.0.113
[motion.git] / server / models / history / report_call_history.js
index 4ad9d28..d1411b2 100644 (file)
@@ -1 +1,60 @@
-var _0x4917=["\x65\x78\x70\x6F\x72\x74\x73","\x52\x65\x70\x6F\x72\x74\x43\x61\x6C\x6C\x48\x69\x73\x74\x6F\x72\x79","\x53\x54\x52\x49\x4E\x47","\x45\x4E\x55\x4D","\x69\x6E\x62\x6F\x75\x6E\x64","\x69\x6E\x74\x65\x72\x6E\x61\x6C","\x6F\x75\x74\x62\x6F\x75\x6E\x64","\x44\x41\x54\x45","","\x61\x6E\x73\x77\x65\x72\x74\x69\x6D\x65","\x73\x65\x74\x44\x61\x74\x61\x56\x61\x6C\x75\x65","\x49\x4E\x54\x45\x47\x45\x52","\x72\x65\x70\x6F\x72\x74\x5F\x63\x61\x6C\x6C\x5F\x68\x69\x73\x74\x6F\x72\x79","\x48\x69\x73\x74\x6F\x72\x79\x51\x75\x65\x75\x65\x43\x61\x6C\x6C\x73","\x75\x6E\x69\x71\x75\x65\x69\x64","\x68\x61\x73\x4D\x61\x6E\x79","\x48\x69\x73\x74\x6F\x72\x79\x52\x65\x70\x6F\x72\x74\x41\x67\x65\x6E\x74\x73","\x64\x65\x66\x69\x6E\x65"];module[_0x4917[0]]=function(_0x3b12x1,_0x3b12x2){var _0x3b12x3=_0x3b12x1[_0x4917[17]](_0x4917[1],{uniqueid:{type:_0x3b12x2[_0x4917[2]],unique:true},type:{type:_0x3b12x2[_0x4917[3]],values:[_0x4917[4],_0x4917[5],_0x4917[6]]},tag:_0x3b12x2[_0x4917[2]],accountcode:_0x3b12x2[_0x4917[2]],source:_0x3b12x2[_0x4917[2]],destination:_0x3b12x2[_0x4917[2]],destinationcontext:_0x3b12x2[_0x4917[2]],callerid:_0x3b12x2[_0x4917[2]],channel:_0x3b12x2[_0x4917[2]],destinationchannel:_0x3b12x2[_0x4917[2]],lastapplication:_0x3b12x2[_0x4917[2]],lastdata:_0x3b12x2[_0x4917[2]],starttime:_0x3b12x2[_0x4917[7]],answertime:{type:_0x3b12x2[_0x4917[7]],set:function(_0x3b12x4){if(_0x3b12x4!==_0x4917[8]){this[_0x4917[10]](_0x4917[9],_0x3b12x4)}else {this[_0x4917[10]](_0x4917[9],null)}}},endtime:_0x3b12x2[_0x4917[7]],duration:_0x3b12x2[_0x4917[11]],billableseconds:_0x3b12x2[_0x4917[11]],disposition:_0x3b12x2[_0x4917[2]],amaflags:_0x3b12x2[_0x4917[2]],userfield:_0x3b12x2[_0x4917[2]]},{tableName:_0x4917[12],associate:function(_0x3b12x5){_0x3b12x3[_0x4917[15]](_0x3b12x5.ReportQueueHistory,{as:_0x4917[13],foreignKey:_0x4917[14],constraints:false});_0x3b12x3[_0x4917[15]](_0x3b12x5.ReportAgentHistory,{as:_0x4917[16],foreignKey:_0x4917[14],constraints:false})}});return _0x3b12x3}
\ No newline at end of file
+/**
+ * CDR Model
+ */
+
+module.exports = function(sequelize, DataTypes) {
+
+  var ReportCallHistory = sequelize.define('ReportCallHistory', {
+    uniqueid: {
+      type: DataTypes.STRING,
+      unique: true
+    },
+    type: {
+      type: DataTypes.ENUM,
+      values: ['inbound', 'internal', 'outbound', 'inbound-fax', 'outbound-fax', 'tigerdial']
+    },
+    tag: DataTypes.STRING,
+    accountcode: DataTypes.STRING,
+    source: DataTypes.STRING,
+    destination: DataTypes.STRING,
+    destinationcontext: DataTypes.STRING,
+    callerid: DataTypes.STRING,
+    channel: DataTypes.STRING,
+    destinationchannel: DataTypes.STRING,
+    lastapplication: DataTypes.STRING,
+    lastdata: DataTypes.STRING,
+    starttime: DataTypes.DATE,
+    answertime: {
+      type: DataTypes.DATE,
+      set: function(answertime) {
+        if (answertime !== '') {
+          this.setDataValue('answertime', answertime);
+        } else {
+          this.setDataValue('answertime', null);
+        }
+      }
+    },
+    endtime: DataTypes.DATE,
+    duration: DataTypes.INTEGER,
+    billableseconds: DataTypes.INTEGER,
+    disposition: DataTypes.STRING,
+    amaflags: DataTypes.STRING,
+    userfield: DataTypes.STRING
+  }, {
+    tableName: 'report_call_history',
+    associate: function(models) {
+      // ReportCallHistory.hasMany(models.ReportQueueHistory, {
+      //   as: 'HistoryQueueCalls',
+      //   foreignKey: 'uniqueid',
+      //   constraints: false
+      // });
+      // ReportCallHistory.hasMany(models.ReportAgentHistory, {
+      //   as: 'HistoryReportAgents',
+      //   foreignKey: 'uniqueid',
+      //   constraints: false
+      // });
+    }
+  });
+  ReportCallHistory.removeAttribute('id');
+  return ReportCallHistory;
+};