mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-01-17 06:52:27 +01:00
[feature] allow setting decimal prices
This commit is contained in:
parent
a4bcad3059
commit
73a62bd9a0
@ -8,6 +8,7 @@
|
||||
- Confirmation and error handling while deleting an event
|
||||
- Ability to disable groups, machines, plans, spaces and trainings
|
||||
- Improved responsiveness of machines and spaces lists
|
||||
- Allow setting of decimal prices
|
||||
- Fix a typo: error message while creating a machine slot
|
||||
- Fix a bug: events pagination is bogus in admin's monitoring when selecting non default filter
|
||||
- Fix a bug: social sharing failed for projects with an underscore in their name
|
||||
|
@ -17,6 +17,7 @@
|
||||
</td>
|
||||
<td ng-repeat="group in enabledGroups">
|
||||
<span editable-number="findPriceBy(machinesPrices, machine.id, group.id).amount"
|
||||
e-step="any"
|
||||
onbeforesave="updatePrice($data, findPriceBy(machinesPrices, machine.id, group.id))">
|
||||
{{ findPriceBy(machinesPrices, machine.id, group.id).amount | currency}}
|
||||
</span>
|
||||
|
@ -17,6 +17,7 @@
|
||||
</td>
|
||||
<td ng-repeat="group in enabledGroups">
|
||||
<span editable-number="findPriceBy(spacesPrices, space.id, group.id).amount"
|
||||
e-step="any"
|
||||
onbeforesave="updatePrice($data, findPriceBy(spacesPrices, space.id, group.id))">
|
||||
{{ findPriceBy(spacesPrices, space.id, group.id).amount | currency}}
|
||||
</span>
|
||||
|
@ -14,6 +14,7 @@
|
||||
</td>
|
||||
<td ng-repeat="group in enabledGroups">
|
||||
<span editable-number="findTrainingsPricing(trainingsPricings, training.id, group.id).amount"
|
||||
e-step="any"
|
||||
onbeforesave="updateTrainingsPricing($data, findTrainingsPricing(trainingsPricings, training.id, group.id))">
|
||||
{{ findTrainingsPricing(trainingsPricings, training.id, group.id).amount | currency}}
|
||||
</span>
|
||||
|
Loading…
x
Reference in New Issue
Block a user