Ejemplo n.º 1
0
        /*	Is Product Stocked
         *  @param ctx context
         *	@param M_Product_ID id
         *	@return true if found and stocked - false otherwise
         */
        public static bool IsProductStocked(Ctx ctx, int M_Product_ID)
        {
            MProduct product = Get(ctx, M_Product_ID);

            return(product.IsStocked());
        }