Skip to content

Commit

Permalink
fix in lettura quantita' con pezzatura
Browse files Browse the repository at this point in the history
  • Loading branch information
madbob committed Oct 19, 2023
1 parent 13f7ccd commit d6d7494
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 24 deletions.
39 changes: 15 additions & 24 deletions code/app/BookedProduct.php
Original file line number Diff line number Diff line change
Expand Up @@ -199,25 +199,26 @@ public function getTrueQuantityAttribute()
return $this->normalizeQuantity('quantity');
}

/*
Questa funzione esiste solo come omologo per true_quantity, ma si assume
che la quantità consegnata sia sempre espressa nel modo corretto
(ovvero: a peso, in caso di pezzatura)
*/
public function getTrueDeliveredAttribute()
{
return $this->normalizeQuantity('delivered');
return $this->delivered;
}

/*
Questa funzione è intesa solo per essere invocata da
BookedProductVariant per ottenere il peso di base del prodotto, su cui
applicare le differenze peso. Evitare di usarla altrove
*/
public function basicWeight($attribute)
{
$attribute = 'true_' . $attribute;

/*
Se il prodotto ha una unità di misura non discreta (e.g. Chili), la
quantità corrisponde al peso
*/
if ($this->product->measure->discrete == false) {
if ($this->product->portion_quantity > 0) {
$ret = $this->product->portion_quantity * $this->$attribute;
}
else {
$ret = $this->$attribute;
}
$ret = $this->$attribute;
}
else {
$ret = $this->product->weight * $this->$attribute;
Expand Down Expand Up @@ -268,12 +269,7 @@ private function getPendingValue($type)
return $this->fixQuantity('quantity', true) + $this->getValue('modifier:all');

case 'weight':
if ($this->product->measure->discrete) {
return $this->fixWeight('quantity');
}
else {
return $this->fixWeight('true_quantity');
}
return $this->fixWeight('quantity');
}

return 0;
Expand All @@ -289,12 +285,7 @@ private function getShippedValue($type)
return $this->final_price + $this->getValue('modifier:all');

case 'weight':
if ($this->product->measure->discrete) {
return $this->fixWeight('delivered');
}
else {
return $this->fixWeight('true_delivered');
}
return $this->fixWeight('delivered');
}

return 0;
Expand Down
3 changes: 3 additions & 0 deletions code/app/Importers/CSV/Deliveries.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ public function guess($request)
'sorting_fields' => $this->fields(),
'extra_fields' => [
'aggregate_id' => $request->input('aggregate_id'),
],
'extra_description' => [
_i("Nota bene: come nelle normali consegne, si assume che la quantità consegnata dei prodotti con pezzatura sia qui espressa a peso e non in numero di pezzi."),
]
]);
}
Expand Down

0 comments on commit d6d7494

Please sign in to comment.