Skip to content

Commit

Permalink
fix sintattico
Browse files Browse the repository at this point in the history
  • Loading branch information
madbob committed Feb 7, 2024
1 parent 74b5ead commit 1233671
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions code/app/Formatters/Order.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,10 @@ public static function formattableColumns($type = null)
},
],

'code' => static::formatCode(),
'quantity' => static::formatQuantity(),
'boxes' => static::formatBoxes(),
'measure' => static::formatMeasure(),
'code' => self::formatCode(),
'quantity' => self::formatQuantity(),
'boxes' => self::formatBoxes(),
'measure' => self::formatMeasure(),

'category' => (object) [
'name' => _i('Categoria'),
Expand All @@ -139,7 +139,7 @@ public static function formattableColumns($type = null)
}
],

'price' => static::formatPrice(),
'price' => self::formatPrice(),
];

if ($type == 'summary') {
Expand Down

0 comments on commit 1233671

Please sign in to comment.