R/inventory_printer.R

Defines functions inv_PrintInventory

Documented in inv_PrintInventory

#' Inventory Printer Function
#'
#' @description Function to print a copy of the inventory in a nice tibble
#'   format.
#'
#' @param .inventory
#'
#' @return
#' @export
#'
#' @examples
inv_PrintInventory <- function(.inventory = inv_ConnectInventory()){
        test_inventory %>%
                inv_ConvertFromYAML() %>%
                .[["basic"]] %>%
                tibble::as_tibble()
}
JDOsborne1/inventoRy documentation built on May 6, 2020, 9:29 a.m.