Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. currentProjectId: function (newCurrentProjectId, oldCurrentProjectId) {
  2.     if (this.showLoader == false && oldCurrentProjectId && newCurrentProjectId != oldCurrentProjectId) {
  3.         this.showLoader = true;
  4.         this.GetCurrentBasket();
  5.     }
  6. },
  7. currentStoreName: function (newCurrentStoreName, oldCurrentStoreName) {
  8.     if (this.showLoader == false && oldCurrentStoreName && newCurrentStoreName != oldCurrentStoreName) {
  9.         this.showLoader = true;
  10.         this.GetCurrentBasket();
  11.     }
  12. },
  13. currentCustomerNumber: function (newCurrentCustomerNumber, oldCurrentCustomerNumber) {
  14.     if (this.showLoader == false && oldCurrentCustomerNumber && newCurrentCustomerNumber != oldCurrentCustomerNumber) {
  15.         this.showLoader = true;
  16.         this.GetCurrentBasket();
  17.     }
  18. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement