Mobile App Development for Leave and Business Trip Requests

NOVASOLUTIONS.TECHNOLOGY is engaged in the development, support and maintenance of iOS, Android, PWA mobile applications. We have extensive experience and expertise in publishing mobile applications in popular markets like Google Play, App Store, Amazon, AppGallery and others.
Development and support of all types of mobile applications:
Information and entertainment mobile applications
News apps, games, reference guides, online catalogs, weather apps, fitness and health apps, travel apps, educational apps, social networks and messengers, quizzes, blogs and podcasts, forums, aggregators
E-commerce mobile applications
Online stores, B2B apps, marketplaces, online exchanges, cashback services, exchanges, dropshipping platforms, loyalty programs, food and goods delivery, payment systems.
Business process management mobile applications
CRM systems, ERP systems, project management, sales team tools, financial management, production management, logistics and delivery management, HR management, data monitoring systems
Electronic services mobile applications
Classified ads platforms, online schools, online cinemas, electronic service platforms, cashback platforms, video hosting, thematic portals, online booking and scheduling platforms, online trading platforms

These are just some of the types of mobile applications we work with, and each of them may have its own specific features and functionality, tailored to the specific needs and goals of the client.

Showing 1 of 1 servicesAll 1735 services
Mobile App Development for Leave and Business Trip Requests
Simple
from 1 week to 3 months
FAQ
Our competencies:
Development stages
Latest works
  • image_mobile-applications_feedme_467_0.webp
    Development of a mobile application for FEEDME
    756
  • image_mobile-applications_xoomer_471_0.webp
    Development of a mobile application for XOOMER
    624
  • image_mobile-applications_rhl_428_0.webp
    Development of a mobile application for RHL
    1052
  • image_mobile-applications_zippy_411_0.webp
    Development of a mobile application for ZIPPY
    947
  • image_mobile-applications_affhome_429_0.webp
    Development of a mobile application for Affhome
    862
  • image_mobile-applications_flavors_409_0.webp
    Development of a mobile application for the FLAVORS company
    445

Mobile App Development for Leave/Business Trip Request System

Leave requests and business trips — one of the most common tasks for corporate mobile applications. Employee submits request, manager approves, HR reflects in accounting system. Technically simple, but devil is in integrations: 1C:ZUP, SAP HCM, BambooHR, Workday — each has own API and approval logic.

Key Logic: Approval Process

Approval chain can be linear (employee → manager → HR) or branching (foreign business trip → additional approval from CFO). Don't hardcode this logic on mobile — it should come from backend as configuration.

Mobile app displays current request status and list of approvers, but doesn't make decisions about routing. This way, approval process changes don't require app update.

Integration with HR Systems

For 1C:ZUP — REST services via oData v4 or HTTP-services of 1C. Leave request created as VacationAccrual document. To sync vacation day balance — query RemainingVacationDays register.

suspend fun getRemainingVacationDays(employeeId: String): VacationBalance {
    val response = hrApiClient.get("/odata/standard.odata/InformationRegister_ОстатокОтпуска") {
        parameter("\$filter", "Сотрудник_Key eq guid'$employeeId'")
        parameter("\$select", "ВидОтпуска,КоличествоДней")
    }
    return VacationBalance.fromODataResponse(response)
}

For SAP HCM — SAP Mobile Services SDK or REST via SAP API Business Hub. BambooHR and Workday have standard REST APIs with OAuth 2.0.

UX for Request Submission

Form shouldn't be long. Select leave type (annual, unpaid, educational), start and end dates with workday calendar check, comment — that's enough. Automatically show day count and remaining balance.

Date selection — native DatePicker with weekends and holidays blocked (production calendar fetch from server or store locally, update once a year).

After submission — push notification on status change. Manager gets push with action buttons directly in notification (iOS: UNNotificationCategory with actions; Android: NotificationCompat.Action), no need to open app.

MVP development for request app (vacation + business trip + approval + integration with one HR system) — 4–8 weeks. Cost estimated individually.