|
|
@@ -327,13 +327,15 @@
|
|
|
});
|
|
|
});
|
|
|
|
|
|
- $('#barcode_for_sale').codeScanner({
|
|
|
- maxEntryTime: 200, // milliseconds
|
|
|
- minEntryChars: 7, // characters
|
|
|
- onScan: function ($element, code) {
|
|
|
- findProductByBarcode(code);
|
|
|
- }
|
|
|
- });
|
|
|
+ if (window.location.pathname == "/sales/new") {
|
|
|
+ $('#sale_form #barcode_for_sale').codeScanner({
|
|
|
+ maxEntryTime: 200, // milliseconds
|
|
|
+ minEntryChars: 7, // characters
|
|
|
+ onScan: function ($element, code) {
|
|
|
+ findProductByBarcode(code);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
|
|
|
$('#sale_customer_id').on('change', function() {
|
|
|
// $(this).attr('disabled', true);
|