コード例 #1
0
    def all_reimbursements(self, employee_id):

        self.proj_one_log("Attempting to get all reimbursements...")

        sql = "select * from reimbursements where employee_id = %s"

        if employee_id == -1:
            sql = "select * from reimbursements"
            cursor = connection.cursor()
            cursor.execute(sql)
        else:
            cursor = connection.cursor()
            cursor.execute(sql, [
                employee_id
            ])

        records = cursor.fetchall()
        reimbursement_list = []

        for record in records:

            reimbursement = Reimbursement(
                record[0], record[1], record[2], float(str(record[3])),
                record[4], record[5], record[6], record[7],
                record[8], record[9]
            )
            reimbursement_list.append(reimbursement.json())

        if records:
            return reimbursement_list
        else:
            raise ResourceNotFound("Employee or reimbursement(s) not found.")
コード例 #2
0
    def create_reimbursement(self, new_rbmt):

        self.proj_one_log("Attempting to create reimbursement...")

        sql = "insert into reimbursements values (" + \
              "DEFAULT, %s, %s, %s, %s, %s, %s, " + \
              "%s, %s, %s) returning *"  # Last 3 values are dates.

        cursor = connection.cursor()
        cursor.execute(sql, [
            new_rbmt.employee_id,
            new_rbmt.class_type,
            new_rbmt.funds,
            new_rbmt.approval_stage,
            new_rbmt.stage_reason,
            new_rbmt.grade_or_presentation,
            new_rbmt.date_of_last_escalation,
            new_rbmt.date_requested,
            new_rbmt.date_starting
        ])

        connection.commit()
        record = cursor.fetchone()

        return Reimbursement(
            record[0], record[1], record[2], float(str(record[3])),
            record[4], record[5], record[6], record[7],
            record[8], record[9]
        )
コード例 #3
0
    def get_employee(self, employee_id):

        self.proj_one_log("Attempting to get employee...")

        sql = "select * from employees where id = %s"

        cursor = connection.cursor()
        cursor.execute(sql, [int(employee_id)])

        record = cursor.fetchone()

        if record:
            return Employee(record[0], record[1], record[2], record[3],
                            record[4], record[5], record[6])
        else:
            raise ResourceNotFound("Employee not found.")
コード例 #4
0
    def create_employee(self, new_hire):

        self.proj_one_log("Attempting to create employee...")

        sql = "insert into employees values (" + \
              "DEFAULT, %s, %s, %s, %s, %s, %s) returning *"

        cursor = connection.cursor()
        cursor.execute(sql, [
            new_hire.supervisor_id, new_hire.job, new_hire.name,
            new_hire.password, new_hire.email, new_hire.phone
        ])

        connection.commit()
        record = cursor.fetchone()

        return Employee(record[0], record[1], record[2], record[3], record[4],
                        record[5], record[6])
コード例 #5
0
    def all_employees(self):

        self.proj_one_log("Attempting to get all employees...")

        sql = "select * from employees"

        cursor = connection.cursor()
        cursor.execute(sql)

        records = cursor.fetchall()
        employee_list = []

        for record in records:

            employee = Employee(record[0], record[1], record[2], record[3],
                                record[4], record[5], record[6])
            employee_list.append(employee.json())

        return employee_list
コード例 #6
0
    def get_reimbursement(self, employee_id, reimbursement_id):

        self.proj_one_log("Attempting to get reimbursement...")

        sql = "select * from reimbursements where employee_id = %s and id = %s"

        cursor = connection.cursor()
        cursor.execute(sql, [
            employee_id, reimbursement_id
        ])

        record = cursor.fetchone()

        if record:
            return Reimbursement(
                record[0], record[1], record[2], float(str(record[3])),
                record[4], record[5], record[6], record[7],
                record[8], record[9]
            )
        else:
            raise ResourceNotFound("Reimbursement not found.")
コード例 #7
0
    def update_reimbursement(self, rmbt):

        self.proj_one_log("Attempting to update reimbursement...")

        sql = "update reimbursements set     " + \
              "class_type              = %s, " + \
              "funds                   = %s, " + \
              "approval_stage          = %s, " + \
              "stage_reason            = %s, " + \
              "grade_or_presentation   = %s, " + \
              "date_of_last_escalation = %s, " + \
              "date_requested          = %s, " + \
              "date_starting           = %s  " + \
              "where id = %s returning *"

        cursor = connection.cursor()
        cursor.execute(sql, [
            rmbt.class_type,
            rmbt.funds,
            rmbt.approval_stage,
            rmbt.stage_reason,
            rmbt.grade_or_presentation,
            rmbt.date_of_last_escalation,
            rmbt.date_requested,
            rmbt.date_starting,
            rmbt.id
        ])

        connection.commit()
        record = cursor.fetchone()

        if record:
            return Reimbursement(
                record[0], record[1], record[2], float(str(record[3])),
                record[4], record[5], record[6], record[7],
                record[8], record[9]
            )
        else:
            raise ResourceNotFound("Reimbursement not found.")
def initialize_data():
    sql = """
    drop
    table if exists
    reimbursements;
    drop
    table if exists
    employees;
    
    CREATE
    TABLE
    employees
    (
        id            bigserial PRIMARY KEY,
    supervisor_id bigserial,
    job           varchar(100),
    name
    varchar(50),
    password
    varchar(15),
    email
    varchar(255),
    phone
    varchar(20)
    );
    
    
    CREATE
    TABLE
    reimbursements
    (
        id             bigserial PRIMARY KEY,
    employee_id    bigserial REFERENCES employees(id)
    ON
    DELETE
    SET
    NULL,
    class_type
    varchar(100),
    funds
    numeric(10, 2)
    CHECK(funds >= 0),
    approval_stage
    int,
    stage_reason
    varchar(500),
    
    grade_or_presentation
    varchar(2000),
    date_of_last_escalation
    bigint,
    date_requested
    bigint,
    date_starting
    bigint
    );
    
    insert
    into
    employees
    values
    (
        default,
        -1,
        'Benefits Coordinator',
        'Kevin',
        'q',
        'none',
        '555-555-5555'
    );
    
    insert
    into
    employees
    values
    (
        default,
        -1,
        'Dept. Head',
        'John',
        'q',
        'none',
        '555-555-5555'
    );
    
    insert
    into
    employees
    values
    (
        default,
        2,
        'Supervisor',
        'Fred',
        'q',
        'none',
        '555-555-5555'
    );
    
    insert
    into
    employees
    values
    (
        default,
        3,
        'Peon',
        'Barbra',
        'q',
        'none',
        '555-555-5555'
    );
    
    
    
    
    insert
    into
    reimbursements
    values
    (
        default,
        4,
        'University Course',
        1000.00,
        3,
        '3 (Req. by Barbra):(br)Necessary for latest assignment.(br)(br)Prior approval history unknown!',
        'youtube.com/Python+Presentation', -- url to unlisted YT video?
    20210101,
    20210101,
    20210101
    );
    
    """

    cursor = connection.cursor()
    cursor.execute(sql)
    connection.commit()
コード例 #9
0
    def rmbts_req_user_attn(self, user_id):

        self.proj_one_log("Getting user's pos. in company hierarchy...")

        boss_chain_length = 0
        employee_id = user_id

        while employee_id != -1:
            sql = "select supervisor_id from employees where id = %s"
            cursor = connection.cursor()
            cursor.execute(sql, [
                int(employee_id)
            ])
            record = cursor.fetchone()

            employee_id = record[0]
            if employee_id != -1:
                boss_chain_length += 1

    # # Boss chain length acquired: 0 = Dept. Head, 1 = Supervisor, 2 = Peon """

        self.proj_one_log("Getting all of user's underlings...")

        underlings = []
        underling_search_count = 0

        while underling_search_count < 2 - boss_chain_length:
            sql = "select id from employees where supervisor_id = %s"
            if underling_search_count > 0:
                sql = "select id from employees where not supervisor_id = %s "
                for underling in underlings:
                    sql += "and supervisor_id = " + str(int(underling))

            cursor = connection.cursor()
            cursor.execute(sql, [
                int(user_id)
            ])

            records = cursor.fetchall()
            for record in records:
                underlings.append(record[0])

            underling_search_count += 1

    # # All of user's underlings acquired.

        self.proj_one_log("Getting reimbursements req. user's attention...")

        rmbts_req_attn = []

        for underling in underlings:

            sql = "select * from reimbursements where " + \
                  "employee_id = %s and " + \
                  "approval_stage = %s"
            cursor = connection.cursor()
            cursor.execute(sql, [
                int(underling), int(3 - boss_chain_length)
            ])

            records = cursor.fetchall()
            for record in records:
                rmbt = Reimbursement(
                    record[0], record[1], record[2], float(str(record[3])),
                    record[4], record[5], record[6], record[7],
                    record[8], record[9]
                )
                rmbts_req_attn.append(rmbt.json())

        return rmbts_req_attn