Guest User

Untitled

a guest
Apr 20th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. function RecalculateProduct(product) {
  2. if ($(product).getStyle('display') == 'none') {
  3. // Ignore hidden (deleted) products
  4. } else {
  5. // Process active product rows
  6. var subtotalProduct = 5.00;
  7. var discountProduct = 6.00;
  8. var totalProduct = subtotalProduct - discountProduct;
  9. product.down('.orderChoicePrice input').setValue(totalProduct);
  10. }
  11. }
Add Comment
Please, Sign In to add comment