@@ -80,6 +80,8 @@ class OrderController extends AdminController | |||
public function updateEntity($entity) | |||
{ | |||
//SI PAS DE problème après le 23/05/2021 à supprimer | |||
die('Une erreur est survenue, merci de contacter FAB : Erreur ligne 80 LC =>OrderController '); | |||
foreach ($entity->getOrderProducts() as $orderProduct) { | |||
//dump($orderProduct); | |||
$orderProduct->setCreatedBy($this->getUser()); | |||
@@ -408,7 +410,7 @@ class OrderController extends AdminController | |||
$this->em->persist($orderShop); | |||
$this->em->flush(); | |||
$this->mailUtils->send([ | |||
MailUtils::SUBJECT => 'Régler votre commande', | |||
MailUtils::SUBJECT => 'Réglement de votre commande', | |||
MailUtils::TO_EMAIL => $orderShop->getUser()->getEmail(), | |||
MailUtils::TO_NAME => $orderShop->getUser()->getName(), | |||
MailUtils::CONTENT_TEMPLATE => 'mail/order-payment-link', | |||
@@ -467,6 +469,7 @@ class OrderController extends AdminController | |||
case OrderStatus::ALIAS_PAID_BY_CREDIT : | |||
case OrderStatus::ALIAS_PAID_ONLINE : | |||
case OrderStatus::ALIAS_WAITING_DELIVERY : | |||
case OrderStatus::ALIAS_WAITING_BANK_RETURN : | |||
$parameters['form_order_payment'] = $this->createCustomForm(OrderPaymentType::class, 'orderPayment', $parameters, false)->createView(); | |||
$parameters['form_order_status'] = $this->createCustomForm(OrderStatusType::class, 'orderStatus', $parameters)->createView(); | |||
$parameters['form_delete_order_payment'] = $this->createCustomForm(DeleteOrderPaymentType::class, 'deleteOrderPayment', $parameters)->createView(); |
@@ -7,6 +7,7 @@ use Lc\ShopBundle\Context\MerchantConfigInterface; | |||
use Symfony\Component\Form\Extension\Core\Type\ChoiceType; | |||
use Symfony\Component\Form\Extension\Core\Type\DateType; | |||
use Symfony\Component\Form\Extension\Core\Type\HiddenType; | |||
use Symfony\Component\Form\Extension\Core\Type\TextareaType; | |||
use Symfony\Component\Form\Extension\Core\Type\TextType; | |||
use Doctrine\ORM\EntityManagerInterface; | |||
use Symfony\Component\Form\AbstractType; | |||
@@ -55,6 +56,11 @@ class MerchantConfigType extends AbstractType | |||
'label' => $merchantConfig->getLabel(), | |||
]); | |||
} | |||
elseif($merchantConfig->getFieldType() == 'textarea') { | |||
$form->add('value', TextareaType::class, [ | |||
'label' => $merchantConfig->getLabel(), | |||
]); | |||
} | |||
else { | |||
if($merchantConfig->getOption()) { | |||
$form->add('value', TextType::class, [ |
@@ -2,13 +2,14 @@ | |||
namespace Lc\ShopBundle\Model; | |||
use App\Entity\OrderStatus; | |||
use Doctrine\Common\Collections\ArrayCollection; | |||
use Doctrine\Common\Collections\Collection; | |||
use Gedmo\Mapping\Annotation as Gedmo; | |||
use Doctrine\ORM\Mapping as ORM; | |||
use Lc\ShopBundle\Context\DocumentInterface; | |||
use Lc\ShopBundle\Context\FilterMerchantInterface; | |||
use Lc\ShopBundle\Services\Order\OrderUtils; | |||
use Lc\ShopBundle\Model\OrderStatus ; | |||
/** | |||
* @ORM\MappedSuperclass() | |||
@@ -157,7 +158,7 @@ abstract class OrderShop extends AbstractEntity implements FilterMerchantInterfa | |||
public function getDateCreated() | |||
{ | |||
$orderStatusHistory = $this->getOrderStatusHistory('new'); | |||
$orderStatusHistory = $this->getOrderStatusHistory(OrderStatus::ALIAS_WAITING_DELIVERY); | |||
if ($orderStatusHistory) { | |||
return $orderStatusHistory->getCreatedAt(); | |||
} | |||
@@ -513,6 +514,16 @@ abstract class OrderShop extends AbstractEntity implements FilterMerchantInterfa | |||
return $this; | |||
} | |||
public function getDocumentInvoice(): Document | |||
{ | |||
foreach($this->getDocuments() as $document) { | |||
if($document->getType() == Document::TYPE_INVOICE) { | |||
return $document ; | |||
} | |||
} | |||
return false ; | |||
} | |||
/** | |||
* @return Collection|Ticket[] |
@@ -15,6 +15,7 @@ abstract class OrderStatus | |||
const ALIAS_CART_CANCELED = 'cart-canceled' ; | |||
const ALIAS_WAITING_PAYMENT_ONLINE = 'waiting-payment-online' ; | |||
const ALIAS_WAITING_PAYMENT_CREDIT = 'waiting-payment-credit' ; | |||
const ALIAS_WAITING_BANK_RETURN = 'waiting-bank-return' ; | |||
const ALIAS_PAID_ONLINE = 'paid-online' ; | |||
const ALIAS_ERROR_PAYMENT_ONLINE = 'error-payment-online' ; | |||
const ALIAS_PAID_BY_CREDIT = 'paid-by-credit' ; | |||
@@ -32,6 +33,7 @@ abstract class OrderStatus | |||
self::ALIAS_PAID_ONLINE, | |||
self::ALIAS_PAID_BY_CREDIT, | |||
self::ALIAS_WAITING_DELIVERY, | |||
self::ALIAS_WAITING_BANK_RETURN, | |||
self::ALIAS_WAITING_DELIVERY_WITH_PAYMENT, | |||
self::ALIAS_DELIVERED_WITHOUT_PAYMENT, | |||
self::ALIAS_DONE |
@@ -90,6 +90,11 @@ abstract class ProductFamily extends AbstractDocumentEntity implements ProductPr | |||
*/ | |||
protected $productsType; | |||
/** | |||
* @ORM\Column(type="boolean", nullable=true) | |||
*/ | |||
protected $productsQuantityAsTitle; | |||
/** | |||
* @ORM\Column(type="string", length=255, nullable=true) | |||
*/ | |||
@@ -289,6 +294,18 @@ abstract class ProductFamily extends AbstractDocumentEntity implements ProductPr | |||
return $this; | |||
} | |||
public function getProductsQuantityAsTitle(): ?bool | |||
{ | |||
return $this->productsQuantityAsTitle; | |||
} | |||
public function setProductsQuantityAsTitle(bool $productsQuantityAsTitle): self | |||
{ | |||
$this->productsQuantityAsTitle = $productsQuantityAsTitle; | |||
return $this; | |||
} | |||
public function getProductsType(): ?string | |||
{ | |||
return $this->productsType; |
@@ -18,6 +18,20 @@ class CreditHistoryRepository extends BaseRepository implements DefaultRepositor | |||
return CreditHistoryInterface::class; | |||
} | |||
public function findAllByDateStartEnd($merchant, $dateStart, $dateEnd) | |||
{ | |||
return $this->createQueryBuilder('e') | |||
->innerJoin('e.userMerchant', 'user_merchant') | |||
->andWhere('user_merchant.merchant = :merchant') | |||
->setParameter(':merchant', $merchant) | |||
->andWhere('e.createdAt >= :dateStart') | |||
->andWhere('e.createdAt <= :dateEnd') | |||
->setParameter(':dateStart', $dateStart) | |||
->setParameter(':dateEnd', $dateEnd) | |||
->addOrderBy('e.createdAt', 'ASC') | |||
->getQuery()->getResult(); | |||
} | |||
public function findAllByUserMerchant($userMerchant) | |||
{ | |||
return $this->createQueryBuilder('e') |
@@ -105,9 +105,11 @@ class ProductFamilyRepository extends BaseRepository implements DefaultRepositor | |||
$query = $this->joinRelations($query) ; | |||
$query->andWhere('e.status = 1'); | |||
$query->andWhere('e.title LIKE :terms'); | |||
$query->andWhere('e.title LIKE :terms OR cat.title LIKE :terms'); | |||
$query->setParameter(':terms', '%'.$terms.'%') ; | |||
$query->groupBy('e.id') ; | |||
if($maxResults) { | |||
$query->setMaxResults($maxResults) ; | |||
} |
@@ -29,11 +29,12 @@ class TicketRepository extends BaseRepository implements DefaultRepositoryInterf | |||
return $query ; | |||
} | |||
public function findAllOpen() | |||
public function findAllOpen($limit=0) | |||
{ | |||
$query = $this->findByMerchantQuery() ; | |||
$this->filterStatus($query, [Ticket::TICKET_STATUS_OPEN, Ticket::TICKET_STATUS_BEING_PROCESSED]) ; | |||
$this->filterStatus($query, [Ticket::TICKET_STATUS_OPEN]) ; | |||
$query->addOrderBy('e.id', 'DESC') ; | |||
$query->setMaxResults($limit); | |||
return $query->getQuery()->getResult() ; | |||
} | |||
@@ -41,7 +42,7 @@ class TicketRepository extends BaseRepository implements DefaultRepositoryInterf | |||
{ | |||
$query = $this->findByMerchantQuery() ; | |||
$query->select('count(e.id)'); | |||
$this->filterStatus($query, [Ticket::TICKET_STATUS_OPEN, Ticket::TICKET_STATUS_BEING_PROCESSED]) ; | |||
$this->filterStatus($query, [Ticket::TICKET_STATUS_OPEN]) ; | |||
return $query->getQuery()->getSingleScalarResult() ; | |||
} | |||
} |
@@ -690,6 +690,7 @@ table th .select2-container--default .select2-selection--single { | |||
border-top: 1px solid #dee2e6; | |||
text-align: center; | |||
border-bottom: 2px solid #dee2e6; | |||
position: relative; | |||
} | |||
/* line 252, ../../sass/backend/custom.scss */ | |||
@@ -834,8 +835,69 @@ table.products-collection-table tr.disabled { | |||
display: block; | |||
} | |||
/* line 292, ../../sass/backend/custom.scss */ | |||
#dashboard #range_date_interval { | |||
margin-bottom: 20px; | |||
} | |||
/* line 293, ../../sass/backend/custom.scss */ | |||
#dashboard #range_date_interval label { | |||
float: left; | |||
margin-right: 20px; | |||
} | |||
/* line 294, ../../sass/backend/custom.scss */ | |||
#dashboard #range_date_interval .form-check { | |||
float: left; | |||
margin-right: 10px; | |||
} | |||
/* line 295, ../../sass/backend/custom.scss */ | |||
#dashboard .table-condensed .btn, #dashboard .table-condensed .btn-sm { | |||
white-space: nowrap; | |||
} | |||
/* Tickets */ | |||
/* line 296, ../../sass/backend/custom.scss */ | |||
/* line 301, ../../sass/backend/custom.scss */ | |||
#ticket-list .btn-sm { | |||
display: block; | |||
} | |||
/* line 307, ../../sass/backend/custom.scss */ | |||
#toast-container { | |||
width: 350px; | |||
} | |||
/* line 308, ../../sass/backend/custom.scss */ | |||
.toast { | |||
float: right; | |||
} | |||
/* line 310, ../../sass/backend/custom.scss */ | |||
#toast-container:before:hover { | |||
opacity: 1; | |||
cursor: pointer; | |||
} | |||
/* line 314, ../../sass/backend/custom.scss */ | |||
#toast-close-all { | |||
border: 0; | |||
position: absolute; | |||
pointer-events: auto; | |||
z-index: 999999999999999999999; | |||
background: #BD362F; | |||
border-radius: 3px; | |||
color: #fff; | |||
opacity: 0.8; | |||
top: 2px; | |||
width: 50px; | |||
height: 50px; | |||
font-size: 30px; | |||
left: 0px; | |||
text-align: center; | |||
-webkit-text-shadow: 0 1px 0 #fff; | |||
text-shadow: 0 1px 0 #fff; | |||
-moz-box-shadow: 0 0 12px #999; | |||
-webkit-box-shadow: 0 0 12px #999; | |||
box-shadow: 0 0 12px #999; | |||
} |
@@ -149,17 +149,35 @@ function userNotAllowToEdit() { | |||
function setFlashMessages(flashMessages){ | |||
var currentFlash =new Array(); | |||
for (var type in flashMessages) { | |||
for (var key in flashMessages[type]) { | |||
generateNotice(type, flashMessages[type][key]); | |||
if(!currentFlash.includes(flashMessages[type][key])) { | |||
currentFlash.push(flashMessages[type][key]); | |||
generateNotice(type, flashMessages[type][key]); | |||
} | |||
} | |||
} | |||
} | |||
function generateNotice(type, text) { | |||
toastr.options.timeOut = 30000; | |||
toastr.options.timeOut = 3000; | |||
toastr.options.onHidden = function() { | |||
if($('#toast-container .toast').length==0)$('#toast-close-all').remove(); | |||
}; | |||
//toastr.options.preventDuplicates = true; | |||
toastr[type](text); | |||
if($('#toast-close-all').length==0) { | |||
$('#toast-container').prepend('<button id="toast-close-all"><i class="fa fa-times"></i></button>'); | |||
} | |||
$('#toast-close-all').off('click'); | |||
$('#toast-close-all').on('click', function (){ | |||
toastr.remove(); | |||
if($('#toast-container .toast').length==0)$('#toast-close-all').remove(); | |||
}); | |||
/*var n = noty({ | |||
text: text, | |||
type: type, |
@@ -164,7 +164,6 @@ let mixinPrice = { | |||
if (this.behaviorPriceValue == 'by-piece') { | |||
this.setBuyingPriceByRefUnit(); | |||
this.setBuyingPriceByRefUnitWithTax(); | |||
log('ncihe'); | |||
this.setPriceByRefUnit(); | |||
this.setPriceByRefUnitWithTax(); | |||
} else if (this.behaviorPriceValue == 'by-reference-unit') { |
@@ -209,7 +209,6 @@ $(window).on('load', function () { | |||
this.$nextTick(function () { | |||
log(this.status); | |||
if (this.status == 0) { | |||
$(this.$el).addClass('disabled'); | |||
} | |||
@@ -248,8 +247,8 @@ $(window).on('load', function () { | |||
if (field == 'unitInherited') { | |||
$('select[data-ref="' + field + '"]').eq(y).focus(); | |||
} else { | |||
$('input[data-ref="' + field + '"]').eq(y).focus(); | |||
log('blop'); | |||
$('input[data-ref="' + field + '"]').eq(y).focus().select(); | |||
} | |||
}); | |||
@@ -283,7 +282,7 @@ $(window).on('load', function () { | |||
var app = this; | |||
$(this.$el).find('input, select').off('keydown'); | |||
$(this.$el).find('input, select').on('keydown', function (e) { | |||
if (e.keyCode == 13 || e.keyCode == 9) e.preventDefault(); | |||
if (e.keyCode == 13 || e.keyCode == 9 || e.keyCode ==40 || e.keyCode==38) e.preventDefault(); | |||
//ENTRER | |||
if (e.keyCode == 13) { | |||
@@ -299,7 +298,6 @@ $(window).on('load', function () { | |||
if (e.shiftKey && e.keyCode == 9) { | |||
e.preventDefault(); | |||
$prevField = $(this).parents('td').prevAll('td:visible').first().find('input, select'); | |||
log($prevField); | |||
if($prevField.length == 0){ | |||
$prevField = $(this).parents('td').prevAll('td:visible').first().prevAll('td:visible').first().find('input, select'); | |||
@@ -363,7 +361,7 @@ $(window).on('load', function () { | |||
'supplierTaxRateValue': this.$refs.productUnitPrice.supplierTaxRateValue, | |||
'marginProfit': this.$refs.productUnitPrice.marginProfit, | |||
'marginProfitPercent': this.$refs.productUnitPrice.marginProfitPercent, | |||
'productsQuantityAsTitle': this.productsQuantityAsTitle, | |||
/*'taxRate': this.$refs.productUnitPrice.taxRate, | |||
'supplierTaxRate': this.$refs.productUnitPrice.supplierTaxRate, | |||
*/ | |||
@@ -396,6 +394,7 @@ $(window).on('load', function () { | |||
'supplierTaxRate': null, | |||
'multiplyingFactor': null, | |||
'taxRateValue': null, | |||
'productsQuantityAsTitle': null, | |||
'propertyExpirationDate': this.propertyExpirationDate, | |||
'behaviorExpirationDate': this.behaviorExpirationDate | |||
}; | |||
@@ -425,7 +424,7 @@ $(window).on('load', function () { | |||
propertyNoveltyExpirationDateActive: false, | |||
propertyNoveltyExpirationDate:null, | |||
activeProducts: false, | |||
productsQuantityAsTitle: false, | |||
formProducts: {}, | |||
currentSection: 'general', | |||
sectionsArray: [ | |||
@@ -564,6 +563,13 @@ $(window).on('load', function () { | |||
} | |||
} | |||
}, | |||
emptyProductsField: function (fieldName){ | |||
if (confirm('Êtes-vous sur de cette action ?')) { | |||
for (i = 0; i < this.$refs.productForm.length; i++) { | |||
this.$refs.productForm[i][fieldName] = null; | |||
} | |||
} | |||
}, | |||
getUnitReference: function () { | |||
if (typeof this.$refs.productUnitPrice !== 'undefined') { | |||
return this.$refs.productUnitPrice.unitReference; |
@@ -248,7 +248,7 @@ table th .select2-container--default .select2-selection--single{padding:0.3rem 0 | |||
.card-body.p-0 .products-collection-table tbody > tr > td:first-of-type, .card-body.p-0 .products-collection-table tbody > tr > th:first-of-type, .card-body.p-0 .products-collection-table thead > tr > td:first-of-type, .card-body.p-0 .products-collection-table thead > tr > th:first-of-type{padding-left: 0.35rem;} | |||
.products-collection-table .btn-empty-field{position: absolute; right: 3px; font-size: 0.7rem; top: 5px; padding: 0px;} | |||
#lc-product-family-edit .products-collection-table {table-layout:fixed;/* background-clip: padding-box;*/ border-collapse: collapse;} | |||
#lc-product-family-edit .products-collection-table th{font-size:13px; border-left: 1px solid #dee2e6; border-top: 1px solid #dee2e6; text-align: center; border-bottom: 2px solid #dee2e6;} | |||
#lc-product-family-edit .products-collection-table th{font-size:13px; border-left: 1px solid #dee2e6; border-top: 1px solid #dee2e6; text-align: center; border-bottom: 2px solid #dee2e6; position: relative;} | |||
#lc-product-family-edit .products-collection-table tfoot th{border-top: 2px solid #dee2e6;} | |||
#lc-product-family-edit .products-collection-table th span {white-space: initial;} | |||
#lc-product-family-edit .products-collection-table th:last-child{border-right: 1px solid #dee2e6;} | |||
@@ -289,6 +289,11 @@ table.products-collection-table tr.disabled{opacity: 0.5} | |||
#dashboard .btn-statistic small{margin-bottom: 10px; display: block;} | |||
#dashboard .btn-statistic .value{display: block;} | |||
#dashboard #range_date_interval {margin-bottom: 20px;} | |||
#dashboard #range_date_interval label{float: left; margin-right: 20px;} | |||
#dashboard #range_date_interval .form-check{float: left; margin-right: 10px;} | |||
#dashboard .table-condensed .btn, #dashboard .table-condensed .btn-sm{white-space: nowrap;} | |||
/* Tickets */ | |||
@@ -297,3 +302,33 @@ table.products-collection-table tr.disabled{opacity: 0.5} | |||
display: block ; | |||
} | |||
} | |||
#toast-container { width: 350px;} | |||
.toast{float: right} | |||
#toast-container:before:hover { | |||
opacity:1; | |||
cursor:pointer; | |||
} | |||
#toast-close-all { | |||
border:0; | |||
position: absolute; | |||
pointer-events: auto; | |||
z-index: 999999999999999999999; | |||
background: #BD362F; | |||
border-radius: 3px; | |||
color:#fff; | |||
opacity:0.8; | |||
top: 2px; | |||
width: 50px; | |||
height: 50px; | |||
font-size: 30px; | |||
left: 0px; | |||
text-align: center; | |||
-webkit-text-shadow: 0 1px 0 #fff; | |||
text-shadow: 0 1px 0 #fff; | |||
-moz-box-shadow: 0 0 12px #999; | |||
-webkit-box-shadow: 0 0 12px #999; | |||
box-shadow: 0 0 12px #999; | |||
} |
@@ -12,7 +12,7 @@ list: | |||
delete: Supprimer | |||
send: Envoyer | |||
duplicate: Dupliquer | |||
duplicateOtherHub: Dupliquer sur un autre hub | |||
duplicateOtherHub: Dupliquer sur %title% | |||
sortProductFamily: Trier les produits de cette catégorie | |||
group: | |||
main: Général | |||
@@ -67,9 +67,12 @@ group: | |||
deliveryAddress: Adresse de livraison | |||
complementary: Commandes complémentaires | |||
tickets: Tickets relatif à la commande | |||
orderStatusHistories: Historique de changement de statut | |||
waitingBankReturn: Commandes en attente de retour banque | |||
Ticket: | |||
listMessages: Liste des messages | |||
list: Tickets ouverts | |||
listLast: Derniers tickets ouverts | |||
PointSale: | |||
main: Général | |||
Merchant: | |||
@@ -113,7 +116,7 @@ success: | |||
common: | |||
fieldChange: Le champ a bien été modifié | |||
productFamily: | |||
editStock: Le stock a bien été modifié | |||
editStock: "Stocks renouveler pour : %count% produits" | |||
error: | |||
form: | |||
submitted: Une erreur est survenue à la soumission du formulaire | |||
@@ -152,6 +155,7 @@ error: | |||
notAdded: Le crédit n'a pas été ajouté | |||
productFamily: | |||
editStock: Le stock n'a pas été modifié, une erreur est survenue | |||
editStockNoQuantityDefault: "Le stock n'a pas été modifié pour le produit #%id% (Aucune quantité par défaut)" | |||
field: | |||
default: | |||
placeholder: Choisissez une option | |||
@@ -277,6 +281,9 @@ field: | |||
users: Utilisateurs | |||
total: Total | |||
products: Produits | |||
purchaseOrderEmailContent: "Contenu par défaut de l'email envoyé aux producteurs" | |||
dateStart: Date de début | |||
dateEnd: Date de fin | |||
PointSale: | |||
code: Code | |||
@@ -319,6 +326,7 @@ field: | |||
propertyAlcoholLevel: Degré d'alcool | |||
displayPriceUnitRef: Afficher le prix par unité de référence | |||
behaviorPrice: Travailler avec des tarifs | |||
productsQuantityAsTitle: Titre équivalent à quantité | |||
behaviorPriceOptions: | |||
by-piece: À la pièce | |||
by-reference-unit: Par unité de référence | |||
@@ -466,7 +474,12 @@ field: | |||
quotation: Devis | |||
purchase-order: Bon de commande | |||
delivery-note: Bon de livraison | |||
Statistic: | |||
interval: Affichage des résultats | |||
intervalOptions: | |||
days: Par jour | |||
week: Par semaine | |||
month: Par mois | |||
action: | |||
apply: Appliquer | |||
@@ -490,6 +503,8 @@ action: | |||
form.empty_value: Aucun(e) | |||
add: Ajouter | |||
valid: Valider | |||
close: Fermer | |||
history: Historique | |||
product: | |||
editStock: Gérer les stocks | |||
editProductFamily: Éditer le produit |
@@ -1,9 +1,16 @@ | |||
{% set title = "" %} | |||
{% if merchant is defined %} | |||
{% set title = merchant.title %} | |||
{% endif %} | |||
{% if is_dropdown %} | |||
<a class="btn dropdown-item {{ action.css_class|default('btn-default') }}" | |||
href="{{ action_href }}{{ action.hub is defined ? '&hub='~action.hub : '' }}" target="{{ action.target }}"> | |||
{%- if action.icon %}<i class="fa fa-fw fa-{{ action.icon }}"></i> {% endif -%} | |||
{{ action.label|trans(arguments = trans_parameters|merge({ '%entity_id%': item_id }), domain = translation_domain) }} | |||
{{ action.label|trans(arguments = trans_parameters|merge({ '%entity_id%': item_id, '%title%': title }), domain = translation_domain) }} | |||
</a> | |||
{% else %} | |||
{% if action.hub is defined %} | |||
{% set trad = action.label~action.hub|uc_first %} | |||
@@ -12,7 +19,7 @@ | |||
{% endif %} | |||
<a class="btn {{ is_dropdown|default(false) ? 'dropdown-item' }} {{ action.css_class|default('btn-default') }}" | |||
data-toggle="tooltip" | |||
title="{{ action.label|trans(arguments = trans_parameters|merge({ '%entity_id%': item_id }), domain = translation_domain) }}" | |||
title="{{ action.label|trans(arguments = trans_parameters|merge({ '%entity_id%': item_id, '%title%': title }), domain = translation_domain) }}" | |||
href="{{ action_href }}{{ action.hub is defined ? '&hub='~action.hub : '' }}" target="{{ action.target }}"> | |||
{%- if action.icon %}<i class="fa fa-fw fa-{{ action.icon }}"></i> {% endif -%} | |||
</a> |
@@ -1,7 +1,6 @@ | |||
{% set dropdownAction ={} %} | |||
{% for action in actions %} | |||
{% if action.group is defined and action.group==true %} | |||
{% set dropdownAction = dropdownAction|merge({(loop.index0): action}) %} | |||
{% else %} |
@@ -22,6 +22,7 @@ | |||
{% endif %} | |||
{% if _flash_messages|length > 0 %} | |||
<div id="lc-flash-messages"> | |||
{% for label, messages in _flash_messages %} | |||
{% if label != 'alert' %} | |||
{% for message in messages %} |
@@ -0,0 +1,22 @@ | |||
<table class="table table-condensed" id="address-list"> | |||
<thead> | |||
<tr> | |||
<th>Adresse</th> | |||
<th></th> | |||
</tr> | |||
</thead> | |||
<tbody> | |||
{% for address in addressesLoopBesancon %} | |||
<tr> | |||
<td>{{ address }}</td> | |||
<td><a class="btn-sm btn-success" | |||
href="{{ path('easyadmin', {id: address.user.id, entity: 'User', action: 'show'}) }}"> | |||
<i class="fas fa-eye"></i> | |||
</a></td> | |||
</tr> | |||
{% else %} | |||
<tr> | |||
<td colspan="2"><i>Aucune adresse pour le moment</i></td> | |||
{% endfor %} | |||
</tbody> | |||
</table> |
@@ -0,0 +1,27 @@ | |||
<table class="table table-condensed" id="address-list"> | |||
<thead> | |||
<tr> | |||
<th>Id</th> | |||
<th>Utilisateurs</th> | |||
<th>Date</th> | |||
<th></th> | |||
</tr> | |||
</thead> | |||
<tbody> | |||
{% for order in ordersWaitingBankReturn %} | |||
<tr> | |||
<td>{{ order.id }}</td> | |||
<td>{{ order.user }}</td> | |||
<td>{{ order.updatedAt|date('d-m H:i') }}</td> | |||
<td><a class="btn-sm btn-success" | |||
href="{{ path('easyadmin', {id: order.id, entity: 'OrderShop', action: 'show'}) }}"> | |||
<i class="fas fa-eye"></i> | |||
</a></td> | |||
</tr> | |||
{% else %} | |||
<tr> | |||
<td colspan="4"><i>Aucune commande pour le moment</i></td> | |||
{% endfor %} | |||
</tbody> | |||
</table> | |||
@@ -62,5 +62,5 @@ | |||
{% block script_javascript %} | |||
{{ parent() }} | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/default/init-edit.js') }}"></script> | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/default/init-edit.js')|lc_cache }}"></script> | |||
{% endblock %} |
@@ -23,29 +23,28 @@ | |||
href="{{ asset('bundles/lcshop/css/backend/adminlte/plugins/select2/select2-bootstrap.min.css') }}"> | |||
<link rel="stylesheet" | |||
href="{{ asset('bundles/lcshop/css/backend/adminlte/plugins/bootstrap/bootstrap-switch.min.css') }}"> | |||
<!-- Theme style --> | |||
<link rel="stylesheet" href="{{ asset('bundles/lcshop/css/backend/adminlte/plugins/toastr/toastr.min.css') }}"> | |||
<link rel="stylesheet" href="{{ asset('bundles/lcshop/css/backend/adminlte/adminlte.css') }}"> | |||
<!-- Google Font: Source Sans Pro --> | |||
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700" rel="stylesheet"> | |||
{#<link rel="stylesheet" href="{{ asset('bundles/easyadmin/app.css') }}">#} | |||
{# <link rel="stylesheet" href="{{ asset('bundles/easyadmin/app.css') }}"> #} | |||
{% endblock %} | |||
{% block head_custom_stylesheets %} | |||
<link rel="stylesheet" href="{{ asset('bundles/lcshop/css/backend/custom.css') }}"> | |||
<link rel="stylesheet" href="{{ asset('bundles/lcshop/css/backend/custom.css')|lc_cache }}"> | |||
{% for asset_css in easyadmin_config('design.assets.css') %} | |||
<link rel="stylesheet" href="{{ asset(asset_css) }}"> | |||
<link rel="stylesheet" href="{{ asset(asset_css)|lc_cache }}"> | |||
{% endfor %} | |||
{% endblock head_custom_stylesheets %} | |||
{# | |||
{% if easyadmin_config('design.brand_color') != 'hsl(230, 55%, 60%)' %} | |||
<style> | |||
:root { --color-primary: {{ easyadmin_config('design.brand_color') }}; } | |||
</style> | |||
{% endif %} | |||
{% if easyadmin_config('design.brand_color') != 'hsl(230, 55%, 60%)' %} | |||
<style> | |||
:root { --color-primary: {{ easyadmin_config('design.brand_color') }}; } | |||
</style> | |||
{% endif %} | |||
#} | |||
{% block head_favicon %} | |||
@@ -55,13 +54,14 @@ | |||
</head> | |||
{% block body %} | |||
<body id="pdl-body" class="{% block body_class %}sidebar-mini layout-navbar-fixed{% endblock %} {% block body_class_extend %}{% endblock %}"> | |||
<body id="pdl-body" | |||
class="{% block body_class %}sidebar-mini layout-navbar-fixed{% endblock %} {% block body_class_extend %}{% endblock %}"> | |||
{# <script> | |||
document.body.classList.add( | |||
'easyadmin-content-width-' + (localStorage.getItem('easyadmin/content/width') || 'normal'), | |||
'easyadmin-sidebar-width-' + (localStorage.getItem('easyadmin/sidebar/width') || 'normal') | |||
); | |||
</script>#} | |||
</script> #} | |||
{% block wrapper_wrapper %} | |||
<div class="wrapper"> | |||
@@ -125,9 +125,14 @@ | |||
{% endif %} | |||
</li> | |||
<li> | |||
<a target="_blank" class="btn btn-outline-success" | |||
href="{{ merchantUtils.getMerchantUser.getMerchantConfig('url') }}">Afficher le | |||
site</a> | |||
{% if 'localhost' in app.request.getSchemeAndHttpHost() %} | |||
<a target="_blank" class="btn btn-outline-success" | |||
href="{{ app.request.getSchemeAndHttpHost() }}">Afficher le site</a> | |||
{% else %} | |||
<a target="_blank" class="btn btn-outline-success" | |||
href="{{ merchantUtils.getMerchantUser.getMerchantConfig('url') }}">Afficher le | |||
site</a> | |||
{% endif %} | |||
</li> | |||
</ul> | |||
{% endblock navbar %} | |||
@@ -176,7 +181,7 @@ | |||
{% block global_actions_wrapper %} | |||
<div class="global-actions"> | |||
{% block global_actions %}{% endblock %} | |||
{#{{ dump(_request_parameters) }}#} | |||
{# {{ dump(_request_parameters) }} #} | |||
<button type="button" class="btn-sm btn-primary btn-add-reminder " | |||
data-url="{{ path('easyadmin', { action: 'new', entity: 'Reminder' }) }}"> | |||
+ Ajouter pense bête | |||
@@ -186,7 +191,7 @@ | |||
</div> | |||
{% block content_reminders %} | |||
{% if reminders|length >0 %} | |||
{% if reminders is defined and reminders|length >0 %} | |||
<div class="head-reminders card card-outline card-danger"> | |||
{% include '@LcShop/backend/default/block/list_reminders.html.twig' %} | |||
</div> | |||
@@ -230,7 +235,7 @@ | |||
{% endblock wrapper_wrapper %} | |||
{#Initilisation des varibles requis dans le JS #} | |||
{# Initilisation des varibles requis dans le JS #} | |||
<script> | |||
const DOMAIN = "{{ app.request.getSchemeAndHttpHost() }}"; | |||
</script> | |||
@@ -241,16 +246,16 @@ | |||
<!-- Bootstrap 4 --> | |||
<script src="{{ asset('bundles/lcshop/js/backend/plugin/bootstrap/bootstrap.bundle.min.js') }}"></script> | |||
<script src="{{ asset('bundles/lcshop/js/backend/plugin/toastr/toastr.min.js') }}"></script> | |||
{#<script src="{{ asset('bundles/lcshop/js/backend/plugin/select2/select2.min.js') }}"></script>#} | |||
{# <script src="{{ asset('bundles/lcshop/js/backend/plugin/select2/select2.min.js') }}"></script> #} | |||
<script src="{{ asset('bundles/lcshop/js/backend/plugin/select2/select2.full.min.js') }}"></script> | |||
<script src="{{ asset('bundles/lcshop/js/backend/plugin/bootstrap/bootstrap-switch.min.js') }}"></script> | |||
<!-- AdminLTE App --> | |||
<script src="{{ asset('bundles/lcshop/js/backend/plugin/adminlte.min.js') }}"></script> | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/default/utils.js') }}"></script> | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/default/utils.js')|lc_cache }}"></script> | |||
{% endblock plugin_javascript %} | |||
{% block script_javascript %} | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/default/init-common.js') }}"></script> | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/default/init-common.js')|lc_cache }}"></script> | |||
{% endblock script_javascript %} | |||
{% block add_script_javascript %}{% endblock add_script_javascript %} |
@@ -284,5 +284,5 @@ | |||
{% block script_javascript %} | |||
{{ parent() }} | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/default/init-list-datatable.js') }}"></script> | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/default/init-list-datatable.js')|lc_cache }}"></script> | |||
{% endblock %} |
@@ -1,6 +1,6 @@ | |||
{#{{ value|date('U')}}#} | |||
{# {{ value|date('U')}} #} | |||
{% if field_options.format == "d/m/Y h:i A e" %} | |||
{% if field_options.format == "d/m/Y h:i A e" or field_options.format == null %} | |||
{% set format = "d/m/Y H:i" %} | |||
{% else %} | |||
{% set format = field_options.format %} |
@@ -144,7 +144,29 @@ | |||
{% if _entity_config['list']['btn_download_purchase_order_archive'] is defined %} | |||
<a class="float-right btn-sm btn-success" | |||
href="{{ path('easyadmin', { entity: 'Supplier', action: 'exportOrderPurchasesAsArchive' }) }}"> | |||
<i class="fa fa-download"></i> Télécharger tous les bons de commande | |||
<i class="fa fa-download"></i> Récapitulatif des commandes | |||
</a> | |||
{% endif %} | |||
{% if _entity_config['list']['btn_history_purchase_order'] is defined %} | |||
<a class="float-right btn-sm btn-info" | |||
href="{{ path('easyadmin', { entity: 'PurchaseOrder', action: 'list' }) }}"> | |||
<i class="fa fa-history"></i> Historiques des bons de commandes | |||
</a> | |||
{% endif %} | |||
{% if _entity_config['list']['btn_week_purchase_order'] is defined %} | |||
<a class="float-right btn-sm btn-info" | |||
href="{{ path('easyadmin', { entity: 'SupplierOrderPurchase', action: 'list' }) }}"> | |||
<i class="fa fa-tractor"></i> Bons de commandes de la semaine | |||
</a> | |||
{% endif %} | |||
{% if _entity_config['list']['btn_add_purchase_order'] is defined %} | |||
<a class="float-right btn-sm btn-primary" | |||
href="{{ path('easyadmin', { entity: 'PurchaseOrder', action: 'new' }) }}"> | |||
<i class="fa fa-plus"></i> Créer un bon de commande | |||
</a> | |||
{% endif %} | |||
@@ -296,8 +318,9 @@ | |||
<td class="{{ isSortingField ? 'sorted' }} {{ metadata.dataType|lower }} {{ metadata.css_class }}" {{ easyadmin_config('design.rtl') ? 'dir="rtl"' }}> | |||
{% if (field == 'title' or field== 'id') and (metadata.dataType=="string" or metadata.dataType=="integer") %} | |||
<a class="link-as-text" | |||
href="{{ path('easyadmin', {'action':'edit', 'entity':_entity_config.name, 'id': item.id}) }}"> | |||
href="{{ path('easyadmin', _request_parameters|merge({ action: 'edit', id: item.id })) }}"> | |||
{{ easyadmin_render_field_for_list_view(_entity_config.name, item, metadata) }} | |||
</a> | |||
{% else %} | |||
@@ -412,7 +435,7 @@ | |||
{% block script_javascript %} | |||
{{ parent() }} | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/default/init-list.js') }}"></script> | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/default/init-list.js')|lc_cache }}"></script> | |||
<script type="text/javascript"> |
@@ -40,7 +40,7 @@ | |||
{% block script_javascript %} | |||
{{ parent() }} | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/default/init-edit.js') }}"></script> | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/default/init-edit.js')|lc_cache }}"></script> | |||
{# | |||
<script type="text/javascript"> |
@@ -127,5 +127,5 @@ | |||
{% block script_javascript %} | |||
{{ parent() }} | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/default/init-sort.js') }}"></script> | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/default/init-sort.js')|lc_cache }}"></script> | |||
{% endblock %} |
@@ -66,10 +66,13 @@ | |||
</div> | |||
{% endif %}#} | |||
{% set labelHelp = 'field.'~easyadmin['entity']['name']~'.'~name~'Help' %} | |||
{% if labelHelp|trans({}, 'lcshop') == labelHelp %}{% set labelHelp = 'form.field.default.'~name~'Help' %}{% endif %} | |||
{% if labelHelp|trans({}, 'lcshop') != labelHelp %} | |||
<small class="form-text text-muted">{{ labelHelp|trans({}, 'lcshop')|raw }}</small> | |||
{% if easyadmin is defined %} | |||
{% set labelHelp = 'field.'~easyadmin['entity']['name']~'.'~name~'Help' %} | |||
{% if labelHelp|trans({}, 'lcshop') == labelHelp %}{% set labelHelp = 'form.field.default.'~name~'Help' %}{% endif %} | |||
{% if labelHelp|trans({}, 'lcshop') != labelHelp %} | |||
<small class="form-text text-muted">{{ labelHelp|trans({}, 'lcshop')|raw }}</small> | |||
{% endif %} | |||
{% endif %} | |||
{{- form_errors(form) -}} | |||
@@ -127,12 +130,20 @@ | |||
{% if 'field.MerchantConfig.' in label %} | |||
{% set name_trad = label|replace({'field.MerchantConfig.': ''}) %} | |||
{% set trad = name_trad|lc_trad(easyadmin['entity']['name'], 'field') %} | |||
{% else %} | |||
{% set trad = name|lc_trad(easyadmin['entity']['name'], 'field') %} | |||
{% if easyadmin is defined %} | |||
{% set trad = name|lc_trad(easyadmin['entity']['name'], 'field') %} | |||
{% else %} | |||
{% set trad = name|lc_trad('', 'field') %} | |||
{% endif %} | |||
{% endif %} | |||
{%- endif -%} | |||
<{{ element|default('label') }}{% if label_attr %}{% with { attr: label_attr } %}{{ block('attributes') }}{% endwith %}{% endif %}>{{ trad }}</{{ element|default('label') }}> | |||
{% if trad is defined %} | |||
<{{ element|default('label') }}{% if label_attr %}{% with { attr: label_attr } %}{{ block('attributes') }}{% endwith %}{% endif %}>{{ trad }}</{{ element|default('label') }}> | |||
{% endif %} | |||
{%- endif -%} | |||
{%- endblock form_label %} | |||
@@ -8,6 +8,6 @@ | |||
{% block script_javascript %} | |||
{{ parent() }} | |||
{% include '@LcShop/backend/default/block/script-vuejs.html.twig' %} | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/merchant/vuejs-merchant.js') }}"></script> | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/merchant/vuejs-merchant.js')|lc_cache }}"></script> | |||
{% endblock %} |
@@ -21,6 +21,11 @@ | |||
<div class="col-12"> | |||
{{ form_row(form.merchantConfigs['email-from-purchase-order']) }} | |||
</div> | |||
{% if form.merchantConfigs['purchase-order-email-content'] is defined %} | |||
<div class="col-12"> | |||
{{ form_row(form.merchantConfigs['purchase-order-email-content']) }} | |||
</div> | |||
{% endif %} | |||
{{ macros.card_end() }} | |||
</div> | |||
</div> |
@@ -0,0 +1,37 @@ | |||
{% embed "@LcShop/backend/default/block/embed_modal.twig" %} | |||
{% trans_default_domain 'lcshop' %} | |||
{% block size %}modal-lg{% endblock %} | |||
{% block id %}modal-order-status-histories{% endblock %} | |||
{% block title %}{{ "group.OrderShop.orderStatusHistories"|trans }}{% endblock %} | |||
{% block content %} | |||
<div class="col"> | |||
<table class="table table-bordered"> | |||
<thead> | |||
<th>Id</th> | |||
<th>Date</th> | |||
<th>Statut</th> | |||
<th>Utilisateur</th> | |||
<th>Origin</th> | |||
</thead> | |||
<tbody> | |||
<template v-for="(orderStatusHistory, i) in order.orderStatusHistories"> | |||
<tr> | |||
<td>${orderStatusHistory.id}</td> | |||
<td>${orderStatusHistory.createdAt}</td> | |||
<td>${orderStatusHistory.orderStatus}</td> | |||
<td>${orderStatusHistory.createdBy}</td> | |||
<td>${orderStatusHistory.origin}</td> | |||
</tr> | |||
</template> | |||
</tbody> | |||
</table> | |||
</div> | |||
{% endblock %} | |||
{% block footer %} | |||
<button type="button" class="btn btn-default float-right" | |||
data-dismiss="modal">{{ 'action.close'|trans }}</button> | |||
{% endblock %} | |||
{% endembed %} |
@@ -602,6 +602,7 @@ | |||
<strong> ${order.orderStatus}</strong> | |||
{% endblock %} | |||
{% block button %} | |||
{{ order_macros.order_modal_button('#modal-order-status-histories', 'btn-secondary', 'action.history') }} | |||
{{ order_macros.order_modal_button('#modal-order-status') }} | |||
{% endblock %} | |||
{% endembed %} |
@@ -90,6 +90,7 @@ | |||
{% include '@LcShop/backend/order/form/modal_sendpaymentlink.html.twig' %} | |||
{% endif %} | |||
{% include '@LcShop/backend/order/form/modal_orderstatushistories.html.twig' %} | |||
</div> | |||
</div> | |||
{% endblock %} | |||
@@ -97,5 +98,5 @@ | |||
{% block script_javascript %} | |||
{{ parent() }} | |||
{% include '@LcShop/backend/default/block/script-vuejs.html.twig' %} | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/order/vuejs-order.js') }}"></script> | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/order/vuejs-order.js')|lc_cache }}"></script> | |||
{% endblock %} |
@@ -108,6 +108,7 @@ | |||
{% if form_order_send_payment_link is defined %} | |||
{% include '@LcShop/backend/order/form/modal_sendpaymentlink.html.twig' %} | |||
{% endif %} | |||
{% include '@LcShop/backend/order/form/modal_orderstatushistories.html.twig' %} | |||
</div> | |||
</div> | |||
@@ -116,5 +117,5 @@ | |||
{% block script_javascript %} | |||
{{ parent() }} | |||
{% include '@LcShop/backend/default/block/script-vuejs.html.twig' %} | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/order/vuejs-order.js') }}"></script> | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/order/vuejs-order.js')|lc_cache }}"></script> | |||
{% endblock %} |
@@ -104,6 +104,8 @@ | |||
{% include '@LcShop/backend/order/form/modal_sendpaymentlink.html.twig' %} | |||
{% endif %} | |||
{% include '@LcShop/backend/order/form/modal_orderstatushistories.html.twig' %} | |||
</div> | |||
</div> | |||
{% endblock %} | |||
@@ -111,5 +113,5 @@ | |||
{% block script_javascript %} | |||
{{ parent() }} | |||
{% include '@LcShop/backend/default/block/script-vuejs.html.twig' %} | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/order/vuejs-order.js') }}"></script> | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/order/vuejs-order.js')|lc_cache }}"></script> | |||
{% endblock %} |
@@ -311,6 +311,6 @@ | |||
{% block script_javascript %} | |||
{{ parent() }} | |||
{% include '@LcShop/backend/default/block/script-vuejs.html.twig' %} | |||
<script src="{{ asset('assets/js/backend/script/productfamily/vuejs-advanced-edition-product-family.js') }}"></script> | |||
<script src="{{ asset('assets/js/backend/script/productfamily/vuejs-advanced-edition-product-family.js')|lc_cache }}"></script> | |||
{% endblock %} |
@@ -20,5 +20,5 @@ | |||
{% block script_javascript %} | |||
{{ parent() }} | |||
{% include '@LcShop/backend/default/block/script-vuejs.html.twig' %} | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/productfamily/vuejs-product-family.js') }}"></script> | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/productfamily/vuejs-product-family.js')|lc_cache }}"></script> | |||
{% endblock %} |
@@ -48,6 +48,7 @@ | |||
{% if formValues.behaviorExpirationDate %}behaviorExpirationDate: "{{ formValues.behaviorExpirationDate }}",{% endif %} | |||
{% if formValues.propertyExpirationDate %}propertyExpirationDate: "{{ formValues.propertyExpirationDate }}",{% endif %} | |||
{% if formValues.activeProducts %}activeProducts: "{{ formValues.activeProducts }}",{% endif %} | |||
{% if formValues.productsQuantityAsTitle %}productsQuantityAsTitle: {{ formValues.productsQuantityAsTitle }},{% endif %} | |||
}; | |||
multiplyingFactor = "{{ form.multiplyingFactor.vars.value }}" |
@@ -68,7 +68,7 @@ | |||
#new | |||
{% endif %} <br/> | |||
{% verbatim %}{{keyForm}}{% endverbatim %}<i class="fa fa-fw fa-sort"></i></td> | |||
{{ _self.product_field(4, product.title, 'title') }} | |||
{{ _self.product_field(4, product.title, 'title', false, "",'v-show="productFamily.productsQuantityAsTitle == false"' ) }} | |||
{{ _self.product_field(2, product.quantity, 'quantity') }} | |||
{{ _self.product_field(2, product.unit, 'unit', 'unitWording') }} | |||
{{ _self.product_field(3, product.buyingPriceByRefUnit, 'buyingPriceByRefUnit',false, '€', 'v-show="productFamily.behaviorPrice == \'' ~ constant('Lc\\ShopBundle\\Model\\ProductFamily::BEHAVIOR_PRICE_BY_REFERENCE_UNIT') ~ '\'"') }} |
@@ -2,7 +2,7 @@ | |||
{% import '@LcShop/backend/productfamily/macros.html.twig' as product_family_macros %} | |||
{% trans_default_domain 'lcshop' %} | |||
{#{% import _self as formMacros %}#} | |||
{# {% import _self as formMacros %} #} | |||
<div class="row"> | |||
{{ macros.startCard(12, 'ProductFamily.products', 'light', true) }} | |||
@@ -13,51 +13,75 @@ | |||
<tr> | |||
<th> | |||
</th> | |||
<th colspan="4" class="string"> | |||
<th colspan="4" class="string" v-show="productsQuantityAsTitle == false"> | |||
Titre | |||
<button v-on:click="emptyProductsField('title');" | |||
class="btn btn-empty-field" type="button"><i class="fa fa-undo"></i></button> | |||
</th> | |||
<th colspan="2" class="string "> | |||
Quantité | |||
<button v-on:click="emptyProductsField('quantity');" | |||
class="btn btn-empty-field" type="button"><i class="fa fa-undo"></i></button> | |||
</th> | |||
<th colspan="2" class="quantity"> | |||
Unité | |||
<button v-on:click="emptyProductsField('unit');" | |||
class="btn btn-empty-field" type="button"><i class="fa fa-undo"></i></button> | |||
</th> | |||
<th v-show="getBehaviorPrice() == '{{ constant('Lc\\ShopBundle\\Model\\ProductFamily::BEHAVIOR_PRICE_BY_REFERENCE_UNIT') }}'" | |||
colspan="3" class="buyingPriceByRefUnit "> | |||
PA HT / ${ getUnitReference() } | |||
<button v-on:click="emptyProductsField('buyingPriceByRefUnit');" | |||
class="btn btn-empty-field" type="button"><i class="fa fa-undo"></i></button> | |||
</th> | |||
<th v-show="getBehaviorPrice() == '{{ constant('Lc\\ShopBundle\\Model\\ProductFamily::BEHAVIOR_PRICE_BY_REFERENCE_UNIT') }}'" | |||
colspan="3" class="priceByRefUnit"> | |||
PA TTC / ${ getUnitReference() } | |||
<button v-on:click="emptyProductsField('buyingPriceByRefUnitWithTax');" | |||
class="btn btn-empty-field" type="button"><i class="fa fa-undo"></i></button> | |||
</th> | |||
<th colspan="3" class="price main-info"> | |||
PA HT | |||
<button v-show="productFamily.behaviorPrice == '{{ constant('Lc\\ShopBundle\\Model\\ProductFamily::BEHAVIOR_PRICE_BY_PIECE') }}'" v-on:click="emptyProductsField('buyingPrice');" | |||
class="btn btn-empty-field" type="button"><i class="fa fa-undo"></i></button> | |||
</th> | |||
<th colspan="3" class="price" | |||
v-show="getBehaviorPrice() =='{{ constant('Lc\\ShopBundle\\Model\\ProductFamily::BEHAVIOR_PRICE_BY_PIECE') }}'"> | |||
PA TTC | |||
<button v-on:click="emptyProductsField('buyingPriceWithTax');" | |||
class="btn btn-empty-field" type="button"><i class="fa fa-undo"></i></button> | |||
</th> | |||
<th colspan="3" class="main-info"> | |||
Coef | |||
<button v-on:click="emptyProductsField('multiplyingFactor');" | |||
class="btn btn-empty-field" type="button"><i class="fa fa-undo"></i></button> | |||
</th> | |||
<th v-show="getBehaviorPrice() == '{{ constant('Lc\\ShopBundle\\Model\\ProductFamily::BEHAVIOR_PRICE_BY_REFERENCE_UNIT') }}'" | |||
colspan="3" class=""> | |||
PV HT / ${ getUnitReference() } | |||
<button v-on:click="emptyProductsField('priceByRefUnit');" | |||
class="btn btn-empty-field" type="button"><i class="fa fa-undo"></i></button> | |||
</th> | |||
<th v-show="getBehaviorPrice() == '{{ constant('Lc\\ShopBundle\\Model\\ProductFamily::BEHAVIOR_PRICE_BY_REFERENCE_UNIT') }}'" | |||
colspan="3" class="price"> | |||
PV TTC / ${ getUnitReference() } | |||
<button v-on:click="emptyProductsField('priceByRefUnitWithTax');" | |||
class="btn btn-empty-field" type="button"><i class="fa fa-undo"></i></button> | |||
</th> | |||
<th colspan="3" class="price"> | |||
{# v-show="getBehaviorPrice() =='{{ constant('Lc\\ShopBundle\\Model\\ProductFamily::BEHAVIOR_PRICE_BY_PIECE') }}'">#} | |||
{# v-show="getBehaviorPrice() =='{{ constant('Lc\\ShopBundle\\Model\\ProductFamily::BEHAVIOR_PRICE_BY_PIECE') }}'"> #} | |||
PV HT | |||
<button v-show="productFamily.behaviorPrice == '{{ constant('Lc\\ShopBundle\\Model\\ProductFamily::BEHAVIOR_PRICE_BY_PIECE') }}'" v-on:click="emptyProductsField('price');" | |||
class="btn btn-empty-field" type="button"><i class="fa fa-undo"></i></button> | |||
</th> | |||
<th colspan="3" class="price main-info"> | |||
PV TTC | |||
<button v-show="productFamily.behaviorPrice == '{{ constant('Lc\\ShopBundle\\Model\\ProductFamily::BEHAVIOR_PRICE_BY_PIECE') }}'" v-on:click="emptyProductsField('priceWithTax');" | |||
class="btn btn-empty-field" type="button"><i class="fa fa-undo"></i></button> | |||
</th> | |||
<th colspan="2"> | |||
Marge HT | |||
@@ -66,14 +90,20 @@ | |||
<th colspan="2" class="" | |||
v-show="behaviorExpirationDate== '{{ constant('Lc\\ShopBundle\\Model\\ProductFamily::BEHAVIOR_EXPIRATION_DATE_BY_PRODUCT') }}'"> | |||
<span style="text-transform: uppercase"> ${typeExpirationDate}</span> | |||
<button v-on:click="emptyProductsField('propertyExpirationDate');" | |||
class="btn btn-empty-field" type="button"><i class="fa fa-undo"></i></button> | |||
</th> | |||
<th colspan="2" | |||
v-show="behaviorCountStock== '{{ constant('Lc\\ShopBundle\\Model\\ProductFamily::BEHAVIOR_COUNT_STOCK_BY_PRODUCT') }}'"> | |||
Stock | |||
<button v-on:click="emptyProductsField('availableQuantity');" | |||
class="btn btn-empty-field" type="button"><i class="fa fa-undo"></i></button> | |||
</th> | |||
<th colspan="2" | |||
v-show="behaviorCountStock== '{{ constant('Lc\\ShopBundle\\Model\\ProductFamily::BEHAVIOR_COUNT_STOCK_BY_PRODUCT') }}' && behaviorStockWeek!= '{{ constant('Lc\\ShopBundle\\Model\\ProductFamily::BEHAVIOR_STOCK_WEEK_NON_RENEWABLE') }}'"> | |||
Stock par défaut | |||
<button v-on:click="emptyProductsField('availableQuantityDefault');" | |||
class="btn btn-empty-field" type="button"><i class="fa fa-undo"></i></button> | |||
</th> | |||
<th colspan="2" | |||
v-show="behaviorCountStock== '{{ constant('Lc\\ShopBundle\\Model\\ProductFamily::BEHAVIOR_COUNT_STOCK_BY_PRODUCT') }}' || behaviorCountStock== '{{ constant('Lc\\ShopBundle\\Model\\ProductFamily::BEHAVIOR_COUNT_STOCK_BY_MEASURE') }}'"> | |||
@@ -97,8 +127,9 @@ | |||
<th> | |||
Rappel | |||
</th> | |||
<th colspan="4" class="string"> | |||
<th colspan="4" class="string" v-show="productsQuantityAsTitle == false"> | |||
${title} | |||
</th> | |||
<th colspan="2" class="string "> | |||
${productFamily.quantity} | |||
@@ -137,7 +168,7 @@ | |||
</th> | |||
<th colspan="3" class="price"> | |||
{# v-show="getBehaviorPrice() =='{{ constant('Lc\\ShopBundle\\Model\\ProductFamily::BEHAVIOR_PRICE_BY_PIECE') }}'">#} | |||
{# v-show="getBehaviorPrice() =='{{ constant('Lc\\ShopBundle\\Model\\ProductFamily::BEHAVIOR_PRICE_BY_PIECE') }}'"> #} | |||
${productFamily.price} | |||
</th> | |||
<th colspan="3" class="price main-info"> | |||
@@ -169,21 +200,26 @@ | |||
</tfoot> | |||
</table> | |||
<button type="button" class="add_tag_link btn-add-product btn btn-default" @click="addProductForm"><span | |||
class="fa fa-plus"></span> Ajouter une déclinaison | |||
</button> | |||
<p> | |||
<strong>Aide à l'utilisation - Raccourci clavier</strong> | |||
<ul> | |||
<li><strong>TAB</strong> : Champ suivant</li> | |||
<li><strong>SHIFT + TAB</strong> : Champ précédent</li> | |||
<li><strong>FLÈCHE BAS</strong> : Déclinaison suivante</li> | |||
<li><strong>FLÈCHE HAUT</strong> : Déclinaison précédente</li> | |||
<li><strong>SHIFT + [+]</strong> : Ajout d'une nouvelle déclinaison</li> | |||
</ul> | |||
</p> | |||
<div class="clearfix"></div> | |||
<div class="col-12"> | |||
<button type="button" class="add_tag_link btn-add-product btn btn-default" @click="addProductForm"><span | |||
class="fa fa-plus"></span> Ajouter une déclinaison | |||
</button> | |||
{{ form_row(form.productsQuantityAsTitle, {"attr":{'v-model' : 'productsQuantityAsTitle'}}) }} | |||
<p> | |||
<strong>Aide à l'utilisation - Raccourci clavier</strong> | |||
<ul> | |||
<li><strong>TAB</strong> : Champ suivant</li> | |||
<li><strong>SHIFT + TAB</strong> : Champ précédent</li> | |||
<li><strong>FLÈCHE BAS</strong> : Déclinaison suivante</li> | |||
<li><strong>FLÈCHE HAUT</strong> : Déclinaison précédente</li> | |||
<li><strong>SHIFT + [+]</strong> : Ajout d'une nouvelle déclinaison</li> | |||
</ul> | |||
</p> | |||
</div> | |||
<div class="clearfix"></div> | |||
{{ macros.endCard() }} | |||
</div> | |||
@@ -195,7 +231,7 @@ | |||
{% for keyForm,i in sortableProductsField %} | |||
{% set product = form.products[i] %} | |||
{#{% if product.vars.value.status >= 0 and (product.vars.value.originProduct is null or product.vars.value.originProduct == false) %}#} | |||
{# {% if product.vars.value.status >= 0 and (product.vars.value.originProduct is null or product.vars.value.originProduct == false) %} #} | |||
window.productForm[{{ keyForm }}] = { | |||
{% if product.vars.value.originProduct is defined %}originProduct: parseInt({{ product.vars.value.originProduct }}),{% endif %} | |||
{% if product.vars.value.status is defined %}status: parseInt({{ product.vars.value.status }}),{% endif %} | |||
@@ -210,10 +246,10 @@ | |||
{% if product.vars.value.availableQuantity %}availableQuantity: parseInt({{ product.vars.value.availableQuantity }}),{% endif %} | |||
{% if product.vars.value.availableQuantityDefault %}availableQuantityDefault: parseInt({{ product.vars.value.availableQuantityDefault }}),{% endif %} | |||
{% if product.vars.value.propertyExpirationDate %}propertyExpirationDate: "{{ product.vars.value.propertyExpirationDate }}",{% endif %} | |||
{#{% if product.vars.value.expirationDate %}expirationDate: "{{ product.vars.value.expirationDate|date('d/m/Y') }}"{% endif %}#} | |||
{# {% if product.vars.value.expirationDate %}expirationDate: "{{ product.vars.value.expirationDate|date('d/m/Y') }}"{% endif %} #} | |||
}; | |||
window.formProductTemplate[{{ keyForm }}] = '{{ product_family_macros.product_row(product, totalProductOrdered[product.vars.value.id])|replace({"\n":' ', "\r":' ', "'" : "\\'"})|raw }}'; | |||
{#{% endif %}#} | |||
{# {% endif %} #} | |||
{% endfor %} | |||
</script> |
@@ -18,5 +18,5 @@ | |||
{% block script_javascript %} | |||
{{ parent() }} | |||
{% include '@LcShop/backend/default/block/script-vuejs.html.twig' %} | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/reductioncart/vuejs-reduction-cart.js') }}"></script> | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/reductioncart/vuejs-reduction-cart.js')|lc_cache }}"></script> | |||
{% endblock %} |
@@ -18,5 +18,5 @@ | |||
{% block script_javascript %} | |||
{{ parent() }} | |||
{% include '@LcShop/backend/default/block/script-vuejs.html.twig' %} | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/reductioncatalog/vuejs-reduction-catalog.js') }}"></script> | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/reductioncatalog/vuejs-reduction-catalog.js')|lc_cache }}"></script> | |||
{% endblock %} |
@@ -87,6 +87,6 @@ | |||
{% block script_javascript %} | |||
{{ parent() }} | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/ticket/init-edit.js') }}"></script> | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/ticket/init-edit.js')|lc_cache }}"></script> | |||
{% endblock %} |
@@ -1,15 +1,21 @@ | |||
{% if is_granted('ROLE_SUPER_ADMIN') %} | |||
{% if is_dropdown %} | |||
<a class="btn dropdown-item {{ action.css_class|default('btn-default') }}" href="{{ merchantUtils.merchantCurrent.getMerchantConfig('url') }}?_switch_user={{ item.username }}" target="_blank"> | |||
{%- if action.icon %}<i class="fa fa-fw fa-{{ action.icon }}"></i> {% endif -%} | |||
{{ action.label|trans(arguments = trans_parameters|merge({ '%entity_id%': item_id }), domain = translation_domain) }} | |||
</a> | |||
{% else %} | |||
<a class="btn {{ action.css_class|default('btn-default') }}" data-toggle="tooltip" | |||
title="{{ action.label|trans(arguments = trans_parameters|merge({ '%entity_id%': item_id }), domain = translation_domain) }}" | |||
href="{{ merchant.getMerchantConfig('url') }}?_switch_user={{ val }}" target="_blank"> | |||
{%- if action.icon %}<i class="fa fa-fw fa-{{ action.icon }}"></i> {% endif -%} | |||
</a> | |||
{% endif %} | |||
{% if 'localhost' in app.request.getSchemeAndHttpHost() %} | |||
{% set href = app.request.getSchemeAndHttpHost()~ '?_switch_user='~item.username %} | |||
{% else %} | |||
{% set href = merchantUtils.merchantCurrent.getMerchantConfig('url')~ '?_switch_user='~item.username %} | |||
{% endif %} | |||
{% if is_dropdown %} | |||
<a class="btn dropdown-item {{ action.css_class|default('btn-default') }}" href="{{ href }}" | |||
target="_blank"> | |||
{%- if action.icon %}<i class="fa fa-fw fa-{{ action.icon }}"></i> {% endif -%} | |||
{{ action.label|trans(arguments = trans_parameters|merge({ '%entity_id%': item_id }), domain = translation_domain) }} | |||
</a> | |||
{% else %} | |||
<a class="btn {{ action.css_class|default('btn-default') }}" data-toggle="tooltip" | |||
title="{{ action.label|trans(arguments = trans_parameters|merge({ '%entity_id%': item_id }), domain = translation_domain) }}" | |||
href="{{ href }}" target="_blank"> | |||
{%- if action.icon %}<i class="fa fa-fw fa-{{ action.icon }}"></i> {% endif -%} | |||
</a> | |||
{% endif %} | |||
{% endif %} |
@@ -41,6 +41,6 @@ | |||
{{ parent() }} | |||
{% include '@LcShop/backend/default/block/script-vuejs.html.twig' %} | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/user/init-edit.js') }}"></script> | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/user/init-edit.js')|lc_cache }}"></script> | |||
{% endblock %} |
@@ -0,0 +1,10 @@ | |||
{% if value|length > 0 %} | |||
<span class="badge badge-success"> | |||
{{ value|length }} commandes | |||
</span> | |||
{% else %} | |||
<span class="badge badge-danger"> | |||
0 commandes | |||
</span> | |||
{% endif %} |
@@ -82,7 +82,7 @@ | |||
{% block script_javascript %} | |||
{{ parent() }} | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/default/init-list.js') }}"></script> | |||
<script src="{{ asset('bundles/lcshop/js/backend/script/default/init-list.js')|lc_cache }}"></script> | |||
{% endblock %} | |||
@@ -132,7 +132,7 @@ class CsvGenerator | |||
$response = new StreamedResponse(function () { | |||
$this->createCsv('php://output'); | |||
}); | |||
$response->headers->set('Content-Encoding', $this->toEncoding); | |||
$response->headers->set('Content-Type', 'application/force-download'); | |||
$response->headers->set('Content-Disposition', 'attachment; filename="'.$this->titleDocument.'.csv"'); | |||
return $response; |
@@ -11,52 +11,54 @@ trait OrderUtilsStockTrait | |||
{ | |||
public function deductAvailabilityProduct(\Lc\ShopBundle\Model\OrderShop $orderShop) | |||
{ | |||
//TODO ne pas déduire des stocks les orderProduct marqué en relivraison | |||
foreach ($orderShop->getOrderProducts() as $orderProduct) { | |||
switch ($orderProduct->getProduct()->getProductFamily()->getBehaviorCountStock()) { | |||
case ProductFamily::BEHAVIOR_COUNT_STOCK_BY_MEASURE : | |||
//Si ce n'esrt pas une relivraison OU si c'est une relivraison + relivraison + ce n'est pas une erruer producteur | |||
if (!$orderProduct->isRedelivery() || ($orderProduct->isRedelivery() && $orderProduct->isRedeliverySupplierOrder() && !$orderProduct->isRedeliverySupplierMistake())) { | |||
switch ($orderProduct->getProduct()->getProductFamily()->getBehaviorCountStock()) { | |||
case ProductFamily::BEHAVIOR_COUNT_STOCK_BY_MEASURE : | |||
//Disponibilité par unité de référence | |||
$oldAvailability = $orderProduct->getProduct()->getAvailableQuantityInherited(); | |||
$newAvailability = $oldAvailability - ($orderProduct->getQuantityOrder() * ($orderProduct->getQuantityProduct() / $orderProduct->getUnit()->getCoefficient())); | |||
//Disponibilité par unité de référence | |||
$oldAvailability = $orderProduct->getProduct()->getAvailableQuantityInherited(); | |||
$newAvailability = $oldAvailability - ($orderProduct->getQuantityOrder() * ($orderProduct->getQuantityProduct() / $orderProduct->getUnit()->getCoefficient())); | |||
$productFamily = $orderProduct->getProduct()->getProductFamily(); | |||
$productFamily->setAvailableQuantity($newAvailability); | |||
$productFamily->setUpdatedBy($orderShop->getUser()); | |||
$productFamily = $orderProduct->getProduct()->getProductFamily(); | |||
$productFamily->setAvailableQuantity($newAvailability); | |||
$productFamily->setUpdatedBy($orderShop->getUser()); | |||
$this->em->persist($productFamily); | |||
$this->em->persist($productFamily); | |||
break; | |||
case ProductFamily::BEHAVIOR_COUNT_STOCK_BY_PRODUCT_FAMILY : | |||
break; | |||
case ProductFamily::BEHAVIOR_COUNT_STOCK_BY_PRODUCT_FAMILY : | |||
$oldAvailability = $orderProduct->getProduct()->getAvailableQuantityInherited(); | |||
$newAvailability = $oldAvailability - $orderProduct->getQuantityOrder(); | |||
$oldAvailability = $orderProduct->getProduct()->getAvailableQuantityInherited(); | |||
$newAvailability = $oldAvailability - $orderProduct->getQuantityOrder(); | |||
$productFamily = $orderProduct->getProduct()->getProductFamily(); | |||
$productFamily->setAvailableQuantity($newAvailability); | |||
$productFamily->setUpdatedBy($orderShop->getUser()); | |||
$productFamily = $orderProduct->getProduct()->getProductFamily(); | |||
$productFamily->setAvailableQuantity($newAvailability); | |||
$productFamily->setUpdatedBy($orderShop->getUser()); | |||
$this->em->persist($productFamily); | |||
$this->em->persist($productFamily); | |||
break; | |||
case ProductFamily::BEHAVIOR_COUNT_STOCK_BY_PRODUCT : | |||
$oldAvailability = $orderProduct->getProduct()->getAvailableQuantityInherited(); | |||
$newAvailability = $oldAvailability - $orderProduct->getQuantityOrder(); | |||
break; | |||
case ProductFamily::BEHAVIOR_COUNT_STOCK_BY_PRODUCT : | |||
$oldAvailability = $orderProduct->getProduct()->getAvailableQuantityInherited(); | |||
$newAvailability = $oldAvailability - $orderProduct->getQuantityOrder(); | |||
$product = $orderProduct->getProduct(); | |||
$product->setAvailableQuantity($newAvailability); | |||
$product->setUpdatedBy($orderShop->getUser()); | |||
$product = $orderProduct->getProduct(); | |||
$product->setAvailableQuantity($newAvailability); | |||
$product->setUpdatedBy($orderShop->getUser()); | |||
$this->em->persist($product); | |||
$this->em->persist($product); | |||
break; | |||
} | |||
break; | |||
} | |||
$this->em->flush(); | |||
$this->em->flush(); | |||
} | |||
} | |||
} | |||
public function isProductAvailable(Product $product, $quantityOrder = 0, $checkCart = false, $orderShop = null) | |||
{ | |||
if ($product->getStatus() != 1 || $product->getProductFamily()->getStatus() != 1) { |
@@ -30,7 +30,6 @@ class OrderShopPriceUtils implements OrderShopPriceUtilsInterface | |||
return $total; | |||
} | |||
//Inclus les ReductionCatalog des OrderProducts | |||
public function getMarginOrderProducts(OrderShopInterface $orderShop): float | |||
{ | |||
@@ -41,6 +40,33 @@ class OrderShopPriceUtils implements OrderShopPriceUtilsInterface | |||
return $total; | |||
} | |||
public function getMarginOrderProductsWithReductions(OrderShopInterface $orderShop): float | |||
{ | |||
$total = $this->getMarginOrderProducts($orderShop); | |||
$totalReductionAmount = 0; | |||
foreach ($orderShop->getOrderReductionCarts() as $orderReductionCart) { | |||
$totalReductionAmount += $this->getOrderProductsReductionCartAmountWithoutTax($orderShop, $orderReductionCart); | |||
} | |||
foreach ($orderShop->getOrderReductionCredits() as $orderReductionCredit) { | |||
$totalReductionAmount += $this->getOrderProductsReductionCreditAmountWithoutTax($orderShop, $orderReductionCredit); | |||
} | |||
$total -= $totalReductionAmount; | |||
return $total; | |||
} | |||
public function getMarginOrderProductsWithReductionsPercent(OrderShopInterface $orderShop): float | |||
{ | |||
if ($this->getTotalOrderProducts($orderShop)) { | |||
return $this->round($this->getMarginOrderProductsWithReductions($orderShop) / $this->getTotalOrderProductsWithReductions($orderShop) * 100); | |||
} else { | |||
return 0; | |||
} | |||
} | |||
public function getMarginOrderProductsPercent(OrderShopInterface $orderShop): float | |||
{ | |||
if ($this->getTotalOrderProducts($orderShop)) { | |||
@@ -48,15 +74,33 @@ class OrderShopPriceUtils implements OrderShopPriceUtilsInterface | |||
} else { | |||
return 0; | |||
} | |||
} | |||
public function getBrandTaxesOrderProductsWithReductionsPercent(OrderShopInterface $orderShop): float | |||
{ | |||
if ($this->getTotalOrderProducts($orderShop)) { | |||
return $this->round($this->getMarginOrderProducts($orderShop) / $this->getTotalBuyingPriceOrderProducts($orderShop->getOrderProducts()) * 100); | |||
} else { | |||
return 0; | |||
} | |||
} | |||
public function getTotalOrderProductsWithTax(OrderShopInterface $orderShop): float | |||
{ | |||
return $this->getTotalOrderProductsWithTaxByOrderProducts($orderShop->getOrderProducts()); | |||
} | |||
public function getTotalBuyingPriceOrderProducts($orderProducts): float | |||
{ | |||
$total = 0; | |||
foreach ($orderProducts as $orderProduct) { | |||
$total += $this->orderProductPriceUtils->getTotalBuyingPrice($orderProduct); | |||
} | |||
return $total; | |||
} | |||
public function getTotalBuyingPriceOrderProductsWithTax($orderProducts): float | |||
{ | |||
$total = 0; | |||
@@ -162,26 +206,6 @@ class OrderShopPriceUtils implements OrderShopPriceUtilsInterface | |||
return $total; | |||
} | |||
public function getMarginOrderProductsWithReductions(OrderShopInterface $orderShop): float | |||
{ | |||
$total = $this->getMarginOrderProducts($orderShop); | |||
$totalReductionAmount = 0; | |||
foreach ($orderShop->getOrderReductionCarts() as $orderReductionCart) { | |||
$totalReductionAmount += $this->getOrderProductsReductionCartAmountWithoutTax($orderShop, $orderReductionCart); | |||
} | |||
foreach ($orderShop->getOrderReductionCredits() as $orderReductionCredit) { | |||
$totalReductionAmount += $this->getOrderProductsReductionCreditAmountWithoutTax($orderShop, $orderReductionCredit); | |||
} | |||
$total -= $totalReductionAmount; | |||
return $total; | |||
} | |||
public function getTotalOrderProductsWithTaxAndReductionCarts(OrderShopInterface $orderShop) | |||
{ | |||
$total = $this->getTotalOrderProductsWithTax($orderShop); | |||
@@ -276,5 +300,35 @@ class OrderShopPriceUtils implements OrderShopPriceUtilsInterface | |||
return $amountWithTax; | |||
} | |||
public function getTotalReductions(OrderShopInterface $orderShop) | |||
{ | |||
$total = 0 ; | |||
foreach($orderShop->getOrderReductionCarts() as $orderReductionCart) { | |||
$total += $this->getOrderProductsReductionCartAmountWithoutTax($orderShop, $orderReductionCart) ; | |||
} | |||
foreach($orderShop->getOrderReductionCredits() as $orderReductionCredit) { | |||
$total += $this->getOrderProductsReductionCreditAmountWithoutTax($orderShop, $orderReductionCredit) ; | |||
} | |||
return $total ; | |||
} | |||
public function getTotalReductionsWithTax(OrderShopInterface $orderShop) | |||
{ | |||
$total = 0 ; | |||
foreach($orderShop->getOrderReductionCarts() as $orderReductionCart) { | |||
$total += $this->getOrderProductsReductionCartAmountWithTax($orderShop, $orderReductionCart) ; | |||
} | |||
foreach($orderShop->getOrderReductionCredits() as $orderReductionCredit) { | |||
$total += $this->getOrderProductsReductionCreditAmountWithTax($orderShop, $orderReductionCredit) ; | |||
} | |||
return $total ; | |||
} | |||
} | |||
@@ -35,7 +35,7 @@ class PriceUtils implements PriceUtilsInterface | |||
$service = 'orderProductPriceUtils'; | |||
} | |||
if ($entity instanceof OrderShopInterface || is_array($entity)) { | |||
if ($entity instanceof OrderShopInterface || is_iterable($entity) || is_array($entity)) { | |||
$service = 'orderShopPriceUtils'; | |||
} | |||
@@ -51,7 +51,7 @@ class PriceUtils implements PriceUtilsInterface | |||
} | |||
} else { | |||
if (!strlen($service)) { | |||
throw new \ErrorException("PriceUtils : le type d'entité n'est pas géré."); | |||
throw new \ErrorException("PriceUtils : le type d'entité n'est pas géré"); | |||
} else { | |||
if (!method_exists($this->$service, $name)) { | |||
throw new \ErrorException("PriceUtils : la méthode " . $name . " du service " . $service . " n'existe pas."); |
@@ -1,6 +1,6 @@ | |||
<?php | |||
namespace Lc\ShopBundle\Services ; | |||
namespace Lc\ShopBundle\Services; | |||
use App\Entity\Product; | |||
use Doctrine\ORM\EntityManagerInterface; | |||
@@ -13,62 +13,62 @@ use Lc\ShopBundle\Model\ProductFamily; | |||
class ProductFamilyUtils | |||
{ | |||
protected $priceUtils ; | |||
protected $em ; | |||
protected $priceUtils; | |||
protected $em; | |||
public function __construct(PriceUtilsInterface $priceUtils, EntityManagerInterface $em) | |||
{ | |||
$this->priceUtils = $priceUtils ; | |||
$this->priceUtils = $priceUtils; | |||
$this->em = $em; | |||
} | |||
public function getCheapestProduct($productFamily) | |||
{ | |||
$priceUtils = $this->priceUtils ; | |||
$priceUtils = $this->priceUtils; | |||
return $this->getCheapestOrMostExpensiveProduct($productFamily, function ($a, $b) use ($priceUtils) { | |||
return $priceUtils->getPriceWithTaxAndReduction($a) > $priceUtils->getPriceWithTaxAndReduction($b) ; | |||
return $priceUtils->getPriceWithTaxAndReduction($a) > $priceUtils->getPriceWithTaxAndReduction($b); | |||
}, true); | |||
} | |||
public function getCheapestProductByRefUnit($productFamily) | |||
{ | |||
$priceUtils = $this->priceUtils ; | |||
$priceUtils = $this->priceUtils; | |||
return $this->getCheapestOrMostExpensiveProduct($productFamily, function ($a, $b) use ($priceUtils) { | |||
return $priceUtils->getPriceByRefUnitWithTaxAndReduction($a) > $priceUtils->getPriceByRefUnitWithTaxAndReduction($b) ; | |||
return $priceUtils->getPriceByRefUnitWithTaxAndReduction($a) > $priceUtils->getPriceByRefUnitWithTaxAndReduction($b); | |||
}, false); | |||
} | |||
public function getMostExpensiveProductByRefUnit($productFamily) | |||
{ | |||
$priceUtils = $this->priceUtils ; | |||
$priceUtils = $this->priceUtils; | |||
return $this->getCheapestOrMostExpensiveProduct($productFamily, function ($a, $b) use ($priceUtils) { | |||
return $priceUtils->getPriceByRefUnitWithTaxAndReduction($a) < $priceUtils->getPriceByRefUnitWithTaxAndReduction($b) ; | |||
return $priceUtils->getPriceByRefUnitWithTaxAndReduction($a) < $priceUtils->getPriceByRefUnitWithTaxAndReduction($b); | |||
}, false); | |||
} | |||
private function getCheapestOrMostExpensiveProduct($productFamily, $comparisonFunction, $returnSelfIfNotActiveProducts) | |||
{ | |||
if($productFamily->getActiveProducts()) { | |||
if ($productFamily->getActiveProducts()) { | |||
$products = $productFamily->getProductsOnline()->getValues(); | |||
if (count($products) > 0) { | |||
usort($products, $comparisonFunction); | |||
return $products[0]; | |||
} | |||
}else{ | |||
} else { | |||
return $productFamily->getOriginProduct(); | |||
} | |||
if ($returnSelfIfNotActiveProducts) { | |||
return $productFamily; | |||
} | |||
else { | |||
} else { | |||
return false; | |||
} | |||
} | |||
public function processBeforePersistProductFamily($productFamily, $editForm=false, $clone =false){ | |||
if($editForm){ | |||
public function processBeforePersistProductFamily($productFamily, $editForm = false, $clone = false) | |||
{ | |||
if ($editForm) { | |||
$this->processReductionCatalog($productFamily, $editForm); | |||
$this->processCategories($productFamily); | |||
} | |||
@@ -102,16 +102,21 @@ class ProductFamilyUtils | |||
} | |||
} | |||
protected function processCloneProduct($productFamily) | |||
{ | |||
foreach ($productFamily->getProducts() as $i => $product) { | |||
$newProduct = clone $product; | |||
$newProduct->setProductFamily($productFamily); | |||
$this->em->persist($newProduct); | |||
$productFamily->addProduct($newProduct); | |||
} | |||
} | |||
protected function processProducts($entity, $clone = false) | |||
{ | |||
if($clone) { | |||
foreach ($entity->getProducts() as $i => $product) { | |||
$newProduct = clone $product; | |||
$newProduct->setProductFamily($entity); | |||
$this->em->persist($newProduct); | |||
$entity->addProduct($newProduct); | |||
} | |||
}else { | |||
if ($clone) { | |||
$this->processCloneProduct($entity); | |||
} else { | |||
//Récupère le product origin | |||
$originProducts = $this->em->getRepository(ProductInterface::class)->findBy(array( | |||
'productFamily' => $entity->getId(), | |||
@@ -143,6 +148,11 @@ class ProductFamilyUtils | |||
foreach ($entity->getProducts() as $product) { | |||
$product->setProductFamily($entity); | |||
if ($entity->getProductsQuantityAsTitle() && $product->getStatus() >= 1) { | |||
$product->setTitle(str_replace('.', ',', $product->getQuantityInherited()) . $product->getUnitInherited()->getWording()); | |||
} | |||
$this->em->persist($product); | |||
$entity->addProduct($product); | |||
} |
@@ -58,6 +58,7 @@ class FrontendTwigExtension extends AbstractExtension | |||
new TwigFunction('get_form_newsletter', [$this, 'getFormNewsletter']), | |||
new TwigFunction('get_merchants', [$this, 'getMerchants']), | |||
new TwigFunction('get_file_manager_folder', [$this, 'getFileManagerFolder']), | |||
new TwigFunction('lc_format_price', [$this, 'formatPrice']), | |||
); | |||
} | |||
@@ -91,10 +92,11 @@ class FrontendTwigExtension extends AbstractExtension | |||
return $form->createView(); | |||
} | |||
public function formatPrice($price) | |||
public function formatPrice($price, $unbreakableSpace = true) | |||
{ | |||
$price = number_format($price, 2, ',', ' '); | |||
$price = $price . ' €'; | |||
$price .= $unbreakableSpace ? ' ' : ' ' ; | |||
$price .= '€' ; | |||
return $price; | |||
} | |||