浏览代码

Ajuste de validacion

deisy 5 年之前
父节点
当前提交
6b5a6ef142
共有 1 个文件被更改,包括 6 次插入16 次删除
  1. 6 16
      static/src/js/import_cost_calculation.js

+ 6 - 16
static/src/js/import_cost_calculation.js

@@ -19,27 +19,17 @@ openerp.import_cost_calculation = function(instance) {
     start: function () {
       var self = this;
       this.$el.click(function (e) {
-        var validation = self.checkValidation();
-        if (validation == true){
-          self.fecthInitial();
-        }else{
+        if(!self.record.id){
+          return alert("Antes de realizar el cálculo, guarde el documento!");
+        }
+        if(self.record.expenses.length == 0 || self.record.purchases.length == 0){
           alert("Necesita cargar al menos una factura de compra y otra de gasto para poder realizar el cálculo!");
+        }else{
+          self.fecthInitial();
         }
       });
     },
 
-    checkValidation: function(){
-      var self = this;
-      if(!self.record.id){
-        return alert("Antes de realizar el cálculo, guarde el documento!");
-      }
-      if(self.record.expenses.length == 0 || self.record.purchases.length == 0){
-        return false;
-      }else {
-        return true
-      }
-    },
-
     fecthInitial: function(){
       var self = this;