mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
10 lines
226 B
JavaScript
10 lines
226 B
JavaScript
'use strict';
|
|
|
|
Application.Services.factory('helpers', [function () {
|
|
return ({
|
|
getAmountToPay (price, walletAmount) {
|
|
if (walletAmount > price) { return 0; } else { return price - walletAmount; }
|
|
}
|
|
});
|
|
}]);
|