├── Api ├── AttachmentRepositoryInterface.php └── Data │ ├── AttachmentInterface.php │ └── AttachmentSearchResultsInterface.php ├── Block ├── Account │ └── Order │ │ └── Attachments.php ├── Adminhtml │ └── Order │ │ └── View │ │ └── Tab │ │ └── Attachments.php ├── Checkout │ └── LayoutProcessor.php └── Email │ └── Attachments.php ├── Controller ├── Adminhtml │ └── Attachment │ │ ├── Delete.php │ │ ├── Index.php │ │ ├── Preview.php │ │ ├── Update.php │ │ └── Upload.php ├── Attachment │ ├── Delete.php │ ├── Preview.php │ ├── Update.php │ └── Upload.php └── View │ └── Attachment.php ├── Helper ├── Attachment.php ├── Data.php └── Upload.php ├── Model ├── Attachment.php ├── AttachmentConfigProvider.php ├── AttachmentRepository.php ├── Config │ └── Source │ │ └── AttachmentDisplayOptions.php └── ResourceModel │ ├── Attachment.php │ └── Attachment │ ├── Collection.php │ └── Grid │ └── Collection.php ├── Observer └── AttachmentOrderAfterPlaceObserver.php ├── README.md ├── Setup └── InstallSchema.php ├── composer.json ├── etc ├── acl.xml ├── adminhtml │ ├── routes.xml │ └── system.xml ├── config.xml ├── di.xml ├── events.xml ├── frontend │ ├── di.xml │ └── routes.xml └── module.xml ├── registration.php └── view ├── adminhtml ├── layout │ └── sales_order_view.xml ├── requirejs-config.js └── templates │ └── order │ └── view │ └── tab │ └── attachments.phtml ├── base └── web │ ├── css │ └── orderattachment.css │ ├── images │ ├── attach-delete.png │ ├── attach-downloads.png │ └── attachment.png │ ├── js │ └── attachment.js │ └── template │ └── attachment-markup.html └── frontend ├── layout ├── checkout_index_index.xml ├── orderattachment_view_attachment.xml └── sales_order_info_links.xml ├── requirejs-config.js ├── templates ├── account │ └── order │ │ └── attachments.phtml └── email │ └── order │ └── attachments.phtml └── web ├── js └── view │ └── order │ ├── payment │ └── payment-attachment.js │ └── shipment │ └── shipment-attachment.js └── template └── order ├── payment └── attachment-markup.html └── shipment └── attachment-markup.html /Api/AttachmentRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/Api/AttachmentRepositoryInterface.php -------------------------------------------------------------------------------- /Api/Data/AttachmentInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/Api/Data/AttachmentInterface.php -------------------------------------------------------------------------------- /Api/Data/AttachmentSearchResultsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/Api/Data/AttachmentSearchResultsInterface.php -------------------------------------------------------------------------------- /Block/Account/Order/Attachments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/Block/Account/Order/Attachments.php -------------------------------------------------------------------------------- /Block/Adminhtml/Order/View/Tab/Attachments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/Block/Adminhtml/Order/View/Tab/Attachments.php -------------------------------------------------------------------------------- /Block/Checkout/LayoutProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/Block/Checkout/LayoutProcessor.php -------------------------------------------------------------------------------- /Block/Email/Attachments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/Block/Email/Attachments.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Attachment/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/Controller/Adminhtml/Attachment/Delete.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Attachment/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/Controller/Adminhtml/Attachment/Index.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Attachment/Preview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/Controller/Adminhtml/Attachment/Preview.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Attachment/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/Controller/Adminhtml/Attachment/Update.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Attachment/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/Controller/Adminhtml/Attachment/Upload.php -------------------------------------------------------------------------------- /Controller/Attachment/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/Controller/Attachment/Delete.php -------------------------------------------------------------------------------- /Controller/Attachment/Preview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/Controller/Attachment/Preview.php -------------------------------------------------------------------------------- /Controller/Attachment/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/Controller/Attachment/Update.php -------------------------------------------------------------------------------- /Controller/Attachment/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/Controller/Attachment/Upload.php -------------------------------------------------------------------------------- /Controller/View/Attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/Controller/View/Attachment.php -------------------------------------------------------------------------------- /Helper/Attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/Helper/Attachment.php -------------------------------------------------------------------------------- /Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/Helper/Data.php -------------------------------------------------------------------------------- /Helper/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/Helper/Upload.php -------------------------------------------------------------------------------- /Model/Attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/Model/Attachment.php -------------------------------------------------------------------------------- /Model/AttachmentConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/Model/AttachmentConfigProvider.php -------------------------------------------------------------------------------- /Model/AttachmentRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/Model/AttachmentRepository.php -------------------------------------------------------------------------------- /Model/Config/Source/AttachmentDisplayOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/Model/Config/Source/AttachmentDisplayOptions.php -------------------------------------------------------------------------------- /Model/ResourceModel/Attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/Model/ResourceModel/Attachment.php -------------------------------------------------------------------------------- /Model/ResourceModel/Attachment/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/Model/ResourceModel/Attachment/Collection.php -------------------------------------------------------------------------------- /Model/ResourceModel/Attachment/Grid/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/Model/ResourceModel/Attachment/Grid/Collection.php -------------------------------------------------------------------------------- /Observer/AttachmentOrderAfterPlaceObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/Observer/AttachmentOrderAfterPlaceObserver.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/README.md -------------------------------------------------------------------------------- /Setup/InstallSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/Setup/InstallSchema.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/composer.json -------------------------------------------------------------------------------- /etc/acl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/etc/acl.xml -------------------------------------------------------------------------------- /etc/adminhtml/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/etc/adminhtml/routes.xml -------------------------------------------------------------------------------- /etc/adminhtml/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/etc/adminhtml/system.xml -------------------------------------------------------------------------------- /etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/etc/config.xml -------------------------------------------------------------------------------- /etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/etc/di.xml -------------------------------------------------------------------------------- /etc/events.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/etc/events.xml -------------------------------------------------------------------------------- /etc/frontend/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/etc/frontend/di.xml -------------------------------------------------------------------------------- /etc/frontend/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/etc/frontend/routes.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/etc/module.xml -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/registration.php -------------------------------------------------------------------------------- /view/adminhtml/layout/sales_order_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/view/adminhtml/layout/sales_order_view.xml -------------------------------------------------------------------------------- /view/adminhtml/requirejs-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/view/adminhtml/requirejs-config.js -------------------------------------------------------------------------------- /view/adminhtml/templates/order/view/tab/attachments.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/view/adminhtml/templates/order/view/tab/attachments.phtml -------------------------------------------------------------------------------- /view/base/web/css/orderattachment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/view/base/web/css/orderattachment.css -------------------------------------------------------------------------------- /view/base/web/images/attach-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/view/base/web/images/attach-delete.png -------------------------------------------------------------------------------- /view/base/web/images/attach-downloads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/view/base/web/images/attach-downloads.png -------------------------------------------------------------------------------- /view/base/web/images/attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/view/base/web/images/attachment.png -------------------------------------------------------------------------------- /view/base/web/js/attachment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/view/base/web/js/attachment.js -------------------------------------------------------------------------------- /view/base/web/template/attachment-markup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/view/base/web/template/attachment-markup.html -------------------------------------------------------------------------------- /view/frontend/layout/checkout_index_index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/view/frontend/layout/checkout_index_index.xml -------------------------------------------------------------------------------- /view/frontend/layout/orderattachment_view_attachment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/view/frontend/layout/orderattachment_view_attachment.xml -------------------------------------------------------------------------------- /view/frontend/layout/sales_order_info_links.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/view/frontend/layout/sales_order_info_links.xml -------------------------------------------------------------------------------- /view/frontend/requirejs-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/view/frontend/requirejs-config.js -------------------------------------------------------------------------------- /view/frontend/templates/account/order/attachments.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/view/frontend/templates/account/order/attachments.phtml -------------------------------------------------------------------------------- /view/frontend/templates/email/order/attachments.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/view/frontend/templates/email/order/attachments.phtml -------------------------------------------------------------------------------- /view/frontend/web/js/view/order/payment/payment-attachment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/view/frontend/web/js/view/order/payment/payment-attachment.js -------------------------------------------------------------------------------- /view/frontend/web/js/view/order/shipment/shipment-attachment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/view/frontend/web/js/view/order/shipment/shipment-attachment.js -------------------------------------------------------------------------------- /view/frontend/web/template/order/payment/attachment-markup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/view/frontend/web/template/order/payment/attachment-markup.html -------------------------------------------------------------------------------- /view/frontend/web/template/order/shipment/attachment-markup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mageprakash/OrderAttachment/HEAD/view/frontend/web/template/order/shipment/attachment-markup.html --------------------------------------------------------------------------------