push
github
56 of 145 branches covered (38.62%)
48 of 50 new or added lines in 5 files covered. (96.0%)
3395 existing lines in 78 files now uncovered.8599 of 20189 relevant lines covered (42.59%)
701.76 hits per line
UNCOV
1
|
/** @format */
|
|
UNCOV
2
|
|
× |
3 |
define([ |
× |
UNCOV
4
|
"dojo/_base/declare",
|
× |
UNCOV
5
|
"dijit/registry",
|
× |
UNCOV
6
|
"dojo/on",
|
× |
UNCOV
7
|
"lsmb/Form",
|
× |
UNCOV
8
|
"dijit/_Container"
|
× |
UNCOV
9
|
], function (declare, registry, on, Form, _Container) {
|
× |
10 |
return declare("lsmb/Invoice", [Form, _Container], { |
× |
UNCOV
11
|
_update: function () { |
× |
12 |
this.clickedAction = "update"; |
× |
13 |
this.submit();
|
× |
UNCOV
14
|
}, // update
|
× |
UNCOV
15
|
startup: function () { |
× |
16 |
var self = this; |
× |
17 |
this.inherited(arguments); |
× |
18 |
this.own(
|
× |
UNCOV
19
|
on(registry.byId("invoice-lines"), "changed", function () { |
× |
20 |
self._update(); |
× |
UNCOV
21
|
}) |
× |
UNCOV
22
|
); |
× |
UNCOV
23
|
} // startup
|
× |
UNCOV
24
|
}); |
× |
UNCOV
25
|
}); |
× |