feat(API): Service 로직 개선

- EstimateService, ItemService 기능 추가
- OrderService 공정 연동 개선
- SalaryService, ReceivablesService 수정
- HandoverReportService, SiteBriefingService 추가
- Pricing 서비스 추가

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-01-13 19:49:06 +09:00
parent ba5f402cd8
commit 8a5c7b5298
15 changed files with 723 additions and 25 deletions

View File

@@ -7,7 +7,6 @@
use App\Models\Tenants\Deposit;
use App\Models\Tenants\Sale;
use Carbon\Carbon;
use Illuminate\Support\Facades\DB;
/**
* 채권 현황 서비스
@@ -183,6 +182,7 @@ public function summary(array $params): array
/**
* 월 기간 배열 생성
*
* @return array [['start' => 'Y-m-d', 'end' => 'Y-m-d', 'label' => 'YY.MM', 'year' => Y, 'month' => M], ...]
*/
private function generateMonthPeriods(bool $recentYear, string $year): array
@@ -449,4 +449,4 @@ public function updateMemos(array $memos): int
return $updatedCount;
}
}
}