importzugferd/css/importzugferd.css.php
data 77a1781182 feat: v5.5 - Kupferzuschlag-Skalierung und alternative Datanorm-Preise
## Behoben
- Kupferzuschlag-Skalierung in Massenaktualisierung (Cu/qty * PE)
- Steuersatz bei Preisübernahme wird beibehalten
- Preise auf 2 Dezimalstellen gerundet

## Hinzugefügt
- Filter für Preisrichtung (rauf/runter)
- Filter-Persistenz nach Preisübernahme
- Alternative Datanorm-Preise erben Mindestmenge, Verpackung, Steuersatz, kaufmenge
- Extrafield kaufmenge sichtbar in Formularen

## Geändert
- Kupferzuschlag wird NICHT vom Import gesetzt (separates Modul)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-03-03 11:38:30 +01:00

48 lines
1.2 KiB
PHP
Executable file

<?php
/* Copyright (C) 2024 Eduard Wisch <data@data-it-solution.de>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*/
/**
* \file css/importzugferd.css.php
* \ingroup importzugferd
* \brief CSS file for importzugferd module
*/
// Load Dolibarr environment
if (!defined('NOREQUIRESOC')) {
define('NOREQUIRESOC', '1');
}
if (!defined('NOTOKENRENEWAL')) {
define('NOTOKENRENEWAL', '1');
}
if (!defined('NOLOGIN')) {
define('NOLOGIN', '1');
}
if (!defined('NOREQUIREHTML')) {
define('NOREQUIREHTML', '1');
}
if (!defined('NOREQUIREAJAX')) {
define('NOREQUIREAJAX', '1');
}
session_cache_limiter('public');
require_once '../../../main.inc.php';
header('Content-Type: text/css');
?>
/* Icon for importzugferd new products dashboard box */
.fa-dol-importzugferd_newproducts:before {
content: "\f1b3"; /* FontAwesome cubes icon for products */
}
/* Background color for the dashboard box */
.bg-infobox-importzugferd_newproducts {
background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%) !important;
}