d7b374f8ab
New features: - ActivityController and manager for CW sales activities (CRUD) - ForecastProductController for opportunity forecast/product lines - CW member cache with dual-layer (in-memory + Redis) resolution - Catalog category/subcategory/ecosystem taxonomy module - Quote statuses type definitions with CW mapping - User-defined fields (UDF) module with cache and event refresh - Company sites CW module with serialization - Procurement manager filters (category, ecosystem, manufacturer, price, stock) - Opportunity notes CRUD and product line management via CW API - Opportunity type definitions endpoint Updates: - OpportunityController: CW refresh, company hydration, activities, custom fields - UserController: cwIdentifier field for CW member linking - CatalogItemController: category/subcategory fields from CW - PermissionNodes: sales note/product CRUD nodes, subCategories, collectPermissions - API routes: procurement categories/filters, sales notes/products, opportunity types - Global events: UDF and member refresh intervals on startup Tests (414 passing): - ActivityController, ForecastProductController, OpportunityController unit tests - UserController cwIdentifier tests - catalogCategories, companySites, memberCache, procurement module tests - activityTypes, opportunityTypes, quoteStatuses type tests - permissionNodes subCategories and getAllPermissionNodes tests - Updated test setup with redis mock, API method mocks, and builder helpers
55 lines
1.8 KiB
TypeScript
55 lines
1.8 KiB
TypeScript
import { createRoute } from "../../modules/api-utils/createRoute";
|
|
import { opportunities } from "../../managers/opportunities";
|
|
import { apiResponse } from "../../modules/api-utils/apiResponse";
|
|
import { ContentfulStatusCode } from "hono/utils/http-status";
|
|
import { authMiddleware } from "../middleware/authorization";
|
|
import { processObjectValuePerms } from "../../modules/permission-utils/processObjectPermissions";
|
|
|
|
/* GET /v1/sales/opportunities */
|
|
export default createRoute(
|
|
"get",
|
|
["/opportunities"],
|
|
async (c) => {
|
|
const page = Number(c.req.query("page") ?? 1);
|
|
const rpp = Number(c.req.query("rpp") ?? 30);
|
|
const search = c.req.query("search") as string;
|
|
const includeClosed = c.req.query("includeClosed") === "true";
|
|
|
|
const data = search
|
|
? await opportunities.search(search, page, rpp, { includeClosed })
|
|
: await opportunities.fetchPages(page, rpp, { includeClosed });
|
|
|
|
const totalRecords = search
|
|
? await opportunities.searchCount(search, { includeClosed })
|
|
: await opportunities.count({ openOnly: !includeClosed });
|
|
|
|
const gatedData = await Promise.all(
|
|
data.map((item) =>
|
|
processObjectValuePerms(
|
|
item.toJson(),
|
|
"obj.opportunity",
|
|
c.get("user"),
|
|
),
|
|
),
|
|
);
|
|
|
|
const response = apiResponse.successful(
|
|
"Opportunities fetched successfully!",
|
|
gatedData,
|
|
{
|
|
pagination: {
|
|
previousPage: page <= 1 ? null : page - 1,
|
|
currentPage: page,
|
|
nextPage: page >= totalRecords / rpp ? null : page + 1,
|
|
totalPages: Math.ceil(totalRecords / rpp),
|
|
totalRecords,
|
|
listedRecords: rpp,
|
|
},
|
|
},
|
|
);
|
|
|
|
return c.json(response, response.status as ContentfulStatusCode);
|
|
},
|
|
authMiddleware({ permissions: ["sales.opportunity.fetch.many"] }),
|
|
);
|