├── .gitignore ├── MANIFEST.in ├── README.md ├── docs └── screenshots │ ├── print-order.png │ ├── print-production-dialog.png │ ├── printing-workspace.png │ └── work-order-list.png ├── license.txt ├── requirements.txt ├── setup.py └── textile ├── __init__.py ├── boot.py ├── config ├── __init__.py ├── desktop.py └── docs.py ├── controllers ├── __init__.py ├── textile_order.py └── textile_pricing_rule.py ├── fabric_pretreatment ├── __init__.py ├── doctype │ ├── __init__.py │ ├── fabric_pretreatment_settings │ │ ├── __init__.py │ │ ├── fabric_pretreatment_settings.js │ │ ├── fabric_pretreatment_settings.json │ │ ├── fabric_pretreatment_settings.py │ │ └── test_fabric_pretreatment_settings.py │ ├── pretreatment_order │ │ ├── __init__.py │ │ ├── pretreatment_order.js │ │ ├── pretreatment_order.json │ │ ├── pretreatment_order.py │ │ ├── pretreatment_order_dashboard.py │ │ ├── pretreatment_order_list.js │ │ └── test_pretreatment_order.py │ ├── pretreatment_pricing_rule │ │ ├── __init__.py │ │ ├── pretreatment_pricing_rule.js │ │ ├── pretreatment_pricing_rule.json │ │ ├── pretreatment_pricing_rule.py │ │ ├── pretreatment_pricing_rule_list.js │ │ └── test_pretreatment_pricing_rule.py │ └── pretreatment_process_rule │ │ ├── __init__.py │ │ ├── pretreatment_process_rule.js │ │ ├── pretreatment_process_rule.json │ │ ├── pretreatment_process_rule.py │ │ └── test_pretreatment_process_rule.py ├── number_card │ ├── pretreatment_orders_in_production │ │ └── pretreatment_orders_in_production.json │ ├── pretreatment_orders_to_confirm │ │ └── pretreatment_orders_to_confirm.json │ ├── pretreatment_orders_to_deliver │ │ └── pretreatment_orders_to_deliver.json │ └── pretreatment_orders_to_pack │ │ └── pretreatment_orders_to_pack.json ├── report │ ├── __init__.py │ └── pretreatment_production_register │ │ ├── __init__.py │ │ ├── pretreatment_production_register.js │ │ ├── pretreatment_production_register.json │ │ └── pretreatment_production_register.py └── workspace │ └── fabric_pretreatment │ └── fabric_pretreatment.json ├── fabric_printing ├── __init__.py ├── doctype │ ├── __init__.py │ ├── coating_order │ │ ├── __init__.py │ │ ├── coating_order.js │ │ ├── coating_order.json │ │ ├── coating_order.py │ │ ├── coating_order_dashboard.py │ │ ├── coating_order_list.js │ │ └── test_coating_order.py │ ├── fabric_printer │ │ ├── __init__.py │ │ ├── fabric_printer.js │ │ ├── fabric_printer.json │ │ ├── fabric_printer.py │ │ └── test_fabric_printer.py │ ├── fabric_printer_process │ │ ├── __init__.py │ │ ├── fabric_printer_process.json │ │ └── fabric_printer_process.py │ ├── fabric_printing_settings │ │ ├── __init__.py │ │ ├── fabric_printing_settings.js │ │ ├── fabric_printing_settings.json │ │ ├── fabric_printing_settings.py │ │ └── test_fabric_printing_settings.py │ ├── print_order │ │ ├── __init__.py │ │ ├── print_order.js │ │ ├── print_order.json │ │ ├── print_order.py │ │ ├── print_order_dashboard.py │ │ ├── print_order_list.js │ │ └── test_print_order.py │ ├── print_order_item │ │ ├── __init__.py │ │ ├── print_order_item.json │ │ └── print_order_item.py │ ├── print_pricing_rule │ │ ├── __init__.py │ │ ├── print_pricing_rule.js │ │ ├── print_pricing_rule.json │ │ ├── print_pricing_rule.py │ │ ├── print_pricing_rule_list.js │ │ └── test_print_pricing_rule.py │ ├── print_process_rule │ │ ├── __init__.py │ │ ├── print_process_rule.js │ │ ├── print_process_rule.json │ │ ├── print_process_rule.py │ │ └── test_print_process_rule.py │ └── printed_fabric_detail │ │ ├── __init__.py │ │ ├── printed_fabric_detail.json │ │ └── printed_fabric_detail.py ├── number_card │ ├── print_orders_in_production │ │ └── print_orders_in_production.json │ ├── print_orders_to_confirm │ │ └── print_orders_to_confirm.json │ ├── print_orders_to_deliver │ │ └── print_orders_to_deliver.json │ └── print_orders_to_pack │ │ └── print_orders_to_pack.json ├── page │ ├── __init__.py │ ├── print_order_packing │ │ ├── __init__.py │ │ ├── print_order_packing.js │ │ └── print_order_packing.json │ └── print_work_order │ │ ├── __init__.py │ │ ├── print_work_order.js │ │ └── print_work_order.json ├── report │ ├── __init__.py │ ├── coating_production_register │ │ ├── __init__.py │ │ ├── coating_production_register.js │ │ ├── coating_production_register.json │ │ └── coating_production_register.py │ ├── fabric_printing_summary │ │ ├── __init__.py │ │ ├── fabric_printing_summary.js │ │ ├── fabric_printing_summary.json │ │ └── fabric_printing_summary.py │ └── print_production_register │ │ ├── __init__.py │ │ ├── print_production_register.js │ │ ├── print_production_register.json │ │ └── print_production_register.py └── workspace │ └── fabric_printing │ └── fabric_printing.json ├── fixtures ├── custom_field.json └── property_setter.json ├── hooks.py ├── install.py ├── modules.txt ├── notifications.py ├── overrides ├── bom_hooks.py ├── customer_hooks.js ├── customer_hooks.py ├── delivery_note_hooks.js ├── delivery_note_hooks.py ├── item_details_hooks.py ├── item_hooks.js ├── item_hooks.py ├── packing_slip_hooks.js ├── packing_slip_hooks.py ├── purchase_hooks.py ├── purchase_order_hooks.js ├── quotation_hooks.py ├── sales_invoice_hooks.js ├── sales_invoice_hooks.py ├── sales_order_hooks.js ├── sales_order_hooks.py ├── stock_entry_hooks.js ├── stock_entry_hooks.py ├── taxes_and_totals_hooks.js ├── taxes_and_totals_hooks.py ├── uom_hooks.py ├── work_order_hooks.js ├── work_order_hooks.py └── work_order_list_hooks.js ├── patches.txt ├── patches ├── __init__.py ├── change_panel_sales_uom_to_meter.py ├── change_print_order_status_not_started.py ├── delete_duplicate_file_attachments.py ├── delivery_status_not_applicable_for_not_started_orders.py ├── enable_allow_process_loss.py ├── fix_return_fabric_skip_sales_invoice.py ├── move_fabric_printer_process_to_table.py ├── refactor_fabric_printing.py ├── reinstall_digital_printing.py ├── remove_item_design_name_field.py ├── rename_process_component_field.py ├── rename_stock_entry_type_for_pretreatment_production.py ├── rename_textile_item_type.py ├── set_coating_order_actual_end_date.py ├── set_default_coating_cost_center.py ├── set_default_fabric_pickup.py ├── set_do_not_explode_for_fabric.py ├── set_fabric_warehouse.py ├── set_is_sub_contracted.py ├── set_line_fabric_item_details.py ├── set_line_textile_item_type.py ├── set_panel_based_qty.py ├── set_pretreatment_greige_fabric_batch_no.py ├── set_pretreatment_order_subcontractable_qty.py ├── set_print_order_internal_customer.py ├── set_print_order_rejected_qty.py ├── set_printed_design_material_request_type.py ├── set_return_fabric_skip_sales_invoice.py ├── set_work_order_fabric_details.py ├── set_work_order_packing_slip_required.py ├── set_work_order_process_details.py ├── setup_textile_item_types.py ├── unset_sales_uom_for_printed_design_items.py ├── update_conversion_factor_global_defaults.py ├── update_fabric_conversion_uoms.py ├── update_fabric_items_conversions.py ├── update_fabric_material_tariff_numbers.py ├── update_is_return_fabric_field.py ├── update_print_order_item_creation_status.py ├── update_print_order_production_packing_status.py ├── update_print_order_statuses.py └── update_stock_entry_types.py ├── public ├── .gitkeep ├── js │ ├── check_pricing.js │ ├── print_list_view.js │ ├── textile_order.js │ └── utils.js ├── scss │ ├── print_list_view.scss │ ├── print_order_item_row.scss │ └── textile.bundle.scss └── textile.bundle.js ├── rotated_image.py ├── templates ├── __init__.py ├── pages │ └── __init__.py └── print_order_item_row.html ├── textile ├── __init__.py ├── doctype │ ├── __init__.py │ ├── fabric_material │ │ ├── __init__.py │ │ ├── fabric_material.js │ │ ├── fabric_material.json │ │ ├── fabric_material.py │ │ └── test_fabric_material.py │ ├── fabric_tariff_number │ │ ├── __init__.py │ │ ├── fabric_tariff_number.json │ │ └── fabric_tariff_number.py │ ├── fabric_type │ │ ├── __init__.py │ │ ├── fabric_type.js │ │ ├── fabric_type.json │ │ ├── fabric_type.py │ │ └── test_fabric_type.py │ ├── textile_email_digest │ │ ├── __init__.py │ │ ├── test_textile_email_digest.py │ │ ├── textile_email_digest.js │ │ ├── textile_email_digest.json │ │ └── textile_email_digest.py │ └── textile_item_type │ │ ├── __init__.py │ │ ├── test_textile_item_type.py │ │ ├── textile_item_type.js │ │ ├── textile_item_type.json │ │ └── textile_item_type.py └── report │ ├── __init__.py │ ├── fabric_delivery_register │ ├── __init__.py │ ├── fabric_delivery_register.js │ ├── fabric_delivery_register.json │ └── fabric_delivery_register.py │ ├── fabric_ledger │ ├── __init__.py │ ├── fabric_ledger.html │ ├── fabric_ledger.js │ ├── fabric_ledger.json │ └── fabric_ledger.py │ └── fabric_packing_list │ ├── __init__.py │ ├── fabric_packing_list.html │ ├── fabric_packing_list.js │ ├── fabric_packing_list.json │ └── fabric_packing_list.py ├── utils.py └── www └── __init__.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/.gitignore -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/README.md -------------------------------------------------------------------------------- /docs/screenshots/print-order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/docs/screenshots/print-order.png -------------------------------------------------------------------------------- /docs/screenshots/print-production-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/docs/screenshots/print-production-dialog.png -------------------------------------------------------------------------------- /docs/screenshots/printing-workspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/docs/screenshots/printing-workspace.png -------------------------------------------------------------------------------- /docs/screenshots/work-order-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/docs/screenshots/work-order-list.png -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/license.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/setup.py -------------------------------------------------------------------------------- /textile/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | __version__ = '0.0.1' 3 | 4 | -------------------------------------------------------------------------------- /textile/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/boot.py -------------------------------------------------------------------------------- /textile/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/config/desktop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/config/desktop.py -------------------------------------------------------------------------------- /textile/config/docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/config/docs.py -------------------------------------------------------------------------------- /textile/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/controllers/textile_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/controllers/textile_order.py -------------------------------------------------------------------------------- /textile/controllers/textile_pricing_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/controllers/textile_pricing_rule.py -------------------------------------------------------------------------------- /textile/fabric_pretreatment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/fabric_pretreatment/doctype/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/fabric_pretreatment/doctype/fabric_pretreatment_settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/fabric_pretreatment/doctype/fabric_pretreatment_settings/fabric_pretreatment_settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_pretreatment/doctype/fabric_pretreatment_settings/fabric_pretreatment_settings.js -------------------------------------------------------------------------------- /textile/fabric_pretreatment/doctype/fabric_pretreatment_settings/fabric_pretreatment_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_pretreatment/doctype/fabric_pretreatment_settings/fabric_pretreatment_settings.json -------------------------------------------------------------------------------- /textile/fabric_pretreatment/doctype/fabric_pretreatment_settings/fabric_pretreatment_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_pretreatment/doctype/fabric_pretreatment_settings/fabric_pretreatment_settings.py -------------------------------------------------------------------------------- /textile/fabric_pretreatment/doctype/fabric_pretreatment_settings/test_fabric_pretreatment_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_pretreatment/doctype/fabric_pretreatment_settings/test_fabric_pretreatment_settings.py -------------------------------------------------------------------------------- /textile/fabric_pretreatment/doctype/pretreatment_order/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/fabric_pretreatment/doctype/pretreatment_order/pretreatment_order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_pretreatment/doctype/pretreatment_order/pretreatment_order.js -------------------------------------------------------------------------------- /textile/fabric_pretreatment/doctype/pretreatment_order/pretreatment_order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_pretreatment/doctype/pretreatment_order/pretreatment_order.json -------------------------------------------------------------------------------- /textile/fabric_pretreatment/doctype/pretreatment_order/pretreatment_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_pretreatment/doctype/pretreatment_order/pretreatment_order.py -------------------------------------------------------------------------------- /textile/fabric_pretreatment/doctype/pretreatment_order/pretreatment_order_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_pretreatment/doctype/pretreatment_order/pretreatment_order_dashboard.py -------------------------------------------------------------------------------- /textile/fabric_pretreatment/doctype/pretreatment_order/pretreatment_order_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_pretreatment/doctype/pretreatment_order/pretreatment_order_list.js -------------------------------------------------------------------------------- /textile/fabric_pretreatment/doctype/pretreatment_order/test_pretreatment_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_pretreatment/doctype/pretreatment_order/test_pretreatment_order.py -------------------------------------------------------------------------------- /textile/fabric_pretreatment/doctype/pretreatment_pricing_rule/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/fabric_pretreatment/doctype/pretreatment_pricing_rule/pretreatment_pricing_rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_pretreatment/doctype/pretreatment_pricing_rule/pretreatment_pricing_rule.js -------------------------------------------------------------------------------- /textile/fabric_pretreatment/doctype/pretreatment_pricing_rule/pretreatment_pricing_rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_pretreatment/doctype/pretreatment_pricing_rule/pretreatment_pricing_rule.json -------------------------------------------------------------------------------- /textile/fabric_pretreatment/doctype/pretreatment_pricing_rule/pretreatment_pricing_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_pretreatment/doctype/pretreatment_pricing_rule/pretreatment_pricing_rule.py -------------------------------------------------------------------------------- /textile/fabric_pretreatment/doctype/pretreatment_pricing_rule/pretreatment_pricing_rule_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_pretreatment/doctype/pretreatment_pricing_rule/pretreatment_pricing_rule_list.js -------------------------------------------------------------------------------- /textile/fabric_pretreatment/doctype/pretreatment_pricing_rule/test_pretreatment_pricing_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_pretreatment/doctype/pretreatment_pricing_rule/test_pretreatment_pricing_rule.py -------------------------------------------------------------------------------- /textile/fabric_pretreatment/doctype/pretreatment_process_rule/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/fabric_pretreatment/doctype/pretreatment_process_rule/pretreatment_process_rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_pretreatment/doctype/pretreatment_process_rule/pretreatment_process_rule.js -------------------------------------------------------------------------------- /textile/fabric_pretreatment/doctype/pretreatment_process_rule/pretreatment_process_rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_pretreatment/doctype/pretreatment_process_rule/pretreatment_process_rule.json -------------------------------------------------------------------------------- /textile/fabric_pretreatment/doctype/pretreatment_process_rule/pretreatment_process_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_pretreatment/doctype/pretreatment_process_rule/pretreatment_process_rule.py -------------------------------------------------------------------------------- /textile/fabric_pretreatment/doctype/pretreatment_process_rule/test_pretreatment_process_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_pretreatment/doctype/pretreatment_process_rule/test_pretreatment_process_rule.py -------------------------------------------------------------------------------- /textile/fabric_pretreatment/number_card/pretreatment_orders_in_production/pretreatment_orders_in_production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_pretreatment/number_card/pretreatment_orders_in_production/pretreatment_orders_in_production.json -------------------------------------------------------------------------------- /textile/fabric_pretreatment/number_card/pretreatment_orders_to_confirm/pretreatment_orders_to_confirm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_pretreatment/number_card/pretreatment_orders_to_confirm/pretreatment_orders_to_confirm.json -------------------------------------------------------------------------------- /textile/fabric_pretreatment/number_card/pretreatment_orders_to_deliver/pretreatment_orders_to_deliver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_pretreatment/number_card/pretreatment_orders_to_deliver/pretreatment_orders_to_deliver.json -------------------------------------------------------------------------------- /textile/fabric_pretreatment/number_card/pretreatment_orders_to_pack/pretreatment_orders_to_pack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_pretreatment/number_card/pretreatment_orders_to_pack/pretreatment_orders_to_pack.json -------------------------------------------------------------------------------- /textile/fabric_pretreatment/report/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/fabric_pretreatment/report/pretreatment_production_register/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/fabric_pretreatment/report/pretreatment_production_register/pretreatment_production_register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_pretreatment/report/pretreatment_production_register/pretreatment_production_register.js -------------------------------------------------------------------------------- /textile/fabric_pretreatment/report/pretreatment_production_register/pretreatment_production_register.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_pretreatment/report/pretreatment_production_register/pretreatment_production_register.json -------------------------------------------------------------------------------- /textile/fabric_pretreatment/report/pretreatment_production_register/pretreatment_production_register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_pretreatment/report/pretreatment_production_register/pretreatment_production_register.py -------------------------------------------------------------------------------- /textile/fabric_pretreatment/workspace/fabric_pretreatment/fabric_pretreatment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_pretreatment/workspace/fabric_pretreatment/fabric_pretreatment.json -------------------------------------------------------------------------------- /textile/fabric_printing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/coating_order/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/coating_order/coating_order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/coating_order/coating_order.js -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/coating_order/coating_order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/coating_order/coating_order.json -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/coating_order/coating_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/coating_order/coating_order.py -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/coating_order/coating_order_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/coating_order/coating_order_dashboard.py -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/coating_order/coating_order_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/coating_order/coating_order_list.js -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/coating_order/test_coating_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/coating_order/test_coating_order.py -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/fabric_printer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/fabric_printer/fabric_printer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/fabric_printer/fabric_printer.js -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/fabric_printer/fabric_printer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/fabric_printer/fabric_printer.json -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/fabric_printer/fabric_printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/fabric_printer/fabric_printer.py -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/fabric_printer/test_fabric_printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/fabric_printer/test_fabric_printer.py -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/fabric_printer_process/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/fabric_printer_process/fabric_printer_process.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/fabric_printer_process/fabric_printer_process.json -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/fabric_printer_process/fabric_printer_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/fabric_printer_process/fabric_printer_process.py -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/fabric_printing_settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/fabric_printing_settings/fabric_printing_settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/fabric_printing_settings/fabric_printing_settings.js -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/fabric_printing_settings/fabric_printing_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/fabric_printing_settings/fabric_printing_settings.json -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/fabric_printing_settings/fabric_printing_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/fabric_printing_settings/fabric_printing_settings.py -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/fabric_printing_settings/test_fabric_printing_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/fabric_printing_settings/test_fabric_printing_settings.py -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/print_order/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/print_order/print_order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/print_order/print_order.js -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/print_order/print_order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/print_order/print_order.json -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/print_order/print_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/print_order/print_order.py -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/print_order/print_order_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/print_order/print_order_dashboard.py -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/print_order/print_order_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/print_order/print_order_list.js -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/print_order/test_print_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/print_order/test_print_order.py -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/print_order_item/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/print_order_item/print_order_item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/print_order_item/print_order_item.json -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/print_order_item/print_order_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/print_order_item/print_order_item.py -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/print_pricing_rule/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/print_pricing_rule/print_pricing_rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/print_pricing_rule/print_pricing_rule.js -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/print_pricing_rule/print_pricing_rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/print_pricing_rule/print_pricing_rule.json -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/print_pricing_rule/print_pricing_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/print_pricing_rule/print_pricing_rule.py -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/print_pricing_rule/print_pricing_rule_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/print_pricing_rule/print_pricing_rule_list.js -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/print_pricing_rule/test_print_pricing_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/print_pricing_rule/test_print_pricing_rule.py -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/print_process_rule/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/print_process_rule/print_process_rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/print_process_rule/print_process_rule.js -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/print_process_rule/print_process_rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/print_process_rule/print_process_rule.json -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/print_process_rule/print_process_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/print_process_rule/print_process_rule.py -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/print_process_rule/test_print_process_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/print_process_rule/test_print_process_rule.py -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/printed_fabric_detail/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/printed_fabric_detail/printed_fabric_detail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/printed_fabric_detail/printed_fabric_detail.json -------------------------------------------------------------------------------- /textile/fabric_printing/doctype/printed_fabric_detail/printed_fabric_detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/doctype/printed_fabric_detail/printed_fabric_detail.py -------------------------------------------------------------------------------- /textile/fabric_printing/number_card/print_orders_in_production/print_orders_in_production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/number_card/print_orders_in_production/print_orders_in_production.json -------------------------------------------------------------------------------- /textile/fabric_printing/number_card/print_orders_to_confirm/print_orders_to_confirm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/number_card/print_orders_to_confirm/print_orders_to_confirm.json -------------------------------------------------------------------------------- /textile/fabric_printing/number_card/print_orders_to_deliver/print_orders_to_deliver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/number_card/print_orders_to_deliver/print_orders_to_deliver.json -------------------------------------------------------------------------------- /textile/fabric_printing/number_card/print_orders_to_pack/print_orders_to_pack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/number_card/print_orders_to_pack/print_orders_to_pack.json -------------------------------------------------------------------------------- /textile/fabric_printing/page/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/fabric_printing/page/print_order_packing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/fabric_printing/page/print_order_packing/print_order_packing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/page/print_order_packing/print_order_packing.js -------------------------------------------------------------------------------- /textile/fabric_printing/page/print_order_packing/print_order_packing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/page/print_order_packing/print_order_packing.json -------------------------------------------------------------------------------- /textile/fabric_printing/page/print_work_order/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/fabric_printing/page/print_work_order/print_work_order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/page/print_work_order/print_work_order.js -------------------------------------------------------------------------------- /textile/fabric_printing/page/print_work_order/print_work_order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/page/print_work_order/print_work_order.json -------------------------------------------------------------------------------- /textile/fabric_printing/report/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/fabric_printing/report/coating_production_register/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/fabric_printing/report/coating_production_register/coating_production_register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/report/coating_production_register/coating_production_register.js -------------------------------------------------------------------------------- /textile/fabric_printing/report/coating_production_register/coating_production_register.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/report/coating_production_register/coating_production_register.json -------------------------------------------------------------------------------- /textile/fabric_printing/report/coating_production_register/coating_production_register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/report/coating_production_register/coating_production_register.py -------------------------------------------------------------------------------- /textile/fabric_printing/report/fabric_printing_summary/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/fabric_printing/report/fabric_printing_summary/fabric_printing_summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/report/fabric_printing_summary/fabric_printing_summary.js -------------------------------------------------------------------------------- /textile/fabric_printing/report/fabric_printing_summary/fabric_printing_summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/report/fabric_printing_summary/fabric_printing_summary.json -------------------------------------------------------------------------------- /textile/fabric_printing/report/fabric_printing_summary/fabric_printing_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/report/fabric_printing_summary/fabric_printing_summary.py -------------------------------------------------------------------------------- /textile/fabric_printing/report/print_production_register/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/fabric_printing/report/print_production_register/print_production_register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/report/print_production_register/print_production_register.js -------------------------------------------------------------------------------- /textile/fabric_printing/report/print_production_register/print_production_register.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/report/print_production_register/print_production_register.json -------------------------------------------------------------------------------- /textile/fabric_printing/report/print_production_register/print_production_register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/report/print_production_register/print_production_register.py -------------------------------------------------------------------------------- /textile/fabric_printing/workspace/fabric_printing/fabric_printing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fabric_printing/workspace/fabric_printing/fabric_printing.json -------------------------------------------------------------------------------- /textile/fixtures/custom_field.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fixtures/custom_field.json -------------------------------------------------------------------------------- /textile/fixtures/property_setter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/fixtures/property_setter.json -------------------------------------------------------------------------------- /textile/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/hooks.py -------------------------------------------------------------------------------- /textile/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/install.py -------------------------------------------------------------------------------- /textile/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/modules.txt -------------------------------------------------------------------------------- /textile/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/notifications.py -------------------------------------------------------------------------------- /textile/overrides/bom_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/overrides/bom_hooks.py -------------------------------------------------------------------------------- /textile/overrides/customer_hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/overrides/customer_hooks.js -------------------------------------------------------------------------------- /textile/overrides/customer_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/overrides/customer_hooks.py -------------------------------------------------------------------------------- /textile/overrides/delivery_note_hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/overrides/delivery_note_hooks.js -------------------------------------------------------------------------------- /textile/overrides/delivery_note_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/overrides/delivery_note_hooks.py -------------------------------------------------------------------------------- /textile/overrides/item_details_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/overrides/item_details_hooks.py -------------------------------------------------------------------------------- /textile/overrides/item_hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/overrides/item_hooks.js -------------------------------------------------------------------------------- /textile/overrides/item_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/overrides/item_hooks.py -------------------------------------------------------------------------------- /textile/overrides/packing_slip_hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/overrides/packing_slip_hooks.js -------------------------------------------------------------------------------- /textile/overrides/packing_slip_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/overrides/packing_slip_hooks.py -------------------------------------------------------------------------------- /textile/overrides/purchase_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/overrides/purchase_hooks.py -------------------------------------------------------------------------------- /textile/overrides/purchase_order_hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/overrides/purchase_order_hooks.js -------------------------------------------------------------------------------- /textile/overrides/quotation_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/overrides/quotation_hooks.py -------------------------------------------------------------------------------- /textile/overrides/sales_invoice_hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/overrides/sales_invoice_hooks.js -------------------------------------------------------------------------------- /textile/overrides/sales_invoice_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/overrides/sales_invoice_hooks.py -------------------------------------------------------------------------------- /textile/overrides/sales_order_hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/overrides/sales_order_hooks.js -------------------------------------------------------------------------------- /textile/overrides/sales_order_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/overrides/sales_order_hooks.py -------------------------------------------------------------------------------- /textile/overrides/stock_entry_hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/overrides/stock_entry_hooks.js -------------------------------------------------------------------------------- /textile/overrides/stock_entry_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/overrides/stock_entry_hooks.py -------------------------------------------------------------------------------- /textile/overrides/taxes_and_totals_hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/overrides/taxes_and_totals_hooks.js -------------------------------------------------------------------------------- /textile/overrides/taxes_and_totals_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/overrides/taxes_and_totals_hooks.py -------------------------------------------------------------------------------- /textile/overrides/uom_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/overrides/uom_hooks.py -------------------------------------------------------------------------------- /textile/overrides/work_order_hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/overrides/work_order_hooks.js -------------------------------------------------------------------------------- /textile/overrides/work_order_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/overrides/work_order_hooks.py -------------------------------------------------------------------------------- /textile/overrides/work_order_list_hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/overrides/work_order_list_hooks.js -------------------------------------------------------------------------------- /textile/patches.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches.txt -------------------------------------------------------------------------------- /textile/patches/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/patches/change_panel_sales_uom_to_meter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/change_panel_sales_uom_to_meter.py -------------------------------------------------------------------------------- /textile/patches/change_print_order_status_not_started.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/change_print_order_status_not_started.py -------------------------------------------------------------------------------- /textile/patches/delete_duplicate_file_attachments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/delete_duplicate_file_attachments.py -------------------------------------------------------------------------------- /textile/patches/delivery_status_not_applicable_for_not_started_orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/delivery_status_not_applicable_for_not_started_orders.py -------------------------------------------------------------------------------- /textile/patches/enable_allow_process_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/enable_allow_process_loss.py -------------------------------------------------------------------------------- /textile/patches/fix_return_fabric_skip_sales_invoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/fix_return_fabric_skip_sales_invoice.py -------------------------------------------------------------------------------- /textile/patches/move_fabric_printer_process_to_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/move_fabric_printer_process_to_table.py -------------------------------------------------------------------------------- /textile/patches/refactor_fabric_printing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/refactor_fabric_printing.py -------------------------------------------------------------------------------- /textile/patches/reinstall_digital_printing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/reinstall_digital_printing.py -------------------------------------------------------------------------------- /textile/patches/remove_item_design_name_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/remove_item_design_name_field.py -------------------------------------------------------------------------------- /textile/patches/rename_process_component_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/rename_process_component_field.py -------------------------------------------------------------------------------- /textile/patches/rename_stock_entry_type_for_pretreatment_production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/rename_stock_entry_type_for_pretreatment_production.py -------------------------------------------------------------------------------- /textile/patches/rename_textile_item_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/rename_textile_item_type.py -------------------------------------------------------------------------------- /textile/patches/set_coating_order_actual_end_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/set_coating_order_actual_end_date.py -------------------------------------------------------------------------------- /textile/patches/set_default_coating_cost_center.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/set_default_coating_cost_center.py -------------------------------------------------------------------------------- /textile/patches/set_default_fabric_pickup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/set_default_fabric_pickup.py -------------------------------------------------------------------------------- /textile/patches/set_do_not_explode_for_fabric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/set_do_not_explode_for_fabric.py -------------------------------------------------------------------------------- /textile/patches/set_fabric_warehouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/set_fabric_warehouse.py -------------------------------------------------------------------------------- /textile/patches/set_is_sub_contracted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/set_is_sub_contracted.py -------------------------------------------------------------------------------- /textile/patches/set_line_fabric_item_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/set_line_fabric_item_details.py -------------------------------------------------------------------------------- /textile/patches/set_line_textile_item_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/set_line_textile_item_type.py -------------------------------------------------------------------------------- /textile/patches/set_panel_based_qty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/set_panel_based_qty.py -------------------------------------------------------------------------------- /textile/patches/set_pretreatment_greige_fabric_batch_no.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/set_pretreatment_greige_fabric_batch_no.py -------------------------------------------------------------------------------- /textile/patches/set_pretreatment_order_subcontractable_qty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/set_pretreatment_order_subcontractable_qty.py -------------------------------------------------------------------------------- /textile/patches/set_print_order_internal_customer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/set_print_order_internal_customer.py -------------------------------------------------------------------------------- /textile/patches/set_print_order_rejected_qty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/set_print_order_rejected_qty.py -------------------------------------------------------------------------------- /textile/patches/set_printed_design_material_request_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/set_printed_design_material_request_type.py -------------------------------------------------------------------------------- /textile/patches/set_return_fabric_skip_sales_invoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/set_return_fabric_skip_sales_invoice.py -------------------------------------------------------------------------------- /textile/patches/set_work_order_fabric_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/set_work_order_fabric_details.py -------------------------------------------------------------------------------- /textile/patches/set_work_order_packing_slip_required.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/set_work_order_packing_slip_required.py -------------------------------------------------------------------------------- /textile/patches/set_work_order_process_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/set_work_order_process_details.py -------------------------------------------------------------------------------- /textile/patches/setup_textile_item_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/setup_textile_item_types.py -------------------------------------------------------------------------------- /textile/patches/unset_sales_uom_for_printed_design_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/unset_sales_uom_for_printed_design_items.py -------------------------------------------------------------------------------- /textile/patches/update_conversion_factor_global_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/update_conversion_factor_global_defaults.py -------------------------------------------------------------------------------- /textile/patches/update_fabric_conversion_uoms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/update_fabric_conversion_uoms.py -------------------------------------------------------------------------------- /textile/patches/update_fabric_items_conversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/update_fabric_items_conversions.py -------------------------------------------------------------------------------- /textile/patches/update_fabric_material_tariff_numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/update_fabric_material_tariff_numbers.py -------------------------------------------------------------------------------- /textile/patches/update_is_return_fabric_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/update_is_return_fabric_field.py -------------------------------------------------------------------------------- /textile/patches/update_print_order_item_creation_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/update_print_order_item_creation_status.py -------------------------------------------------------------------------------- /textile/patches/update_print_order_production_packing_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/update_print_order_production_packing_status.py -------------------------------------------------------------------------------- /textile/patches/update_print_order_statuses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/update_print_order_statuses.py -------------------------------------------------------------------------------- /textile/patches/update_stock_entry_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/patches/update_stock_entry_types.py -------------------------------------------------------------------------------- /textile/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/public/js/check_pricing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/public/js/check_pricing.js -------------------------------------------------------------------------------- /textile/public/js/print_list_view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/public/js/print_list_view.js -------------------------------------------------------------------------------- /textile/public/js/textile_order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/public/js/textile_order.js -------------------------------------------------------------------------------- /textile/public/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/public/js/utils.js -------------------------------------------------------------------------------- /textile/public/scss/print_list_view.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/public/scss/print_list_view.scss -------------------------------------------------------------------------------- /textile/public/scss/print_order_item_row.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/public/scss/print_order_item_row.scss -------------------------------------------------------------------------------- /textile/public/scss/textile.bundle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/public/scss/textile.bundle.scss -------------------------------------------------------------------------------- /textile/public/textile.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/public/textile.bundle.js -------------------------------------------------------------------------------- /textile/rotated_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/rotated_image.py -------------------------------------------------------------------------------- /textile/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/templates/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/templates/print_order_item_row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/templates/print_order_item_row.html -------------------------------------------------------------------------------- /textile/textile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/textile/doctype/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/textile/doctype/fabric_material/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/textile/doctype/fabric_material/fabric_material.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/textile/doctype/fabric_material/fabric_material.js -------------------------------------------------------------------------------- /textile/textile/doctype/fabric_material/fabric_material.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/textile/doctype/fabric_material/fabric_material.json -------------------------------------------------------------------------------- /textile/textile/doctype/fabric_material/fabric_material.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/textile/doctype/fabric_material/fabric_material.py -------------------------------------------------------------------------------- /textile/textile/doctype/fabric_material/test_fabric_material.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/textile/doctype/fabric_material/test_fabric_material.py -------------------------------------------------------------------------------- /textile/textile/doctype/fabric_tariff_number/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/textile/doctype/fabric_tariff_number/fabric_tariff_number.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/textile/doctype/fabric_tariff_number/fabric_tariff_number.json -------------------------------------------------------------------------------- /textile/textile/doctype/fabric_tariff_number/fabric_tariff_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/textile/doctype/fabric_tariff_number/fabric_tariff_number.py -------------------------------------------------------------------------------- /textile/textile/doctype/fabric_type/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/textile/doctype/fabric_type/fabric_type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/textile/doctype/fabric_type/fabric_type.js -------------------------------------------------------------------------------- /textile/textile/doctype/fabric_type/fabric_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/textile/doctype/fabric_type/fabric_type.json -------------------------------------------------------------------------------- /textile/textile/doctype/fabric_type/fabric_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/textile/doctype/fabric_type/fabric_type.py -------------------------------------------------------------------------------- /textile/textile/doctype/fabric_type/test_fabric_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/textile/doctype/fabric_type/test_fabric_type.py -------------------------------------------------------------------------------- /textile/textile/doctype/textile_email_digest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/textile/doctype/textile_email_digest/test_textile_email_digest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/textile/doctype/textile_email_digest/test_textile_email_digest.py -------------------------------------------------------------------------------- /textile/textile/doctype/textile_email_digest/textile_email_digest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/textile/doctype/textile_email_digest/textile_email_digest.js -------------------------------------------------------------------------------- /textile/textile/doctype/textile_email_digest/textile_email_digest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/textile/doctype/textile_email_digest/textile_email_digest.json -------------------------------------------------------------------------------- /textile/textile/doctype/textile_email_digest/textile_email_digest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/textile/doctype/textile_email_digest/textile_email_digest.py -------------------------------------------------------------------------------- /textile/textile/doctype/textile_item_type/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/textile/doctype/textile_item_type/test_textile_item_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/textile/doctype/textile_item_type/test_textile_item_type.py -------------------------------------------------------------------------------- /textile/textile/doctype/textile_item_type/textile_item_type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/textile/doctype/textile_item_type/textile_item_type.js -------------------------------------------------------------------------------- /textile/textile/doctype/textile_item_type/textile_item_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/textile/doctype/textile_item_type/textile_item_type.json -------------------------------------------------------------------------------- /textile/textile/doctype/textile_item_type/textile_item_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/textile/doctype/textile_item_type/textile_item_type.py -------------------------------------------------------------------------------- /textile/textile/report/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/textile/report/fabric_delivery_register/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/textile/report/fabric_delivery_register/fabric_delivery_register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/textile/report/fabric_delivery_register/fabric_delivery_register.js -------------------------------------------------------------------------------- /textile/textile/report/fabric_delivery_register/fabric_delivery_register.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/textile/report/fabric_delivery_register/fabric_delivery_register.json -------------------------------------------------------------------------------- /textile/textile/report/fabric_delivery_register/fabric_delivery_register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/textile/report/fabric_delivery_register/fabric_delivery_register.py -------------------------------------------------------------------------------- /textile/textile/report/fabric_ledger/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/textile/report/fabric_ledger/fabric_ledger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/textile/report/fabric_ledger/fabric_ledger.html -------------------------------------------------------------------------------- /textile/textile/report/fabric_ledger/fabric_ledger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/textile/report/fabric_ledger/fabric_ledger.js -------------------------------------------------------------------------------- /textile/textile/report/fabric_ledger/fabric_ledger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/textile/report/fabric_ledger/fabric_ledger.json -------------------------------------------------------------------------------- /textile/textile/report/fabric_ledger/fabric_ledger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/textile/report/fabric_ledger/fabric_ledger.py -------------------------------------------------------------------------------- /textile/textile/report/fabric_packing_list/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textile/textile/report/fabric_packing_list/fabric_packing_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/textile/report/fabric_packing_list/fabric_packing_list.html -------------------------------------------------------------------------------- /textile/textile/report/fabric_packing_list/fabric_packing_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/textile/report/fabric_packing_list/fabric_packing_list.js -------------------------------------------------------------------------------- /textile/textile/report/fabric_packing_list/fabric_packing_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/textile/report/fabric_packing_list/fabric_packing_list.json -------------------------------------------------------------------------------- /textile/textile/report/fabric_packing_list/fabric_packing_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/textile/report/fabric_packing_list/fabric_packing_list.py -------------------------------------------------------------------------------- /textile/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaLogicTech/textile/HEAD/textile/utils.py -------------------------------------------------------------------------------- /textile/www/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------