Default Cash register on expenses
Hi! How can i set a default Cash register when i enter a expense registry, and avoid to select from the list of cash register (Remove cash from drawer) Is there any option I can check for that? I don't see anything for that, or what can I do in the code?
Comments
2 comments
We don’t have this feature
We invite you to visit our feedback site where you can submit new feature requests and see other client’s desired requests. The site will also allow you to upvote existing feature requests and get alerts on those that you interact with.
This provides php point of sale with a clear roadmap of what customers want so we can continue to develop the most highly requested features.
The site is:
https://feedback.phppointofsale.com
Thank you for your feedback, i fixed temporary with this code in form.php (expenses)
document.body.onload = function(){
$('#cash_register_id').prop('selectedIndex', 1).change();
}
So with this, select the second option in my dropdownlist, later i will submit to the request site, thank you again ;)
Please sign in to leave a comment.