mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-03-01 23:29:23 +01:00
13 lines
297 B
JavaScript
13 lines
297 B
JavaScript
|
'use strict';
|
||
|
|
||
|
Application.Services.factory('AccountingPeriod', ['$resource', function ($resource) {
|
||
|
return $resource('/api/accounting_period/:id',
|
||
|
{ id: '@id' }, {
|
||
|
lastClosingEnd: {
|
||
|
method: 'GET',
|
||
|
url: '/api/accounting_period/last_closing_end'
|
||
|
}
|
||
|
}
|
||
|
);
|
||
|
}]);
|