Jelajahi Sumber

Ajuste de validacion

deisy 5 tahun lalu
induk
melakukan
6b5a6ef142
1 mengubah file dengan 6 tambahan dan 16 penghapusan
  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;