Inventory Stock Check Print

This commit is contained in:
Nweni
2017-08-31 15:29:36 +06:30
parent 65675a6683
commit 12c8be597d
6 changed files with 128 additions and 3 deletions

View File

@@ -71,4 +71,13 @@ $('#save_to_journal').on('click', function(){
}
})
})
$('#print').on('click',function(){
check_id = $('#stock_check_id').val();
$.ajax({
type: 'post',
url: '<%= inventory_print_stock_check_path %>',
data: 'stock_check_id='+ check_id
})
})
</script>