├── .gitignore ├── MANIFEST.in ├── README.md ├── barcode_shrdc ├── __init__.py ├── barcode_shrdc │ ├── __init__.py │ └── doctype │ │ ├── __init__.py │ │ ├── barcode_configuration │ │ ├── __init__.py │ │ ├── barcode_configuration.js │ │ ├── barcode_configuration.json │ │ ├── barcode_configuration.py │ │ └── test_barcode_configuration.py │ │ ├── barcode_generator_items │ │ ├── __init__.py │ │ ├── barcode_generator_items.json │ │ └── barcode_generator_items.py │ │ ├── barcode_printing │ │ ├── __init__.py │ │ ├── barcode_printing.js │ │ ├── barcode_printing.json │ │ ├── barcode_printing.py │ │ └── test_barcode_printing.py │ │ └── qr_code_configuration │ │ ├── __init__.py │ │ ├── qr_code_configuration.js │ │ ├── qr_code_configuration.json │ │ ├── qr_code_configuration.py │ │ └── test_qr_code_configuration.py ├── config │ ├── __init__.py │ ├── barcode_shrdc.py │ ├── desktop.py │ └── docs.py ├── fixtures │ ├── custom_field.json │ ├── custom_script.json │ ├── print_format.json │ ├── property_setter.json │ ├── report.json │ ├── role.json │ ├── role_profile.json │ ├── workflow.json │ ├── workflow_action.json │ └── workflow_state.json ├── hooks.py ├── modules.txt ├── patches.txt ├── public │ └── hi.txt ├── templates │ ├── __init__.py │ ├── item_qr │ │ └── item_qr.css │ └── pages │ │ └── __init__.py └── www │ ├── item_qr.html │ └── item_qr.py ├── license.txt ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msf4-0/ERPNext-Barcode-Integration/HEAD/.gitignore -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msf4-0/ERPNext-Barcode-Integration/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msf4-0/ERPNext-Barcode-Integration/HEAD/README.md -------------------------------------------------------------------------------- /barcode_shrdc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msf4-0/ERPNext-Barcode-Integration/HEAD/barcode_shrdc/__init__.py -------------------------------------------------------------------------------- /barcode_shrdc/barcode_shrdc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barcode_shrdc/barcode_shrdc/doctype/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barcode_shrdc/barcode_shrdc/doctype/barcode_configuration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barcode_shrdc/barcode_shrdc/doctype/barcode_configuration/barcode_configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msf4-0/ERPNext-Barcode-Integration/HEAD/barcode_shrdc/barcode_shrdc/doctype/barcode_configuration/barcode_configuration.js -------------------------------------------------------------------------------- /barcode_shrdc/barcode_shrdc/doctype/barcode_configuration/barcode_configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msf4-0/ERPNext-Barcode-Integration/HEAD/barcode_shrdc/barcode_shrdc/doctype/barcode_configuration/barcode_configuration.json -------------------------------------------------------------------------------- /barcode_shrdc/barcode_shrdc/doctype/barcode_configuration/barcode_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msf4-0/ERPNext-Barcode-Integration/HEAD/barcode_shrdc/barcode_shrdc/doctype/barcode_configuration/barcode_configuration.py -------------------------------------------------------------------------------- /barcode_shrdc/barcode_shrdc/doctype/barcode_configuration/test_barcode_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msf4-0/ERPNext-Barcode-Integration/HEAD/barcode_shrdc/barcode_shrdc/doctype/barcode_configuration/test_barcode_configuration.py -------------------------------------------------------------------------------- /barcode_shrdc/barcode_shrdc/doctype/barcode_generator_items/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barcode_shrdc/barcode_shrdc/doctype/barcode_generator_items/barcode_generator_items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msf4-0/ERPNext-Barcode-Integration/HEAD/barcode_shrdc/barcode_shrdc/doctype/barcode_generator_items/barcode_generator_items.json -------------------------------------------------------------------------------- /barcode_shrdc/barcode_shrdc/doctype/barcode_generator_items/barcode_generator_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msf4-0/ERPNext-Barcode-Integration/HEAD/barcode_shrdc/barcode_shrdc/doctype/barcode_generator_items/barcode_generator_items.py -------------------------------------------------------------------------------- /barcode_shrdc/barcode_shrdc/doctype/barcode_printing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barcode_shrdc/barcode_shrdc/doctype/barcode_printing/barcode_printing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msf4-0/ERPNext-Barcode-Integration/HEAD/barcode_shrdc/barcode_shrdc/doctype/barcode_printing/barcode_printing.js -------------------------------------------------------------------------------- /barcode_shrdc/barcode_shrdc/doctype/barcode_printing/barcode_printing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msf4-0/ERPNext-Barcode-Integration/HEAD/barcode_shrdc/barcode_shrdc/doctype/barcode_printing/barcode_printing.json -------------------------------------------------------------------------------- /barcode_shrdc/barcode_shrdc/doctype/barcode_printing/barcode_printing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msf4-0/ERPNext-Barcode-Integration/HEAD/barcode_shrdc/barcode_shrdc/doctype/barcode_printing/barcode_printing.py -------------------------------------------------------------------------------- /barcode_shrdc/barcode_shrdc/doctype/barcode_printing/test_barcode_printing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msf4-0/ERPNext-Barcode-Integration/HEAD/barcode_shrdc/barcode_shrdc/doctype/barcode_printing/test_barcode_printing.py -------------------------------------------------------------------------------- /barcode_shrdc/barcode_shrdc/doctype/qr_code_configuration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barcode_shrdc/barcode_shrdc/doctype/qr_code_configuration/qr_code_configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msf4-0/ERPNext-Barcode-Integration/HEAD/barcode_shrdc/barcode_shrdc/doctype/qr_code_configuration/qr_code_configuration.js -------------------------------------------------------------------------------- /barcode_shrdc/barcode_shrdc/doctype/qr_code_configuration/qr_code_configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msf4-0/ERPNext-Barcode-Integration/HEAD/barcode_shrdc/barcode_shrdc/doctype/qr_code_configuration/qr_code_configuration.json -------------------------------------------------------------------------------- /barcode_shrdc/barcode_shrdc/doctype/qr_code_configuration/qr_code_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msf4-0/ERPNext-Barcode-Integration/HEAD/barcode_shrdc/barcode_shrdc/doctype/qr_code_configuration/qr_code_configuration.py -------------------------------------------------------------------------------- /barcode_shrdc/barcode_shrdc/doctype/qr_code_configuration/test_qr_code_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msf4-0/ERPNext-Barcode-Integration/HEAD/barcode_shrdc/barcode_shrdc/doctype/qr_code_configuration/test_qr_code_configuration.py -------------------------------------------------------------------------------- /barcode_shrdc/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barcode_shrdc/config/barcode_shrdc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msf4-0/ERPNext-Barcode-Integration/HEAD/barcode_shrdc/config/barcode_shrdc.py -------------------------------------------------------------------------------- /barcode_shrdc/config/desktop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msf4-0/ERPNext-Barcode-Integration/HEAD/barcode_shrdc/config/desktop.py -------------------------------------------------------------------------------- /barcode_shrdc/config/docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msf4-0/ERPNext-Barcode-Integration/HEAD/barcode_shrdc/config/docs.py -------------------------------------------------------------------------------- /barcode_shrdc/fixtures/custom_field.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msf4-0/ERPNext-Barcode-Integration/HEAD/barcode_shrdc/fixtures/custom_field.json -------------------------------------------------------------------------------- /barcode_shrdc/fixtures/custom_script.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msf4-0/ERPNext-Barcode-Integration/HEAD/barcode_shrdc/fixtures/custom_script.json -------------------------------------------------------------------------------- /barcode_shrdc/fixtures/print_format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msf4-0/ERPNext-Barcode-Integration/HEAD/barcode_shrdc/fixtures/print_format.json -------------------------------------------------------------------------------- /barcode_shrdc/fixtures/property_setter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msf4-0/ERPNext-Barcode-Integration/HEAD/barcode_shrdc/fixtures/property_setter.json -------------------------------------------------------------------------------- /barcode_shrdc/fixtures/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msf4-0/ERPNext-Barcode-Integration/HEAD/barcode_shrdc/fixtures/report.json -------------------------------------------------------------------------------- /barcode_shrdc/fixtures/role.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msf4-0/ERPNext-Barcode-Integration/HEAD/barcode_shrdc/fixtures/role.json -------------------------------------------------------------------------------- /barcode_shrdc/fixtures/role_profile.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /barcode_shrdc/fixtures/workflow.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /barcode_shrdc/fixtures/workflow_action.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /barcode_shrdc/fixtures/workflow_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msf4-0/ERPNext-Barcode-Integration/HEAD/barcode_shrdc/fixtures/workflow_state.json -------------------------------------------------------------------------------- /barcode_shrdc/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msf4-0/ERPNext-Barcode-Integration/HEAD/barcode_shrdc/hooks.py -------------------------------------------------------------------------------- /barcode_shrdc/modules.txt: -------------------------------------------------------------------------------- 1 | Barcode Shrdc -------------------------------------------------------------------------------- /barcode_shrdc/patches.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barcode_shrdc/public/hi.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barcode_shrdc/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barcode_shrdc/templates/item_qr/item_qr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msf4-0/ERPNext-Barcode-Integration/HEAD/barcode_shrdc/templates/item_qr/item_qr.css -------------------------------------------------------------------------------- /barcode_shrdc/templates/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barcode_shrdc/www/item_qr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msf4-0/ERPNext-Barcode-Integration/HEAD/barcode_shrdc/www/item_qr.html -------------------------------------------------------------------------------- /barcode_shrdc/www/item_qr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msf4-0/ERPNext-Barcode-Integration/HEAD/barcode_shrdc/www/item_qr.py -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- 1 | License: MIT -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | frappe 2 | qrcode -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msf4-0/ERPNext-Barcode-Integration/HEAD/setup.py --------------------------------------------------------------------------------