├── .github
└── FUNDING.yml
├── README.md
├── composer.json
├── etc
└── module.xml
├── registration.php
├── screenshot
└── order-status.png
└── view
└── adminhtml
├── layout
└── sales_order_index.xml
├── ui_component
└── sales_order_grid.xml
└── web
├── css
└── source
│ ├── _colors.less
│ └── _module.less
├── js
└── grid
│ └── columns
│ └── select.js
└── template
└── ui
└── grid
└── cells
└── text.html
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | github: [mateussantin]
2 | custom: ["https://nubank.com.br/pagar/1bxwx1/KrTCm3JrIA"]
3 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Magento 2 Admin Order Status Color
2 | Changes the color of the order status column in the UI grid, based on the current status of the order.
3 |
4 | ## Spontaneous Contribution
5 | If you want to send me a contribution of any amount so that I can continue developing and finding other solutions that make your life easier like this one, I will be very grateful, the link is next to the profile or you can click here Thanks!
6 |
7 | ## Introduction to installation:
8 |
9 | ### How to install
10 |
11 | ```
12 | composer require mateus/module-orderstatuscolor
13 | (alternative) composer require mateus/module-orderstatuscolor:dev-master
14 | php bin/magento module:enable Mateus_OrderStatusColor
15 | php bin/magento setup:upgrade
16 | ```
17 |
18 | ## Screenshot
19 | 
20 |
--------------------------------------------------------------------------------
/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "mateus/module-orderstatuscolor",
3 | "description": "Changes the color of the order status column in the UI grid, based on the current status of the order.",
4 | "license": "proprietary",
5 | "version": "2.0.0",
6 | "type": "magento2-module",
7 | "keywords": [
8 | "mateussantin",
9 | "magento2",
10 | "Order",
11 | "Order Status",
12 | "Order Status Color"
13 | ],
14 | "authors": [
15 | {
16 | "name": "Mateus Santin",
17 | "email": "mateussantin.jr@gmail.com"
18 | }
19 | ],
20 | "homepage": "https://github.com/mateussantin/magento2-admin-order-status-color",
21 | "require": {
22 | "php": ">=7.4"
23 | },
24 | "minimum-stability": "stable",
25 | "repositories": [
26 | {
27 | "type": "composer",
28 | "url": "https://repo.magento.com/"
29 | }
30 | ],
31 | "autoload": {
32 | "psr-4": {
33 | "Mateus\\OrderStatusColor\\": ""
34 | },
35 | "files": [
36 | "registration.php"
37 | ]
38 | }
39 | }
40 |
--------------------------------------------------------------------------------
/etc/module.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |