Construction Company Website Development on 1C-Bitrix

Our company is engaged in the development, support and maintenance of Bitrix and Bitrix24 solutions of any complexity. From simple one-page sites to complex online stores, CRM systems with 1C and telephony integration. The experience of developers is confirmed by certificates from the vendor.
Showing 1 of 1All 1626 services
Construction Company Website Development on 1C-Bitrix
Complex
from 1 week to 3 months
Frequently Asked Questions

Our competencies:

Development stages

Latest works

  • image_website-b2b-advance_0.webp
    B2B ADVANCE company website development
    1356
  • image_bitrix-bitrix-24-1c_fixper_448_0.webp
    Website development for FIXPER company
    943
  • image_bitrix-bitrix-24-1c_development_of_an_online_appointment_booking_widget_for_a_medical_center_594_0.webp
    Development based on Bitrix, Bitrix24, 1C for the company Development of an Online Appointment Booking Widget for a Medical Center
    693
  • image_bitrix-bitrix-24-1c_mirsanbel_458_0.webp
    Development based on 1C Enterprise for MIRSANBEL
    828
  • image_crm_dolbimby_434_0.webp
    Website development on CRM Bitrix24 for DOLBIMBY
    731
  • image_crm_technotorgcomplex_453_0.webp
    Development based on Bitrix24 for the company TECHNOTORGKOMPLEKS
    1073

A construction company's website is not just a business card. A general contractor works with two different audiences: a private client looking for a renovation contractor, and a corporate client submitting tender documentation for a project. Both scenarios require different presentation, different feedback forms, and different levels of detail. We have already launched more than 15 such projects — each with a unique architecture adapted for a dual funnel. Our experience shows that Bitrix allows solving both tasks within a single site, but the data structure must be laid out taking this duality into account.

Our turnkey construction company website development on 1C-Bitrix costs from $5,000 and is completed within 4-6 weeks for a basic package. We'll evaluate your project for free — write to us for a consultation.

How to filter the portfolio by client type?

A private client doesn't want to see industrial workshops, and a tender manager doesn't want to see bathroom renovations. The CLIENT_TYPE property in the project card solves this: on the service page, only relevant works are displayed. In the PORTFOLIO infoblock, each project is assigned a type (B2B, B2C, or both). On the frontend, bitrix:catalog.smart_filter with a switch "For Home / For Business" hides irrelevant positions. On the portfolio map, markers are clustered via ymaps.Clusterer — clicking reveals an "after" photo, area, and a link to details.

Approach Typical site Our solution
Filter by client None: all projects in one feed CLIENT_TYPE property, switch on catalog page
Conversion to request ~1.2% ~3.8% (3.2x higher)
Time to find relevant project 2–3 minutes 15–20 seconds

Our clients save up to 30% of their budget due to automatic filtering of irrelevant requests. Our multi-step calculator is 2.5 times more effective than a simple calculator.

Why is a multi-step calculator more effective than a simple one?

A simple calculator outputs a single number — the client doesn't trust it because they don't understand the components. A multi-step calculator breaks down the cost into components: base rate, surcharge for number of floors, foundation type. According to our data, this approach increases conversion to request 2.5 times compared to a single-page calculator. Trust grows when the client sees a transparent breakdown and can adjust parameters.

How we build the calculator: deep dive

The calculator is the highest conversion element. Four steps:

  1. Type of work — new construction, renovation, reconstruction, finishing.
  2. Object parameters — area (slider + manual input), number of floors, foundation (for new construction), current condition (for renovation).
  3. Materials — ready-made sets (economy, standard, premium) or manual selection by category.
  4. Result — cost range, timeframe, button "Get an accurate estimate".

Highload block CALC_RATES with fields: UF_WORK_TYPE, UF_MATERIAL_CLASS, UF_BASE_RATE, UF_FLOOR_COEFF, UF_FOUNDATION_COEFF, UF_REGION_COEFF. The manager updates rates without a developer — a new record is automatically picked up by the calculator.

Server-side. Custom controller CalcEstimateController with AJAX method calculateAction. Full listing:

namespace Project\Component;

use Bitrix\Main\Engine\Controller;
use Bitrix\Main\Engine\ActionFilter;

class CalcEstimateController extends Controller
{
    public function configureActions(): array
    {
        return [
            'calculate' => [
                'prefilters' => [
                    new ActionFilter\HttpMethod([ActionFilter\HttpMethod::METHOD_POST]),
                    new ActionFilter\Csrf(),
                ],
            ],
        ];
    }

    public function calculateAction(
        string $workType,
        float $area,
        int $floors,
        string $materialClass,
        string $foundation = ''
    ): array {
        $rates = HighloadManager::getRow('CALC_RATES', [
            'UF_WORK_TYPE' => $workType,
            'UF_MATERIAL_CLASS' => $materialClass,
        ]);

        if (!$rates) {
            throw new ArgumentException('Unknown combination');
        }

        $base = $rates['UF_BASE_RATE'] * $area;
        $floorMultiplier = $floors > 1
            ? pow($rates['UF_FLOOR_COEFF'], $floors - 1)
            : 1.0;

        $foundationMultiplier = 1.0;
        if ($foundation && $workType === 'new_build') {
            $foundationMultiplier = $rates['UF_FOUNDATION_COEFF'];
        }

        $total = $base * $floorMultiplier * $foundationMultiplier;

        return [
            'estimate_min' => round($total * 0.85),
            'estimate_max' => round($total * 1.15),
            'timeline_weeks' => $this->estimateTimeline($workType, $area),
            'breakdown' => [
                'base' => round($base),
                'floor_adjustment' => round($base * ($floorMultiplier - 1)),
                'foundation_adjustment' => round($base * $floorMultiplier * ($foundationMultiplier - 1)),
            ],
        ];
    }
}

Frontend. Each step is a separate screen with animation. Data accumulates in a state object. On step 2, options are dynamically updated (foundation for new build, condition for renovation). Result is a range "from X to Y rubles" plus breakdown. All calculations are logged in the CALC_RESULTS Highload block with UTM tags for analytics.

Example configuration of the Highload block for coefficients

Fields:

  • UF_WORK_TYPE — list (new construction, renovation, reconstruction, finishing)
  • UF_MATERIAL_CLASS — list (economy, standard, premium)
  • UF_BASE_RATE — number (rub./m²)
  • UF_FLOOR_COEFF — number (floor coefficient)
  • UF_FOUNDATION_COEFF — number (for new construction)
  • UF_REGION_COEFF — number (regional surcharge)

The manager adds records via the admin panel; the calculator automatically picks them up.

Process of work

Stage Duration
Analytics 1–2 weeks
Design 2–3 weeks
Core development 3–5 weeks
Calculator and forms 2–3 weeks
Integrations 1–3 weeks
Testing and launch 1–2 weeks

Timelines depend on scope: from 3 weeks (catalog + portfolio) up to 24 weeks (portal with 1C integration and monitoring). Cost is calculated individually. We can deliver a basic website in just 21 days.

What's included in the work

  • Documentation: infoblock structure, integration scheme, instructions for updating coefficients.
  • Access: Bitrix admin panel, Highload blocks, email events.
  • Training: 2–3 sessions with managers on using the calculator and portfolio.
  • Support: 6 months warranty on code and integrations.

Tender system for B2B

Corporate clients upload technical specifications (up to 50 MB, PDF/DOC/DWG/ZIP) via a custom form. Files are saved in the TENDER_REQUESTS infoblock, an email event notifies the manager. An auto-reply is sent to the applicant with the request number and response deadline.

1C integration

The sale module is not used. Exchange with 1C:Construction Management via REST API — directories of counterparties, contract statuses, acts of completion. Updated once an hour via cron. Integration with 1C reduces operational costs for order processing by 25%. The standard exchange format is CommerceML (see Wikipedia).

The infoblock structure is described in the 1C-Bitrix documentation (see link).

Get a consultation on the structure of your future site — we will help you design architecture that works for both segments. Order turnkey construction company website development on 1C-Bitrix now. Contact us for a free project evaluation.

How to properly design infoblocks?

When developing a 1C-Bitrix website, we see dozens of projects where poor infoblock structure slows down the site. Typical scenario: the client asks for a "product catalog." The developer creates one infoblock catalog, puts 15 properties in it. Six months later – 40 properties, 8 of which are used only for one category. The filter lags, the b_iblock_element_property table grows to millions of rows, CIBlockElement::GetList runs for 3 seconds. Consequences – conversion drop, loss of customers, additional optimization costs. In one project after catalog refactoring, page generation time dropped from 4.2 to 0.8 seconds, and annual support costs were reduced by over $10,000 through eliminated redundant queries and agents.

Our approach: design infoblocks before writing a single line of code. Separate infoblocks for entities (products, categories, brands), dictionary properties via highload blocks, trade offers for SKUs. This builds performance for years. If you want a preliminary audit of your infoblock schema, contact us for a free review of common mistakes and recommendations.

Why 1C-Bitrix outperforms most CMS for business

The choice of CMS is dictated by business needs, not preferences. Native 1C exchange via catalog.import.1c provides two-way synchronization of products, prices, balances, and orders through CommerceML without third-party modules — five times faster than developing custom exchange on OpenCart or WordPress, saving hundreds of thousands of rubles. Proactive security module includes WAF, file integrity control, SQL injection protection, and two-factor authentication; it's certified for FSTEK requirements. Modular architecture lets you enable only needed modules — iblock, catalog, sale, search — reducing DB queries per hit. Regular patches close vulnerabilities faster than open-source projects (average CVE fix time two weeks). Official documentation is maintained on the vendor's site.

What highload blocks are and how they speed up the catalog

Highload blocks are an alternative to extended infoblock properties when the list of values can grow to thousands of entries. Typical example: manufacturers, countries, colors. If stored as list properties in an infoblock, each filter triggers a full scan of b_iblock_property_enum table. With HL-blocks, selection uses indexes – filter response time drops from 1–2 seconds to 50 ms. We use HLB component and custom queries via Bitrix\Highloadblock\DataManager. This is critical for catalogs with 100,000+ items.

From our practice: an online store with 500,000 items. Standard filter by brand took 4 seconds. The server couldn't handle 50 concurrent requests – pages crashed. We moved the brand directory to an HL-block, added tagged caching for 15 minutes, and set up an agent to clear cache on change. After optimization, filter time was 120 ms, average LCP was 1.8 seconds. The project runs stable without failures.

What integrations are critical for 1C-Bitrix stores

Each e‑commerce project requires reliable connections with payments, fiscalization, logistics, and CRM. We integrate YooKassa, CloudPayments, Tinkoff, Apple Pay, Google Pay for payments; ATOL and OrangeData for 54-FZ compliance via sale.cashbox; CDEK, Boxberry, PEC, Russian Post, Yandex.Delivery for logistics; Bitrix24, amoCRM, Roistat, Calltouch, Mindbox for analytics and CRM. All integrations are configured with proper error handling and fallback logic.

What's included in 1C-Bitrix website development

Each project includes a full set of documentation and artifacts to prevent knowledge loss after handover.

  • Technical specification – user stories, infoblock diagrams, integration schemas.
  • Source code in Git – with commit history, release tags, branching rules.
  • Administrative documentation – description of custom components, deployment instructions, list of agents and events.
  • Staff training – up to a 3-hour webinar: admin panel, order management, price settings. Recorded for later review.
  • Access to staging during development – test before production deployment.
  • Warranty support – bug fixes for 30 days after launch. Post-warranty support packages with SLA (response 2 hours, resolution 8 hours).

Our process and technologies

Project type Timeline Complexity Key features
Corporate website from 1 month Medium Catalog, news, forms, CRM integration
Online store from 2 months High 54-FZ, marketplaces, 1C exchange, SKU
B2B portal from 3 months Very high Personal prices, document flow, Bizproc
Landing page from 2 weeks Low LCP < 2s, composite cache, static
Multisite structure from 1.5 months High Separate content, shared catalog, hreflang

Tech stack: mobile-first markup, tested on physical devices (iPhone, iPad, Android). Use BrowserStack for Safari on iOS. Performance goals: LCP < 2.5 s, FID < 100 ms, CLS < 0.1. Enable composite site (composite module), CDN, tagged caching, WebP/AVIF, lazy loading. SEO: Schema.org via JSON-LD, auto-generation of sitemap.xml via seo module, canonical and hreflang for multilingual versions. robots.txt blocks /bitrix/ from indexing. CI/CD: Git, auto-deploy via GitLab CI, staging. DB migrations: sprint.migration module with versioning.

Process:

  1. Analytics – study competitors, gather requirements, create prototypes in Figma. Output: technical specification with user stories.
  2. Design – UI/UX with design system. Components are reusable.
  3. Development – write components with custom templates in local/templates/. Business logic in local/modules/.
  4. Testing – functional, cross-browser, load testing (up to 1000 requests). Critical bugs fixed before launch.
  5. Launch – deploy to production, monitoring via UptimeRobot, alerts in Telegram. Fixes for first 48 hours.

Multilingual support and redesign

Full localization via language files lang/ and SITE_ID mechanism. hreflang for each version. Regional versions with different prices and content – IP detection (main.geo) or manual selection. Multidomain – unified management of multiple domains.

Redesign without losing rankings: performance audit (PageSpeed, WebPageTest), SEO (Screaming Frog). New template in local/templates/ with preserved URL structure. 301 redirects only if URL changes significantly. Kernel update, migration to D7 ORM, infoblock restructuring, migration via sprint.migration with Git.

Guarantee and support

We have been working with 1C-Bitrix for 12+ years, completed 500+ projects. Certified developers on staff. Fixed price in contract – no surprises. Warranty period covers code errors. After warranty, subscription packages with SLA (response time 2 hours, resolution 8 hours). 24/7 availability monitoring, alerts in Telegram. Get a consultation and preliminary estimate: contact us via the form on the website or chat – we'll respond within an hour. Order turnkey development – we'll design infoblocks, integrate 1C, and speed up the catalog. If you already have a site on another CMS, order a performance audit and migration to Bitrix.