Search the Community
Showing results for tags 'reservations'.
-
Bonjour à tous, Depuis quelques temps je développe un site qui permet de vendre différents produits. Mais je m’intéresse à un produit en particulier qui est un produit louable. J'ai donc trouvé un module appelé "Réservation - Gestion des stocks par date " qui permet de mettre un calendrier et choisir une date d'entrée et de sorti. Cependant lorsque je clique sur ajouter au panier, il me marque "quantité épuisée". J'ai beau ajouté des quantités, modifier TOUS les paramètres possible et inimaginable du module mais rien n'y fait. J'ai contacté le développeur mais je ne peux pas compter sur lui... La seule chose qui me répond c'est "demander un remboursement".. Je suis étonné du peu de sérieux de certains développeurs, bref. J'ai tout essayé, j'espère trouver la solution avec vous. Demandez moi ce que vous avez besoin pour identifier le problème, merci d'avance.
- 1 reply
-
- stock
- gestion de stock
-
(and 5 more)
Tagged with:
-
Bonjour, je voudrais savoir si vous avez connaissance d'un module permettant a un produit (ex: 2 jours d'équitation, ou 1 nuit en chambre d'hôte etc), d'avoir des prix différents suivant la date de réservation. Avec un calendrier a disposition du client pour la réservation du "séjour", et suivant la date choisit, le prix est modifié. Avec une gestion du stock en fonction des dates. Ex : 1 nuit en chambre d'hôte complet du 11 au 20/01/2016 mais libre du 25 au 27/01/2016. Merci pour vos réponses Cordialement
-
Im working on booking site using prestashop 1.6.1.1 It has 4 age prices (adult, senior, kid, infant) and other expences - as seen in picture In table cart_product and cart.php there are 'quantity', 'quantity_adult', 'quantity_senior', 'quantity_kid', 'quantity_infant', 'quantity_other' // Build query $sql = new DbQuery(); // Build SELECT $sql->select('cp.`id_product_attribute`, cp.`id_product`, cp.`quantity` AS cart_quantity, cp.`quantity_adult`,cp.`quantity_senior`, cp.`quantity_kid`, cp.`quantity_infant`, cp.`quantity_other`, .... In front office and cartcontroller.php qty, qty_adult, qty_senior, qty_kid qty_infant, qty_other. $this->qty = abs(Tools::getValue('qty_adult', 1)); is changed to $this->qty_adult =abs(Tools::getValue('qty_adult',1)); $this->qty_senior =abs(Tools::getValue('qty_senior',1)); $this->qty_kid =abs(Tools::getValue('qty_kid',1)); $this->qty_infant =abs(Tools::getValue('qty_infant',1)); $this->qty_other =abs(Tools::getValue('qty_other',1)); $this->qty = $this->qty_adult + $this->qty_senior + $this->qty_kid + $this->qty_infant; quantity should be adult+senior+kid+infant, quantity-other should be independent and can be ordered as many as wished as long there is at least one adult or senior, just like there needs to be at least one senior or adult to have kids or infants. at the moment when saved it saves / adds to cart minimum quantity, nothing in error report and cant be deleted, it should save all quantities and person booking quantities, all quantities need to be saved in one booking not each individually. combinations and attributes can not be used can someone help with at least in which files which functions need to be changed to do this? if possible then for checkout too
-
- multiple prices
- no attributes
-
(and 4 more)
Tagged with:
-
I have been working on a calendar system to offer customers rentals of gear and to offer classes for various things and wanted to share my partially integrated solution. The "Calendar" picture is the basic calendar when mouse over calendar displays current options for that day. Once a customer has selected a day the "rentals" picture displays what options we are offering for customers to make reservations for. The "reservations" picture then shows the booking form for what the customer has selected to make reservations for. Originally I wanted to try and make a module for this system but need a little help with aspects of it, if anyone is interested please contact me. The script uses .PHP and also uses a database. Thanks