enoyer la notification à la demande de devis
* blanc.png: * logo-white.png: * musician-923526_1280.jpg: * musician-923526_1.nb.jpg: * musician-923526_1.nbb.jpg: * musician-923526_1280.s.jpg: * musician-923526_1.nbbi.jpg: * musician-923526_1.nb.xs.jpg: * live-concert-388160_1280.jpg: * musician-923526_1280.xxs.jpg: * musician-923526_1.nbb.xs.jpg: * musician-923526_1.nb.xxs.jpg: * musician-923526_1.nbbi.xs.jpg: * musician-923526_1.nbb.xxs.jpg: * musician-923526_1.nbbi.xxs.jpg: * live-concert-388160_1280.s.jpg: * live-concert-388160_1280.xxs.jpg: images * EventCirclesPub.cs: * BackOfficeController.cs: * FrontOfficeController.cs: * NominativeEventPub.cs: * BackOfficeController.cs: refabrication * Commande.cs: implémente une description pour toute commande, dans la classe concrete * SimpleBookingQuery.cs: la description d'une commande simple de rdv * GoogleHelpers.cs: implemente l'envoi d'une notification nominative (à un prestataire en particulier) * LocalizedText.resx: * LocalizedText.fr.resx: * LocalizedText.Designer.cs: * LocalizedText.fr.Designer.cs: traductions * WorkFlowManager.cs: envoie une notification à la demande de devis d'un client * YavscModel.csproj: notifications privée.
|
|
@ -43,7 +43,7 @@ namespace Yavsc.ApiControllers
|
|||
/// <param name="evpub">Evpub.</param>
|
||||
[Authorize(Roles="BackOffice")]
|
||||
[AcceptVerbs("POST")]
|
||||
public MessageWithPayloadResponse NotifyEvent(EventPub evpub) {
|
||||
public MessageWithPayloadResponse NotifyEvent(EventCirclesPub evpub) {
|
||||
return GoogleHelpers.NotifyEvent(evpub);
|
||||
}
|
||||
|
||||
|
|
|
|||
BIN
web/App_Themes/images/blanc.png
Normal file
|
After Width: | Height: | Size: 119 B |
BIN
web/App_Themes/images/live-concert-388160_1280.jpg
Normal file
|
After Width: | Height: | Size: 154 KiB |
BIN
web/App_Themes/images/live-concert-388160_1280.s.jpg
Normal file
|
After Width: | Height: | Size: 57 KiB |
BIN
web/App_Themes/images/live-concert-388160_1280.xxs.jpg
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
web/App_Themes/images/logo-white.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
web/App_Themes/images/musician-923526_1.nb.jpg
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
web/App_Themes/images/musician-923526_1.nb.xs.jpg
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
web/App_Themes/images/musician-923526_1.nb.xxs.jpg
Normal file
|
After Width: | Height: | Size: 5.2 KiB |
BIN
web/App_Themes/images/musician-923526_1.nbb.jpg
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
web/App_Themes/images/musician-923526_1.nbb.xs.jpg
Normal file
|
After Width: | Height: | Size: 5.4 KiB |
BIN
web/App_Themes/images/musician-923526_1.nbb.xxs.jpg
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
web/App_Themes/images/musician-923526_1.nbbi.jpg
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
web/App_Themes/images/musician-923526_1.nbbi.xs.jpg
Normal file
|
After Width: | Height: | Size: 7.8 KiB |
BIN
web/App_Themes/images/musician-923526_1.nbbi.xxs.jpg
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
web/App_Themes/images/musician-923526_1280.jpg
Normal file
|
After Width: | Height: | Size: 105 KiB |
BIN
web/App_Themes/images/musician-923526_1280.s.jpg
Normal file
|
After Width: | Height: | Size: 37 KiB |
BIN
web/App_Themes/images/musician-923526_1280.xxs.jpg
Normal file
|
After Width: | Height: | Size: 49 KiB |
|
|
@ -1,3 +1,27 @@
|
|||
2015-12-23 Paul Schneider <paul@pschneider.fr>
|
||||
|
||||
* blanc.png:
|
||||
* logo-white.png:
|
||||
* musician-923526_1280.jpg:
|
||||
* musician-923526_1.nb.jpg:
|
||||
* musician-923526_1.nbb.jpg:
|
||||
* musician-923526_1280.s.jpg:
|
||||
* musician-923526_1.nbbi.jpg:
|
||||
* musician-923526_1.nb.xs.jpg:
|
||||
* live-concert-388160_1280.jpg:
|
||||
* musician-923526_1280.xxs.jpg:
|
||||
* musician-923526_1.nbb.xs.jpg:
|
||||
* musician-923526_1.nb.xxs.jpg:
|
||||
* musician-923526_1.nbbi.xs.jpg:
|
||||
* musician-923526_1.nbb.xxs.jpg:
|
||||
* musician-923526_1.nbbi.xxs.jpg:
|
||||
* live-concert-388160_1280.s.jpg:
|
||||
* live-concert-388160_1280.xxs.jpg:
|
||||
|
||||
* BackOfficeController.cs:
|
||||
* FrontOfficeController.cs:
|
||||
* BackOfficeController.cs: refabrication
|
||||
|
||||
2015-12-23 Paul Schneider <paul@pschneider.fr>
|
||||
|
||||
* AccountController.cs: implémente la methode de login de
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ namespace Yavsc.Controllers
|
|||
/// </summary>
|
||||
/// <returns>The event.</returns>
|
||||
/// <param name="evpub">Evpub.</param>
|
||||
public ActionResult NotifyEvent(EventPub evpub)
|
||||
public ActionResult NotifyEvent(EventCirclesPub evpub)
|
||||
{
|
||||
if (ModelState.IsValid) {
|
||||
ViewData ["NotifyEvent"] = evpub;
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ namespace Yavsc.Controllers
|
|||
/// </summary>
|
||||
/// <returns>The pub.</returns>
|
||||
/// <param name="model">Model.</param>
|
||||
public ActionResult EventPub (EventPub model)
|
||||
public ActionResult EventPub (EventCirclesPub model)
|
||||
{
|
||||
return View (model);
|
||||
}
|
||||
|
|
|
|||