R/mod_POS_Inventory.R

Defines functions mod_POS_Inventory_server mod_POS_Inventory_ui

#' POS_Inventory UI Function
#'
#' @description A shiny Module.
#'
#' @param id,input,output,session Internal parameters for {shiny}.
#'
#' @noRd 
#'
#' @importFrom shiny NS tagList 
mod_POS_Inventory_ui <- function(id){
  ns <- NS(id)
  #tagList(
    div(id = "pos_div",
        paste("This will have a point of inventory feature"))
 # )
}
    
#' POS_Inventory Server Functions
#'
#' @noRd 
mod_POS_Inventory_server <- function(id){
  moduleServer( id, function(input, output, session){
    ns <- session$ns
 
  })
}
    
## To be copied in the UI
# mod_POS_Inventory_ui("POS_Inventory_ui_1")
    
## To be copied in the server
# mod_POS_Inventory_server("POS_Inventory_ui_1")
Aaytee32/OrximTechPMS documentation built on Jan. 10, 2022, 12:32 a.m.