Advertisement
Guest User

Untitled

a guest
Oct 13th, 2015
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     this.saveVendorProduct = function() {
  2.        
  3.         if(!$scope.vendorProductData.product_name_id) {
  4.             this.saveProductName();
  5.         }
  6.         if(!$scope.vendorProductData.product_type_id) {
  7.             this.saveProductType();
  8.         }
  9.         if(!$scope.vendorProductData.product_category_id) {
  10.             this.saveProductCategory();
  11.         }
  12.        
  13.         if($scope.vendorProductData.product_name_id
  14.            && $scope.vendorProductData.product_type_id
  15.            && $scope.vendorProductData.product_category_id) {
  16.            
  17.             VendorProduct.saveVendorProduct($scope.vendorProductData, function(response) {
  18.                 if(response.status === 'success') {
  19.                     $state.go('products');
  20.                 } else {
  21.                     $scope.message = response.data.message;
  22.                 }
  23.             });
  24.            
  25.         }
  26.     };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement