zentaomax.ui.js 481 B

12345678910
  1. window.onModuleChangedForBatch = function(event)
  2. {
  3. const $target = $(event.target);
  4. const $currentRow = $target.closest('tr');
  5. const moduleID = $target.val();
  6. const productID = $currentRow.find('.form-batch-control[data-name="product"]').length ? $currentRow.find('.form-batch-control[data-name="product"] input').val() : productID;
  7. loadScenesForBatch(productID, moduleID, $currentRow);
  8. loadStoriesForBatch(productID, moduleID, 0, $currentRow);
  9. }