PluginProbe
Discount Rules for WooCommerce – Disco | Dynamic Pricing, Conditions, Bulk, Bundle, BOGO / 1.4.14
Discount Rules for WooCommerce – Disco | Dynamic Pricing, Conditions, Bulk, Bundle, BOGO v1.4.14
1.4.14 1.4.13 1.4.12 1.4.11 1.4.10 1.4.9 1.4.8 1.4.7 1.4.6 1.4.5 1.4.4 1.4.3 1.4.2 1.4.1 1.4.0 1.3.54 1.3.53 1.3.52 1.3.51 1.3.50 1.3.49 1.3.48 1.3.47 1.3.46 1.3.45 All 177 releases
disco / backend / views / components / Main / data / purchaseStatus.js

purchaseStatus.js in Discount Rules for WooCommerce – Disco | Dynamic Pricing, Conditions, Bulk, Bundle, BOGO 1.4.14, at backend/views/components/Main/data/purchaseStatus.js

45 lines 542 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 const purchaseStatus = [
2 {
3 id: 1,
4 status: 'pending_payment',
5 title: 'Pending Payment',
6 },
7 {
8 id: 2,
9 status: 'processing',
10 title: 'Processing',
11 },
12 {
13 id: 3,
14 status: 'on_hold',
15 title: 'On Hold',
16 },
17 {
18 id: 4,
19 status: 'completed',
20 title: 'Completed',
21 },
22 {
23 id: 5,
24 status: 'cancelled',
25 title: 'Cancelled',
26 },
27 {
28 id: 6,
29 status: 'refunded',
30 title: 'Refunded',
31 },
32 {
33 id: 7,
34 status: 'failed',
35 title: 'Failed',
36 },
37 {
38 id: 8,
39 status: 'draft',
40 title: 'Draft',
41 },
42 ];
43
44 export default purchaseStatus;
45