+ Homparty Part 1

This commit is contained in:
Kevin Adametz 2020-10-16 16:18:00 +02:00
parent 74923859d1
commit 9252094a04
43 changed files with 2385 additions and 66 deletions

View file

@ -3,7 +3,7 @@
/**
* A helper file for Laravel, to provide autocomplete information to your IDE
* Generated for Laravel 6.18.14 on 2020-07-25 15:29:12.
* Generated for Laravel 6.18.14 on 2020-10-16 09:06:13.
*
* This file should not be included in your code, only analyzed by your IDE!
*
@ -17612,10 +17612,10 @@ namespace App\Services\Facade {
*
* @static
*/
public static function putShippingExtra($key, $value)
public static function putYardExtra($key, $value)
{
/** @var \App\Services\Yard $instance */
return $instance->putShippingExtra($key, $value);
return $instance->putYardExtra($key, $value);
}
/**
@ -17623,10 +17623,10 @@ namespace App\Services\Facade {
*
* @static
*/
public static function getShippingExtra($key)
public static function getYardExtra($key)
{
/** @var \App\Services\Yard $instance */
return $instance->getShippingExtra($key);
return $instance->getYardExtra($key);
}
/**
@ -17689,10 +17689,10 @@ namespace App\Services\Facade {
*
* @static
*/
public static function setShippingCountryWithPrice($shipping_country_id)
public static function setShippingCountryWithPrice($shipping_country_id, $shipping_is_for = 'ot')
{
/** @var \App\Services\Yard $instance */
return $instance->setShippingCountryWithPrice($shipping_country_id);
return $instance->setShippingCountryWithPrice($shipping_country_id, $shipping_is_for);
}
/**
@ -17710,6 +17710,17 @@ namespace App\Services\Facade {
return $instance->shipping($decimals, $decimalPoint, $thousandSeperator);
}
/**
*
*
* @static
*/
public static function shippingNet($decimals = null, $decimalPoint = null, $thousandSeperator = null)
{
/** @var \App\Services\Yard $instance */
return $instance->shippingNet($decimals, $decimalPoint, $thousandSeperator);
}
/**
*
*
@ -17758,6 +17769,28 @@ namespace App\Services\Facade {
return $instance->weight($decimals, $decimalPoint, $thousandSeperator);
}
/**
*
*
* @static
*/
public static function points()
{
/** @var \App\Services\Yard $instance */
return $instance->points();
}
/**
*
*
* @static
*/
public static function compCount()
{
/** @var \App\Services\Yard $instance */
return $instance->compCount();
}
/**
* Get the total price of the items in the cart.
*
@ -17803,6 +17836,28 @@ namespace App\Services\Facade {
return $instance->subtotal($decimals, $decimalPoint, $thousandSeperator);
}
/**
*
*
* @static
*/
public static function getCartItemByProduct($product_id, $set_price = 'with')
{
/** @var \App\Services\Yard $instance */
return $instance->getCartItemByProduct($product_id, $set_price);
}
/**
*
*
* @static
*/
public static function getCartItem($id, $name = null, $qty = null, $price = null, $options = [])
{
/** @var \App\Services\Yard $instance */
return $instance->getCartItem($id, $name, $qty, $price, $options);
}
/**
*
*
@ -17814,6 +17869,61 @@ namespace App\Services\Facade {
return $instance->destroy();
}
/**
*
*
* @static
*/
public static function rowPriceNet($row, $decimals = null, $decimalPoint = null, $thousandSeperator = null)
{
/** @var \App\Services\Yard $instance */
return $instance->rowPriceNet($row, $decimals, $decimalPoint, $thousandSeperator);
}
/**
*
*
* @static
*/
public static function rowSubtotalNet($row, $decimals = null, $decimalPoint = null, $thousandSeperator = null)
{
/** @var \App\Services\Yard $instance */
return $instance->rowSubtotalNet($row, $decimals, $decimalPoint, $thousandSeperator);
}
/**
*
*
* @static
*/
public static function getNumComp()
{
/** @var \App\Services\Yard $instance */
return $instance->getNumComp();
}
/**
*
*
* @static
*/
public static function getCompProductBy($comp, $product_id = false)
{
/** @var \App\Services\Yard $instance */
return $instance->getCompProductBy($comp, $product_id);
}
/**
*
*
* @static
*/
public static function getContentByOrder()
{
/** @var \App\Services\Yard $instance */
return $instance->getContentByOrder();
}
/**
* Set the current cart instance.
*