Files
CRM/modules/axelor-open-suite/axelor-supplychain/build.gradle
BACHIR SOULDI 6881c439b2 feat: Enhance Supply Chain Module with Analytic Move Line Features
- Added support for analytic move lines in InvoiceServiceSupplychainImpl.
- Implemented methods to check for missing analytic move lines in PurchaseOrderController and PurchaseRequestController.
- Introduced budget distribution line generation in PurchaseOrderController.
- Updated SaleOrderController to generate analytic move lines.
- Enhanced StockMoveController with budget distribution line generation.
- Modified StockMoveLineController to include analytic account and axis handling.
- Updated domain models to include references to analytic accounts and axes in Partner, StockLocation, and StockMoveLine.
- Created unit tests for StockMoveLineServiceSupplychainImpl to ensure proper functionality of new features.
- Added MockQuery class for testing purposes.
2026-02-17 15:13:17 +01:00

22 lines
480 B
Groovy

apply plugin: "com.axelor.app-module"
apply from: "../version.gradle"
apply {
version = openSuiteVersion
}
axelor {
title "Axelor Supply Chain"
description "Axelor Supply Chain Module"
}
dependencies {
compile project(":modules:axelor-purchase")
compile project(":modules:axelor-sale")
compile project(":modules:axelor-stock")
compile project(":modules:axelor-account")
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.mockito:mockito-core:4.8.0'
}