├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── img ├── form.png ├── print_pdf.png └── print_preview.png ├── qr_demo ├── __init__.py ├── barcode.py ├── config │ ├── __init__.py │ ├── desktop.py │ └── docs.py ├── hooks.py ├── modules.txt ├── patches.txt ├── public │ └── .gitkeep ├── qr_code.py ├── qr_demo │ ├── __init__.py │ ├── doctype │ │ ├── __init__.py │ │ └── qr_demo │ │ │ ├── __init__.py │ │ │ ├── qr_demo.js │ │ │ ├── qr_demo.json │ │ │ ├── qr_demo.py │ │ │ └── test_qr_demo.py │ └── print_format │ │ ├── __init__.py │ │ └── qr_code │ │ ├── __init__.py │ │ └── qr_code.json └── templates │ ├── __init__.py │ └── pages │ └── __init__.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alyf-de/frappe_qr_demo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alyf-de/frappe_qr_demo/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alyf-de/frappe_qr_demo/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alyf-de/frappe_qr_demo/HEAD/README.md -------------------------------------------------------------------------------- /img/form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alyf-de/frappe_qr_demo/HEAD/img/form.png -------------------------------------------------------------------------------- /img/print_pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alyf-de/frappe_qr_demo/HEAD/img/print_pdf.png -------------------------------------------------------------------------------- /img/print_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alyf-de/frappe_qr_demo/HEAD/img/print_preview.png -------------------------------------------------------------------------------- /qr_demo/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | __version__ = '0.0.1' 3 | 4 | -------------------------------------------------------------------------------- /qr_demo/barcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alyf-de/frappe_qr_demo/HEAD/qr_demo/barcode.py -------------------------------------------------------------------------------- /qr_demo/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qr_demo/config/desktop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alyf-de/frappe_qr_demo/HEAD/qr_demo/config/desktop.py -------------------------------------------------------------------------------- /qr_demo/config/docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alyf-de/frappe_qr_demo/HEAD/qr_demo/config/docs.py -------------------------------------------------------------------------------- /qr_demo/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alyf-de/frappe_qr_demo/HEAD/qr_demo/hooks.py -------------------------------------------------------------------------------- /qr_demo/modules.txt: -------------------------------------------------------------------------------- 1 | QR Demo -------------------------------------------------------------------------------- /qr_demo/patches.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qr_demo/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qr_demo/qr_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alyf-de/frappe_qr_demo/HEAD/qr_demo/qr_code.py -------------------------------------------------------------------------------- /qr_demo/qr_demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qr_demo/qr_demo/doctype/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qr_demo/qr_demo/doctype/qr_demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qr_demo/qr_demo/doctype/qr_demo/qr_demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alyf-de/frappe_qr_demo/HEAD/qr_demo/qr_demo/doctype/qr_demo/qr_demo.js -------------------------------------------------------------------------------- /qr_demo/qr_demo/doctype/qr_demo/qr_demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alyf-de/frappe_qr_demo/HEAD/qr_demo/qr_demo/doctype/qr_demo/qr_demo.json -------------------------------------------------------------------------------- /qr_demo/qr_demo/doctype/qr_demo/qr_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alyf-de/frappe_qr_demo/HEAD/qr_demo/qr_demo/doctype/qr_demo/qr_demo.py -------------------------------------------------------------------------------- /qr_demo/qr_demo/doctype/qr_demo/test_qr_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alyf-de/frappe_qr_demo/HEAD/qr_demo/qr_demo/doctype/qr_demo/test_qr_demo.py -------------------------------------------------------------------------------- /qr_demo/qr_demo/print_format/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qr_demo/qr_demo/print_format/qr_code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qr_demo/qr_demo/print_format/qr_code/qr_code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alyf-de/frappe_qr_demo/HEAD/qr_demo/qr_demo/print_format/qr_code/qr_code.json -------------------------------------------------------------------------------- /qr_demo/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qr_demo/templates/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alyf-de/frappe_qr_demo/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alyf-de/frappe_qr_demo/HEAD/setup.py --------------------------------------------------------------------------------