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
| 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 |