odoo-addon-stock-barcodes 16.0.1.1.0.8__py3-none-any.whl → 16.0.2.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (80) hide show
  1. odoo/addons/stock_barcodes/README.rst +217 -12
  2. odoo/addons/stock_barcodes/__init__.py +1 -0
  3. odoo/addons/stock_barcodes/__manifest__.py +8 -3
  4. odoo/addons/stock_barcodes/data/stock_barcodes_action.xml +8 -0
  5. odoo/addons/stock_barcodes/data/stock_barcodes_option.xml +99 -1
  6. odoo/addons/stock_barcodes/i18n/stock_barcodes.pot +268 -79
  7. odoo/addons/stock_barcodes/i18n/tr.po +326 -276
  8. odoo/addons/stock_barcodes/models/__init__.py +1 -0
  9. odoo/addons/stock_barcodes/models/barcode_events_mixin.py +11 -0
  10. odoo/addons/stock_barcodes/models/stock_barcodes_action.py +137 -3
  11. odoo/addons/stock_barcodes/models/stock_picking.py +17 -2
  12. odoo/addons/stock_barcodes/models/stock_picking_type.py +35 -0
  13. odoo/addons/stock_barcodes/models/stock_quant.py +51 -1
  14. odoo/addons/stock_barcodes/readme/CONTRIBUTORS.rst +4 -0
  15. odoo/addons/stock_barcodes/readme/DESCRIPTION.rst +4 -0
  16. odoo/addons/stock_barcodes/readme/HISTORY.rst +12 -0
  17. odoo/addons/stock_barcodes/readme/USAGE.rst +191 -10
  18. odoo/addons/stock_barcodes/reports/__init__.py +1 -0
  19. odoo/addons/stock_barcodes/reports/barcode_actions_report.py +16 -0
  20. odoo/addons/stock_barcodes/reports/barcode_actions_report.xml +25 -0
  21. odoo/addons/stock_barcodes/reports/reports.xml +28 -0
  22. odoo/addons/stock_barcodes/static/description/index.html +189 -33
  23. odoo/addons/stock_barcodes/static/src/docs/barcodes_actions.pdf +0 -0
  24. odoo/addons/stock_barcodes/static/src/docs/barcodes_demo.pdf +0 -0
  25. odoo/addons/stock_barcodes/static/src/img/add_product.png +0 -0
  26. odoo/addons/stock_barcodes/static/src/img/apply_inventory.png +0 -0
  27. odoo/addons/stock_barcodes/static/src/img/apply_inventory_reason.png +0 -0
  28. odoo/addons/stock_barcodes/static/src/img/barcode_interface_picking.png +0 -0
  29. odoo/addons/stock_barcodes/static/src/img/confirm_all_quantity_items_picking.png +0 -0
  30. odoo/addons/stock_barcodes/static/src/img/confirm_items_picking.png +0 -0
  31. odoo/addons/stock_barcodes/static/src/img/create_barcode_action.png +0 -0
  32. odoo/addons/stock_barcodes/static/src/img/form_add_product.png +0 -0
  33. odoo/addons/stock_barcodes/static/src/img/form_add_product_quantity.png +0 -0
  34. odoo/addons/stock_barcodes/static/src/img/form_add_product_reset.png +0 -0
  35. odoo/addons/stock_barcodes/static/src/img/inventory_barcode_action.png +0 -0
  36. odoo/addons/stock_barcodes/static/src/img/list_action_items.png +0 -0
  37. odoo/addons/stock_barcodes/static/src/img/list_items.png +0 -0
  38. odoo/addons/stock_barcodes/static/src/img/list_items_picking.png +0 -0
  39. odoo/addons/stock_barcodes/static/src/img/list_items_picking_edit.png +0 -0
  40. odoo/addons/stock_barcodes/static/src/img/list_items_picking_quantity.png +0 -0
  41. odoo/addons/stock_barcodes/static/src/img/list_items_picking_scanned.png +0 -0
  42. odoo/addons/stock_barcodes/static/src/img/list_picking.png +0 -0
  43. odoo/addons/stock_barcodes/static/src/img/print_barcodes.png +0 -0
  44. odoo/addons/stock_barcodes/static/src/scss/barcode.scss +135 -0
  45. odoo/addons/stock_barcodes/static/src/scss/stock.scss +285 -0
  46. odoo/addons/stock_barcodes/static/src/utils/barcodes_models_utils.esm.js +1 -0
  47. odoo/addons/stock_barcodes/static/src/views/actions/stock_barcode_main_menu.esm.js +88 -0
  48. odoo/addons/stock_barcodes/static/src/views/actions/stock_barcode_main_menu.scss +74 -0
  49. odoo/addons/stock_barcodes/static/src/views/actions/stock_barcode_main_menu.xml +45 -0
  50. odoo/addons/stock_barcodes/static/src/views/form/form_controller.esm.js +71 -0
  51. odoo/addons/stock_barcodes/static/src/views/form/form_view.esm.js +14 -0
  52. odoo/addons/stock_barcodes/static/src/views/kanban/kanban_record.esm.js +27 -0
  53. odoo/addons/stock_barcodes/static/src/views/{kanban_renderer.esm.js → kanban/kanban_renderer.esm.js} +78 -27
  54. odoo/addons/stock_barcodes/static/src/views/kanban/kanban_view.esm.js +8 -0
  55. odoo/addons/stock_barcodes/static/src/views/kanban/stock_barcodes_kanban.xml +28 -0
  56. odoo/addons/stock_barcodes/static/src/views/views.esm.js +35 -7
  57. odoo/addons/stock_barcodes/static/src/widgets/boolean_toggle.esm.js +46 -0
  58. odoo/addons/stock_barcodes/tests/common.py +25 -0
  59. odoo/addons/stock_barcodes/tests/test_stock_barcodes.py +65 -1
  60. odoo/addons/stock_barcodes/tests/test_stock_barcodes_picking.py +97 -13
  61. odoo/addons/stock_barcodes/views/stock_barcodes_action_view.xml +83 -9
  62. odoo/addons/stock_barcodes/views/stock_barcodes_menu.xml +1 -1
  63. odoo/addons/stock_barcodes/views/stock_picking_views.xml +29 -10
  64. odoo/addons/stock_barcodes/wizard/__init__.py +1 -0
  65. odoo/addons/stock_barcodes/wizard/stock_barcodes_candidate_picking.py +148 -0
  66. odoo/addons/stock_barcodes/wizard/stock_barcodes_read.py +148 -55
  67. odoo/addons/stock_barcodes/wizard/stock_barcodes_read_inventory.py +30 -2
  68. odoo/addons/stock_barcodes/wizard/stock_barcodes_read_inventory_views.xml +101 -92
  69. odoo/addons/stock_barcodes/wizard/stock_barcodes_read_picking.py +77 -141
  70. odoo/addons/stock_barcodes/wizard/stock_barcodes_read_picking_views.xml +197 -219
  71. odoo/addons/stock_barcodes/wizard/stock_barcodes_read_todo.py +45 -0
  72. odoo/addons/stock_barcodes/wizard/stock_barcodes_read_views.xml +87 -170
  73. odoo_addon_stock_barcodes-16.0.2.0.0.dist-info/METADATA +435 -0
  74. odoo_addon_stock_barcodes-16.0.2.0.0.dist-info/RECORD +103 -0
  75. odoo/addons/stock_barcodes/static/src/css/stock.scss +0 -136
  76. odoo/addons/stock_barcodes/static/src/views/form_view.esm.js +0 -17
  77. odoo_addon_stock_barcodes-16.0.1.1.0.8.dist-info/METADATA +0 -230
  78. odoo_addon_stock_barcodes-16.0.1.1.0.8.dist-info/RECORD +0 -68
  79. {odoo_addon_stock_barcodes-16.0.1.1.0.8.dist-info → odoo_addon_stock_barcodes-16.0.2.0.0.dist-info}/WHEEL +0 -0
  80. {odoo_addon_stock_barcodes-16.0.1.1.0.8.dist-info → odoo_addon_stock_barcodes-16.0.2.0.0.dist-info}/top_level.txt +0 -0
@@ -3,7 +3,7 @@
3
3
  <head>
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5
5
  <meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
6
- <title>Stock Barcodes</title>
6
+ <title>README.rst</title>
7
7
  <style type="text/css">
8
8
 
9
9
  /*
@@ -360,21 +360,27 @@ ul.auto-toc {
360
360
  </style>
361
361
  </head>
362
362
  <body>
363
- <div class="document" id="stock-barcodes">
364
- <h1 class="title">Stock Barcodes</h1>
363
+ <div class="document">
365
364
 
365
+
366
+ <a class="reference external image-reference" href="https://odoo-community.org/get-involved?utm_source=readme">
367
+ <img alt="Odoo Community Association" src="https://odoo-community.org/readme-banner-image" />
368
+ </a>
369
+ <div class="section" id="stock-barcodes">
370
+ <h1>Stock Barcodes</h1>
366
371
  <!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
367
372
  !! This file is generated by oca-gen-addon-readme !!
368
373
  !! changes will be overwritten. !!
369
374
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
370
- !! source digest: sha256:57d26158322c09cb66f30397e6644567bf9240ecc415f7fd48ec7bc6e6406ec9
375
+ !! source digest: sha256:e429e57aae9e2b85719c0aa8e1e85f19c26d6494f62b7ef84905992e263b043e
371
376
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
372
- <p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/stock-logistics-barcode/tree/16.0/stock_barcodes"><img alt="OCA/stock-logistics-barcode" src="https://img.shields.io/badge/github-OCA%2Fstock--logistics--barcode-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/stock-logistics-barcode-16-0/stock-logistics-barcode-16-0-stock_barcodes"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/stock-logistics-barcode&amp;target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
377
+ <p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/license-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/stock-logistics-barcode/tree/16.0/stock_barcodes"><img alt="OCA/stock-logistics-barcode" src="https://img.shields.io/badge/github-OCA%2Fstock--logistics--barcode-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/stock-logistics-barcode-16-0/stock-logistics-barcode-16-0-stock_barcodes"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/stock-logistics-barcode&amp;target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
373
378
  <p>This module provides a barcode reader interface for stock module.</p>
374
379
  <p>This module contains a base wizard read barcode that can be extended by
375
380
  other modules.</p>
376
381
  <p>This module also makes use of this wizard for providing barcode support for
377
382
  doing inventories and picking operations.</p>
383
+ <p>This module provides configuring barcodes for barcode actions.</p>
378
384
  <p><strong>Table of contents</strong></p>
379
385
  <div class="contents local topic" id="contents">
380
386
  <ul class="simple">
@@ -384,29 +390,32 @@ doing inventories and picking operations.</p>
384
390
  <li><a class="reference internal" href="#automatic-operation-mode" id="toc-entry-4">Automatic operation mode</a></li>
385
391
  <li><a class="reference internal" href="#manual-entry-mode" id="toc-entry-5">Manual entry mode</a></li>
386
392
  <li><a class="reference internal" href="#scan-logs" id="toc-entry-6">Scan logs</a></li>
393
+ <li><a class="reference internal" href="#barcode-interface-for-barcode-actions" id="toc-entry-7">Barcode interface for barcode actions</a></li>
387
394
  </ul>
388
395
  </li>
389
- <li><a class="reference internal" href="#known-issues-roadmap" id="toc-entry-7">Known issues / Roadmap</a></li>
390
- <li><a class="reference internal" href="#changelog" id="toc-entry-8">Changelog</a><ul>
391
- <li><a class="reference internal" href="#section-1" id="toc-entry-9">11.0.1.1.0 (2019-09-24)</a></li>
392
- <li><a class="reference internal" href="#section-2" id="toc-entry-10">13.0.1.1.1 (2021-02-06)</a></li>
393
- <li><a class="reference internal" href="#section-3" id="toc-entry-11">14.0.1.0.0 (2021-04-05)</a></li>
396
+ <li><a class="reference internal" href="#known-issues-roadmap" id="toc-entry-8">Known issues / Roadmap</a></li>
397
+ <li><a class="reference internal" href="#changelog" id="toc-entry-9">Changelog</a><ul>
398
+ <li><a class="reference internal" href="#section-1" id="toc-entry-10">11.0.1.1.0 (2019-09-24)</a></li>
399
+ <li><a class="reference internal" href="#section-2" id="toc-entry-11">13.0.1.1.1 (2021-02-06)</a></li>
400
+ <li><a class="reference internal" href="#section-3" id="toc-entry-12">14.0.1.0.0 (2021-04-05)</a></li>
401
+ <li><a class="reference internal" href="#section-4" id="toc-entry-13">16.0.1.0.0 (2025-01-23)</a></li>
394
402
  </ul>
395
403
  </li>
396
- <li><a class="reference internal" href="#bug-tracker" id="toc-entry-12">Bug Tracker</a></li>
397
- <li><a class="reference internal" href="#credits" id="toc-entry-13">Credits</a><ul>
398
- <li><a class="reference internal" href="#authors" id="toc-entry-14">Authors</a></li>
399
- <li><a class="reference internal" href="#contributors" id="toc-entry-15">Contributors</a></li>
400
- <li><a class="reference internal" href="#maintainers" id="toc-entry-16">Maintainers</a></li>
404
+ <li><a class="reference internal" href="#bug-tracker" id="toc-entry-14">Bug Tracker</a></li>
405
+ <li><a class="reference internal" href="#credits" id="toc-entry-15">Credits</a><ul>
406
+ <li><a class="reference internal" href="#authors" id="toc-entry-16">Authors</a></li>
407
+ <li><a class="reference internal" href="#contributors" id="toc-entry-17">Contributors</a></li>
408
+ <li><a class="reference internal" href="#maintainers" id="toc-entry-18">Maintainers</a></li>
401
409
  </ul>
402
410
  </li>
403
411
  </ul>
404
412
  </div>
405
413
  <div class="section" id="usage">
406
- <h1><a class="toc-backref" href="#toc-entry-1">Usage</a></h1>
414
+ <h2><a class="toc-backref" href="#toc-entry-1">Usage</a></h2>
407
415
  <div class="section" id="barcode-interface-for-inventory-operations">
408
- <h2><a class="toc-backref" href="#toc-entry-2">Barcode interface for inventory operations</a></h2>
409
- <p>To use the barcode interface on inventory:</p>
416
+ <h3><a class="toc-backref" href="#toc-entry-2">Barcode interface for inventory operations</a></h3>
417
+ <p>Option 1: To use the barcode interface on inventory</p>
418
+ <blockquote>
410
419
  <ol class="arabic simple">
411
420
  <li>Go to <em>Inventory &gt; operations &gt; Inventory Adjustments</em>.</li>
412
421
  <li>Create new inventory with “Select products manually” option.</li>
@@ -414,9 +423,53 @@ doing inventories and picking operations.</p>
414
423
  <li>Click to “Scan barcodes” smart button.</li>
415
424
  <li>Start reading barcodes.</li>
416
425
  </ol>
426
+ </blockquote>
427
+ <dl class="docutils">
428
+ <dt>Option 2: Use the barcode interface inventory directly from the Barcodes application</dt>
429
+ <dd><ol class="first arabic simple">
430
+ <li>Go to <em>Barcodes</em>.</li>
431
+ <li>Select the <em>Inventory</em> option.</li>
432
+ </ol>
433
+ <blockquote>
434
+ <img alt="Inventory barcode action" src="https://raw.githubusercontent.com/stock_barcodes/static/src/img/inventory_barcode_action.png" style="width: 200px; height: 100px;" />
435
+ </blockquote>
436
+ <ol class="last arabic simple">
437
+ <li>Start scanning barcodes.</li>
438
+ </ol>
439
+ </dd>
440
+ <dt>Actions</dt>
441
+ <dd><p class="first"># Press the <em>+ Product</em> button to display the form for the new item.</p>
442
+ <blockquote>
443
+ <img alt="Add product" src="https://raw.githubusercontent.com/stock_barcodes/static/src/img/add_product.png" style="width: 200px; height: 100px;" />
444
+ </blockquote>
445
+ <p># When you select a product, a numeric field is displayed to add the quantity.</p>
446
+ <blockquote>
447
+ <img alt="Add quantity product" src="https://raw.githubusercontent.com/stock_barcodes/static/src/img/form_add_product_quantity.png" style="width: 200px; height: 100px;" />
448
+ </blockquote>
449
+ <p># When you press the button with the trash can icon, the values of the form are reset (except for the location) without closing it.</p>
450
+ <blockquote>
451
+ <img alt="Reset data form" src="https://raw.githubusercontent.com/stock_barcodes/static/src/img/form_add_product_reset.png" style="width: 200px; height: 100px;" />
452
+ </blockquote>
453
+ <p># When you press the <em>Clean values</em> button, all fields are reset and the form is closed.
454
+ # When you press the <em>Confirm</em> button, the new item is added and the form is closed.
455
+ # When the eye icon is closed, the created items greater than zero are displayed, and if not, those less than or equal to zero.</p>
456
+ <blockquote>
457
+ <img alt="Reset data form" src="https://raw.githubusercontent.com/stock_barcodes/static/src/img/list_items.png" style="width: 200px; height: 100px;" />
458
+ </blockquote>
459
+ <p># In the list, the trash can icon allows you to reset the quantity to zero and the edit icon allows you to change the item values.</p>
460
+ <blockquote>
461
+ <img alt="Reset data form" src="https://raw.githubusercontent.com/stock_barcodes/static/src/img/list_action_items.png" style="width: 200px; height: 100px;" />
462
+ </blockquote>
463
+ <p># The <em>Apply</em> button is only displayed if there are items with quantities greater than zero, regardless of whether they were scanned or entered manually; If you press all the defined quantities will be processed after defining the reason for the inventory adjustment and then the main barcode menu will be displayed.</p>
464
+ <blockquote class="last">
465
+ <img alt="Apply inventory" src="https://raw.githubusercontent.com/stock_barcodes/static/src/img/apply_inventory.png" style="width: 200px; height: 100px;" />
466
+ <img alt="Apply inventory reason" src="https://raw.githubusercontent.com/stock_barcodes/static/src/img/apply_inventory_reason.png" style="width: 200px; height: 100px;" />
467
+ </blockquote>
468
+ </dd>
469
+ </dl>
417
470
  </div>
418
471
  <div class="section" id="barcode-interface-for-picking-operations">
419
- <h2><a class="toc-backref" href="#toc-entry-3">Barcode interface for picking operations</a></h2>
472
+ <h3><a class="toc-backref" href="#toc-entry-3">Barcode interface for picking operations</a></h3>
420
473
  <p>You can use the barcode interface in a picking or an operation type, the main
421
474
  difference is that if you open the barcode interface from a picking, this
422
475
  picking is locked and you read products for it.</p>
@@ -426,12 +479,81 @@ picking is locked and you read products for it.</p>
426
479
  <li>Click on scanner button on any operation type.</li>
427
480
  <li>Start reading barcodes.</li>
428
481
  </ol>
429
- <p>To use the barcode interface on a picking:</p>
482
+ <p>Option 1: To use the barcode interface on a picking:</p>
483
+ <blockquote>
430
484
  <ol class="arabic simple">
431
485
  <li>Go to <em>Inventory &gt; Transfers</em>.</li>
432
486
  <li>Click to “Scan barcodes” smart button.</li>
433
487
  <li>Start reading barcodes.</li>
434
488
  </ol>
489
+ </blockquote>
490
+ <dl class="docutils">
491
+ <dt>Option 2: Use the barcode interface picking directly from the Barcodes application</dt>
492
+ <dd><ol class="first arabic simple">
493
+ <li>Go to <em>Barcodes</em>.</li>
494
+ <li>Select the option <em>OPERATIONS</em>.</li>
495
+ </ol>
496
+ <blockquote>
497
+ <img alt="Operation barcode action" src="https://raw.githubusercontent.com/stock_barcodes/static/src/img/inventory_barcode_action.png" style="width: 200px; height: 100px;" />
498
+ </blockquote>
499
+ <p># Select the type of picking.
500
+ # The pickings in ready status are displayed, select the one you want to start scanning.</p>
501
+ <blockquote>
502
+ <img alt="List picking" src="https://raw.githubusercontent.com/stock_barcodes/static/src/img/list_picking.png" style="width: 200px; height: 100px;" />
503
+ </blockquote>
504
+ <ol class="arabic simple">
505
+ <li>Start scanning barcodes.</li>
506
+ </ol>
507
+ <blockquote class="last">
508
+ <img alt="List picking" src="https://raw.githubusercontent.com/stock_barcodes/static/src/img/barcode_interface_picking.png" style="width: 200px; height: 100px;" />
509
+ </blockquote>
510
+ </dd>
511
+ <dt>Actions</dt>
512
+ <dd><p class="first"># All the items that have been configured for the selected picking are listed.</p>
513
+ <blockquote>
514
+ <img alt="List picking" src="https://raw.githubusercontent.com/stock_barcodes/static/src/img/list_items_picking.png" style="width: 200px; height: 100px;" />
515
+ </blockquote>
516
+ <p># The edit icon in the list allows you to modify the data.</p>
517
+ <blockquote>
518
+ <img alt="Edit picking" src="https://raw.githubusercontent.com/stock_barcodes/static/src/img/list_items_picking_edit.png" style="width: 200px; height: 100px;" />
519
+ </blockquote>
520
+ <dl class="docutils">
521
+ <dt># The button that contains a <em>+120</em> (in this case), allows you to define all the</dt>
522
+ <dd><p class="first">remaining quantities. Once defined, this button disappears and if you want to change the
523
+ quantities, press the edit button.</p>
524
+ <img alt="Quantity picking" class="last" src="https://raw.githubusercontent.com/stock_barcodes/static/src/img/list_items_picking_quantity.png" style="width: 200px; height: 100px;" />
525
+ </dd>
526
+ <dt># If there is at least one item with a quantity already defined, an eye icon is displayed,</dt>
527
+ <dd><p class="first">which if closed shows the items and their quantities already scanned.</p>
528
+ <img alt="Picking scanned" class="last" src="https://raw.githubusercontent.com/stock_barcodes/static/src/img/list_items_picking_scanned.png" style="width: 200px; height: 100px;" />
529
+ </dd>
530
+ <dt># When you press the <em>Validate</em> button, a wizard will be displayed to confirm the action.</dt>
531
+ <dd><p class="first">If everything is correct, it is validated and you return to the picking list mentioned above.</p>
532
+ <img alt="Picking scanned" class="last" src="https://raw.githubusercontent.com/stock_barcodes/static/src/img/confirm_items_picking.png" style="width: 200px; height: 100px;" />
533
+ </dd>
534
+ <dt># If there is an item whose quantity is zero, a wizard will be displayed after the one mentioned</dt>
535
+ <dd><p class="first">above, to confirm if you want to process all the quantities. If positive, you will proceed
536
+ and be directed to the list mentioned above in the previous point.</p>
537
+ <img alt="Picking scanned" class="last" src="https://raw.githubusercontent.com/stock_barcodes/static/src/img/confirm_all_quantity_items_picking.png" style="width: 200px; height: 100px;" />
538
+ </dd>
539
+ </dl>
540
+ <p># Press the <em>+ Product</em> button to display the form for the new item.</p>
541
+ <blockquote>
542
+ <img alt="Add product" src="https://raw.githubusercontent.com/stock_barcodes/static/src/img/add_product.png" style="width: 200px; height: 100px;" />
543
+ </blockquote>
544
+ <p># When you select a product, a numeric field is displayed to add the quantity.</p>
545
+ <blockquote>
546
+ <img alt="Add quantity product" src="https://raw.githubusercontent.com/stock_barcodes/static/src/img/form_add_product_quantity.png" style="width: 200px; height: 100px;" />
547
+ </blockquote>
548
+ <p># When you press the button with the trash can icon, the values of the form are reset (except for the location) without closing it.</p>
549
+ <blockquote>
550
+ <img alt="Reset data form" src="https://raw.githubusercontent.com/stock_barcodes/static/src/img/form_add_product_reset.png" style="width: 200px; height: 100px;" />
551
+ </blockquote>
552
+ <p class="last"># When you press the <em>Clean values</em> button, all fields are reset and the form is closed.
553
+ # When you press the <em>Confirm</em> button, the new item is added and the form is closed.
554
+ # When adding the new item all the quantities are assigned to it, if you want to modify it, press the edit icon.</p>
555
+ </dd>
556
+ </dl>
435
557
  <p>The barcode scanner interface has two operation modes. In both of them user
436
558
  can scan:</p>
437
559
  <ol class="arabic simple">
@@ -442,7 +564,7 @@ can scan:</p>
442
564
  </ol>
443
565
  </div>
444
566
  <div class="section" id="automatic-operation-mode">
445
- <h2><a class="toc-backref" href="#toc-entry-4">Automatic operation mode</a></h2>
567
+ <h3><a class="toc-backref" href="#toc-entry-4">Automatic operation mode</a></h3>
446
568
  <p>This is the default mode, all screen controls are locked to avoid scan into
447
569
  fields.</p>
448
570
  <p>The user only has to scan barcode in physical warehouse locations with a
@@ -466,22 +588,39 @@ action will be done with this warehouse location.</li>
466
588
  scanning the product.</p>
467
589
  </div>
468
590
  <div class="section" id="manual-entry-mode">
469
- <h2><a class="toc-backref" href="#toc-entry-5">Manual entry mode</a></h2>
591
+ <h3><a class="toc-backref" href="#toc-entry-5">Manual entry mode</a></h3>
470
592
  <p>You can change to “manual entry” to allow to select data without scanner
471
593
  hardware, but hardward scanner still active on, so a use case would be when
472
594
  user wants set quantities manually instead increment 1.0 unit peer scan action.</p>
473
595
  </div>
474
596
  <div class="section" id="scan-logs">
475
- <h2><a class="toc-backref" href="#toc-entry-6">Scan logs</a></h2>
597
+ <h3><a class="toc-backref" href="#toc-entry-6">Scan logs</a></h3>
476
598
  <p>All scanned barcodes are saved into model.
477
599
  Barcode scanning interface display 10 last records linked to model, the goal of
478
600
  this log is show to user other reads with the same product and location done
479
601
  by other users.
480
602
  User can remove the last read scan.</p>
481
603
  </div>
604
+ <div class="section" id="barcode-interface-for-barcode-actions">
605
+ <h3><a class="toc-backref" href="#toc-entry-7">Barcode interface for barcode actions</a></h3>
606
+ <p>To use the barcode interface for actions:</p>
607
+ <ol class="arabic simple">
608
+ <li>Go to <em>Inventory &gt; Configuration &gt; Barcode Actions</em>.</li>
609
+ <li>Create a new barcode action and configure the barcode.</li>
610
+ </ol>
611
+ <img alt="Print barcodes" src="https://raw.githubusercontent.com/stock_barcodes/static/src/img/create_barcode_action.png" style="width: 200px; height: 100px;" />
612
+ <ol class="arabic simple">
613
+ <li>Select the barcode actions you want to use, a button (PRINT BARCODES) will appear that allows you to print the configured barcodes to PDF.</li>
614
+ </ol>
615
+ <img alt="Print barcodes" src="https://raw.githubusercontent.com/stock_barcodes/static/src/img/print_barcodes.png" style="width: 200px; height: 100px;" />
616
+ <ol class="arabic simple">
617
+ <li>Go to <em>Barcodes</em>.</li>
618
+ <li>Start scanning barcodes from actions.</li>
619
+ </ol>
620
+ </div>
482
621
  </div>
483
622
  <div class="section" id="known-issues-roadmap">
484
- <h1><a class="toc-backref" href="#toc-entry-7">Known issues / Roadmap</a></h1>
623
+ <h2><a class="toc-backref" href="#toc-entry-8">Known issues / Roadmap</a></h2>
485
624
  <ul class="simple">
486
625
  <li>Excute action_done() method outside onchange environment.</li>
487
626
  <li>Allow create product when a barcode has not been found.</li>
@@ -490,31 +629,43 @@ User can remove the last read scan.</p>
490
629
  </ul>
491
630
  </div>
492
631
  <div class="section" id="changelog">
493
- <h1><a class="toc-backref" href="#toc-entry-8">Changelog</a></h1>
632
+ <h2><a class="toc-backref" href="#toc-entry-9">Changelog</a></h2>
494
633
  <div class="section" id="section-1">
495
- <h2><a class="toc-backref" href="#toc-entry-9">11.0.1.1.0 (2019-09-24)</a></h2>
634
+ <h3><a class="toc-backref" href="#toc-entry-10">11.0.1.1.0 (2019-09-24)</a></h3>
496
635
  <ul class="simple">
497
636
  <li>[ADD] New feature.
498
637
  User can uses barcode interface in picking operations.</li>
499
638
  </ul>
500
639
  </div>
501
640
  <div class="section" id="section-2">
502
- <h2><a class="toc-backref" href="#toc-entry-10">13.0.1.1.1 (2021-02-06)</a></h2>
641
+ <h3><a class="toc-backref" href="#toc-entry-11">13.0.1.1.1 (2021-02-06)</a></h3>
503
642
  <ul class="simple">
504
643
  <li>[ADD] New feature.
505
644
  Add option to get lots automatically based on removal strategy in inventory.</li>
506
645
  </ul>
507
646
  </div>
508
647
  <div class="section" id="section-3">
509
- <h2><a class="toc-backref" href="#toc-entry-11">14.0.1.0.0 (2021-04-05)</a></h2>
648
+ <h3><a class="toc-backref" href="#toc-entry-12">14.0.1.0.0 (2021-04-05)</a></h3>
510
649
  <ul class="simple">
511
650
  <li>[ADD] New feature.
512
651
  Add security for users.</li>
513
652
  </ul>
514
653
  </div>
654
+ <div class="section" id="section-4">
655
+ <h3><a class="toc-backref" href="#toc-entry-13">16.0.1.0.0 (2025-01-23)</a></h3>
656
+ <ul class="simple">
657
+ <li>[IMP]
658
+ Improved views to optimize navigation and functionality.
659
+ Intuitive and mobile-friendly views.
660
+ Visual improvement of the main view accessed from the Barcodes menu.</li>
661
+ <li>[ADD] New feature.
662
+ Barcode reading to barcode actions.
663
+ Generate PDF document for the barcodes of the selected barcode actions.</li>
664
+ </ul>
665
+ </div>
515
666
  </div>
516
667
  <div class="section" id="bug-tracker">
517
- <h1><a class="toc-backref" href="#toc-entry-12">Bug Tracker</a></h1>
668
+ <h2><a class="toc-backref" href="#toc-entry-14">Bug Tracker</a></h2>
518
669
  <p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/stock-logistics-barcode/issues">GitHub Issues</a>.
519
670
  In case of trouble, please check there if your issue has already been reported.
520
671
  If you spotted it first, help us to smash it by providing a detailed and welcomed
@@ -522,15 +673,15 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
522
673
  <p>Do not contact contributors directly about support or help with technical issues.</p>
523
674
  </div>
524
675
  <div class="section" id="credits">
525
- <h1><a class="toc-backref" href="#toc-entry-13">Credits</a></h1>
676
+ <h2><a class="toc-backref" href="#toc-entry-15">Credits</a></h2>
526
677
  <div class="section" id="authors">
527
- <h2><a class="toc-backref" href="#toc-entry-14">Authors</a></h2>
678
+ <h3><a class="toc-backref" href="#toc-entry-16">Authors</a></h3>
528
679
  <ul class="simple">
529
680
  <li>Tecnativa</li>
530
681
  </ul>
531
682
  </div>
532
683
  <div class="section" id="contributors">
533
- <h2><a class="toc-backref" href="#toc-entry-15">Contributors</a></h2>
684
+ <h3><a class="toc-backref" href="#toc-entry-17">Contributors</a></h3>
534
685
  <ul class="simple">
535
686
  <li><a class="reference external" href="https://www.tecnativa.com">Tecnativa</a>:<ul>
536
687
  <li>Sergio Teruel</li>
@@ -552,10 +703,14 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
552
703
  </ul>
553
704
  </li>
554
705
  <li>Enric Tobella</li>
706
+ <li><a class="reference external" href="https://www.binhex.cloud/">Binhex Cloud</a>:<ul>
707
+ <li>Edilio Escalona Almira</li>
708
+ </ul>
709
+ </li>
555
710
  </ul>
556
711
  </div>
557
712
  <div class="section" id="maintainers">
558
- <h2><a class="toc-backref" href="#toc-entry-16">Maintainers</a></h2>
713
+ <h3><a class="toc-backref" href="#toc-entry-18">Maintainers</a></h3>
559
714
  <p>This module is maintained by the OCA.</p>
560
715
  <a class="reference external image-reference" href="https://odoo-community.org">
561
716
  <img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
@@ -568,5 +723,6 @@ promote its widespread use.</p>
568
723
  </div>
569
724
  </div>
570
725
  </div>
726
+ </div>
571
727
  </body>
572
728
  </html>
@@ -0,0 +1,135 @@
1
+ @mixin barcode-decoration() {
2
+ i.fa-barcode {
3
+ font-size: 2em !important;
4
+ @include media-breakpoint-down(sm) {
5
+ font-size: 3em !important;
6
+ }
7
+ }
8
+ }
9
+
10
+ div.o_kanban_renderer {
11
+ button[name="action_barcode_scan"] {
12
+ @include barcode-decoration;
13
+ }
14
+ }
15
+
16
+ div.o_kanban_stock_barcodes {
17
+ padding: 10px !important;
18
+
19
+ button.o_stock_mobile_barcode {
20
+ @include barcode-decoration;
21
+ }
22
+
23
+ button.o_stock_mobile_barcode:focus {
24
+ box-shadow: none !important;
25
+ }
26
+ }
27
+
28
+ div.alert.barcode-info {
29
+ background-color: $o-community-color !important;
30
+
31
+ span.fa-barcode {
32
+ margin: 0.5rem 1rem 0 1rem !important;
33
+
34
+ @include media-breakpoint-down(sm) {
35
+ margin: 0 0 0 5px !important;
36
+ font-size: 1em !important;
37
+ }
38
+ }
39
+ }
40
+
41
+ .inventory_quant_ids_with_form {
42
+ height: 710px !important;
43
+ @include media-breakpoint-down(sm) {
44
+ height: 500px !important;
45
+ }
46
+ }
47
+
48
+ .inventory_quant_ids_without_form {
49
+ height: 822px !important;
50
+ @include media-breakpoint-down(sm) {
51
+ height: 648px !important;
52
+ }
53
+ }
54
+
55
+ div.oe_kanban_picking_done {
56
+ background-color: #353840 !important;
57
+ border: none !important;
58
+ box-shadow: none !important;
59
+ height: 230px !important;
60
+ }
61
+
62
+ div[name="inventory_quant_ids"],
63
+ div[name="pending_move_ids"],
64
+ div[name="move_line_ids"] {
65
+ div.o_kanban_renderer {
66
+ padding: 0 !important;
67
+
68
+ &:has(div.oe_kanban_picking_done) {
69
+ height: 50% !important;
70
+ }
71
+
72
+ div.o_kanban_record {
73
+ box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px !important;
74
+
75
+ i.fa-pencil,
76
+ i.fa-trash {
77
+ font-size: 3.5em !important;
78
+ }
79
+
80
+ img,
81
+ span.text-end.fw-bold {
82
+ margin-right: 5% !important;
83
+ }
84
+
85
+ div.indent {
86
+ text-indent: 5px !important;
87
+ }
88
+ }
89
+
90
+ button.btn-op-rest,
91
+ button.btn-op-sum {
92
+ background-color: $o-community-color !important;
93
+ min-width: 55px !important;
94
+ height: 60px !important;
95
+ padding: 12px 8px !important;
96
+ border-radius: 8px !important;
97
+ line-height: 16px !important;
98
+ font-size: 16px !important;
99
+ overflow: hidden;
100
+ text-overflow: ellipsis;
101
+ white-space: nowrap;
102
+ text-transform: none;
103
+ }
104
+ }
105
+ }
106
+
107
+ button[name="action_clean_product"],
108
+ button[name="action_clean_lot"],
109
+ button#btn_create_lot {
110
+ width: 5% !important;
111
+ padding: 0.9rem !important;
112
+ @include media-breakpoint-down(sm) {
113
+ width: 95% !important;
114
+ margin-top: 0.5em !important;
115
+ padding: 0.3rem !important;
116
+ i.o_button_icon {
117
+ font-size: 1.5em !important;
118
+ }
119
+ }
120
+ }
121
+
122
+ div.stock_barcodes_action_kanban {
123
+ div.o_kanban_record {
124
+ div.oe_kanban_content {
125
+ padding: 1.5rem 1.5rem 1.5rem 0.5rem !important;
126
+
127
+ div.count-elements {
128
+ border: 1px solid;
129
+ padding: 1px 4px 1px 4px !important;
130
+ border-radius: 40% !important;
131
+ background-color: lightgray !important;
132
+ }
133
+ }
134
+ }
135
+ }