Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

# -*- coding: utf-8 -*- 

# Copyright: (c) 2021, XLAB Steampunk <steampunk@xlab.si> 

# 

# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) 

 

from __future__ import absolute_import, division, print_function 

 

__metaclass__ = type 

 

 

PAYLOAD_FIELDS_MAPPING = dict( 

type=[("rca", "root_cause_analysis"), ("general", "general")], 

state=[ 

("151", "new"), 

("152", "assess"), 

("154", "work_in_progress"), 

("157", "closed"), 

], 

priority=[ 

("1", "critical"), 

("2", "high"), 

("3", "moderate"), 

("4", "low"), 

("5", "planning"), 

], 

)