コード例 #1
0
ファイル: inventory.py プロジェクト: faragoBence/ERP-Project
def remove(table, id_):
    """
    Remove a record with a given id from the table.

    Args:
        table: table to remove a record from
        id_ (str): id of a record to be removed

    Returns:
        Table without specified record.
    """
    return common.common_remove(table, id_)
コード例 #2
0
def remove(table, id_):
    return common.common_remove(table, id_, "accounting/items.csv")
コード例 #3
0
def remove(table, id_):
    return common.common_remove(table, id_)
コード例 #4
0
def remove(table, id_):
    return common.common_remove(table, id_, "inventory/inventory.csv")
コード例 #5
0
def remove(table, id_):
    return common.common_remove(table, id_, "store/games.csv")
コード例 #6
0
def remove(table, id_):
    return common.common_remove(table, id_, "hr/persons.csv")
コード例 #7
0
def remove(table, id_):
    return common.common_remove(table, id_, "crm/customers.csv")
コード例 #8
0
def remove(table, id_):
    return common.common_remove(table, id_, "sales/sales.csv")