DevExpress Scheduler testweise eingebaut. Musste die web.config anpassen und die Skripte, deshalb hab ich das nicht einfach auskommentiert. Fat-Client: Kalender: mehrere Termine, die zum löschen ausgewählt sind, werden jetzt auf einmal gelöscht, nicht mehr hintereinander. BetreuWoReports: Klienten sind nach Namen sortiert. Klienten, für die der ausgewählte Mitarbeiter/Team Stunden geleistet hat, werden alle angezeigt. Auch die, die nicht vom Mitarbeiter/Team betreut werden.
56 lines
1.4 KiB
JavaScript
56 lines
1.4 KiB
JavaScript
require([
|
|
"qunit",
|
|
|
|
// core
|
|
"./functional/core",
|
|
"./functional/core/load",
|
|
"./functional/core/locale",
|
|
|
|
// currency
|
|
"./functional/currency/currency-formatter",
|
|
"./functional/currency/currency-to-parts-formatter",
|
|
"./functional/currency/format-currency",
|
|
"./functional/currency/format-currency-to-parts",
|
|
|
|
// date
|
|
"./functional/date/date-formatter",
|
|
"./functional/date/date-to-parts-formatter",
|
|
"./functional/date/date-parser",
|
|
"./functional/date/format-date",
|
|
"./functional/date/format-date-to-parts",
|
|
"./functional/date/parse-date",
|
|
|
|
// message
|
|
"./functional/message/message-formatter",
|
|
"./functional/message/format-message",
|
|
|
|
// number
|
|
"./functional/number/number-formatter",
|
|
"./functional/number/number-to-parts-formatter",
|
|
"./functional/number/number-parser",
|
|
"./functional/number/format-number",
|
|
"./functional/number/format-number-to-parts",
|
|
"./functional/number/parse-number",
|
|
|
|
// plural
|
|
"./functional/plural/plural",
|
|
"./functional/plural/plural-generator",
|
|
|
|
// relative-time
|
|
"./functional/relative-time/format-relative-time",
|
|
"./functional/relative-time/relative-time-formatter",
|
|
|
|
// unit
|
|
"./functional/unit/format-unit",
|
|
"./functional/unit/unit-formatter"
|
|
|
|
], function() {
|
|
QUnit.start();
|
|
}, function( error ) {
|
|
QUnit.test( "requirejs load failure", function( assert ) {
|
|
assert.ok( false, "requirejs failed to load: " + QUnit.dump.parse( error ) );
|
|
});
|
|
QUnit.start();
|
|
});
|
|
|