| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417 |
- task_parameter = {
- first : '(0)',
- last : '(0)',
- count : 20
- };
- function task_list_init() {
- var str = '<table border="1" width="100%">';
- str += '<thead><tr><td colspan="6"><a href="#" id="prev">prev</a> <a href="#" id="next">next</a> <span id="total">0</span></td></tr>';
- str += '<tr><th>rank</th><th>id</th><th>title</th><th>processName</th></tr></thead>';
- str += '<tbody id="grid"></tbody>'
- str += '</table>';
- $('#content').html(str);
- $('#next').click(function() {
- task_list_next();
- });
- $('#prev').click(function() {
- task_list_prev();
- });
- task_parameter.first = '(0)';
- task_parameter.last = '(0)';
- task_list_next();
- }
- function task_list_next(id) {
- var id = (id ? id : task_parameter.last);
- $.ajax({
- type : 'get',
- dataType : 'json',
- url : '../jaxrs/task/list/' + id + '/next/' + task_parameter.count,
- xhrFields : {
- 'withCredentials' : true
- },
- crossDomain : true
- }).done(function(json) {
- if (json.type == 'success') {
- if (json.data.length > 0) {
- task_parameter.first = json.data[0].id;
- task_parameter.last = json.data[json.data.length - 1].id;
- } else {
- task_parameter.first = '(0)';
- }
- task_list_grid(json);
- }
- }).always(function(json) {
- $('#result').html(JSON.stringify(json, null, 4));
- });
- }
- function task_list_prev(id) {
- var id = (id ? id : task_parameter.first);
- $.ajax({
- type : 'get',
- dataType : 'json',
- url : '../jaxrs/task/list/' + id + '/prev/' + task_parameter.count,
- xhrFields : {
- 'withCredentials' : true
- },
- crossDomain : true
- }).done(function(json) {
- if (json.type == 'success') {
- if (json.data.length > 0) {
- task_parameter.first = json.data[0].id;
- task_parameter.last = json.data[json.data.length - 1].id;
- } else {
- task_parameter.last = '(0)';
- }
- task_list_grid(json);
- }
- }).always(function(json) {
- $('#result').html(JSON.stringify(json, null, 4));
- });
- }
- function task_listWithApplication_init() {
- var str = '<table border="1" width="100%">';
- str += '<thead><tr><td colspan="4"><a href="#" id="prev">prev</a> <a href="#" id="next">next</a> <span id="total">0</span></td></tr>';
- str += '<tr><th>applicationFlag</th><th colspan="3"><input type="text" id="applicationFlag" style="width:95%"/></th></tr>';
- str += '<tr><th>rank</th><th>id</th><th>title</th><th>processName</th></tr></thead>';
- str += '<tbody id="grid"></tbody>'
- str += '</table>';
- $('#content').html(str);
- $('#next').click(function() {
- task_listWithApplication_next();
- });
- $('#prev').click(function() {
- task_listWithApplication_prev();
- });
- task_parameter.first = '(0)';
- task_parameter.last = '(0)';
- }
- function task_listWithApplication_next(id) {
- var id = (id ? id : task_parameter.last);
- $.ajax({
- type : 'get',
- dataType : 'json',
- url : '../jaxrs/task/list/' + task_parameter.last + '/next/' + task_parameter.count + '/application/' + $('#applicationFlag').val(),
- xhrFields : {
- 'withCredentials' : true
- },
- crossDomain : true
- }).done(function(json) {
- if (json.type == 'success') {
- if (json.data.length > 0) {
- task_parameter.first = json.data[0].id;
- task_parameter.last = json.data[json.data.length - 1].id;
- } else {
- task_parameter.first = '(0)';
- }
- task_list_grid(json);
- }
- }).always(function(json) {
- $('#result').html(JSON.stringify(json, null, 4));
- });
- }
- function task_listWithApplication_prev(id) {
- var id = (id ? id : task_parameter.first);
- $.ajax({
- type : 'get',
- dataType : 'json',
- url : '../jaxrs/task/list/' + id + '/prev/' + task_parameter.count + '/application/' + $('#applicationFlag').val(),
- xhrFields : {
- 'withCredentials' : true
- },
- crossDomain : true
- }).done(function(json) {
- if (json.type == 'success') {
- if (json.data.length > 0) {
- task_parameter.first = json.data[0].id;
- task_parameter.last = json.data[json.data.length - 1].id;
- } else {
- task_parameter.last = '(0)';
- }
- task_list_grid(json);
- }
- }).always(function(json) {
- $('#result').html(JSON.stringify(json, null, 4));
- });
- }
- function task_listWithProcess_init() {
- var str = '<table border="1" width="100%">';
- str += '<thead><tr><td colspan="4"><a href="#" id="prev">prev</a> <a href="#" id="next">next</a> <span id="total">0</span></td></tr>';
- str += '<tr><th>processFlag</th><th colspan="3"><input type="text" id="processFlag" style="width:95%"/></th></tr>';
- str += '<tr><th>rank</th><th>id</th><th>title</th><th>processName</th></tr></thead>';
- str += '<tbody id="grid"></tbody>'
- str += '</table>';
- $('#content').html(str);
- $('#next').click(function() {
- task_listWithProcess_next();
- });
- $('#prev').click(function() {
- task_listWithProcess_prev();
- });
- task_parameter.first = '(0)';
- task_parameter.last = '(0)';
- }
- function task_listWithProcess_next(id) {
- var id = (id ? id : task_parameter.last);
- $.ajax({
- type : 'get',
- dataType : 'json',
- url : '../jaxrs/task/list/' + id + '/next/' + task_parameter.count + '/process/' + $('#processFlag').val(),
- xhrFields : {
- 'withCredentials' : true
- },
- crossDomain : true
- }).done(function(json) {
- if (json.type == 'success') {
- if (json.data.length > 0) {
- task_parameter.first = json.data[0].id;
- task_parameter.last = json.data[json.data.length - 1].id;
- } else {
- task_parameter.first = '(0)';
- }
- task_list_grid(json);
- }
- }).always(function(json) {
- $('#result').html(JSON.stringify(json, null, 4));
- });
- }
- function task_listWithProcess_prev(id) {
- var id = (id ? id : task_parameter.first);
- $.ajax({
- type : 'get',
- dataType : 'json',
- url : '../jaxrs/task/list/' + id + '/prev/' + task_parameter.count + '/process/' + $('#processFlag').val(),
- xhrFields : {
- 'withCredentials' : true
- },
- crossDomain : true
- }).done(function(json) {
- if (json.type == 'success') {
- if (json.data.length > 0) {
- task_parameter.first = json.data[0].id;
- task_parameter.last = json.data[json.data.length - 1].id;
- } else {
- task_parameter.last = '(0)';
- }
- task_list_grid(json);
- }
- }).always(function(json) {
- $('#result').html(JSON.stringify(json, null, 4));
- });
- }
- function task_list_grid(json) {
- if (json.data && json.data.length > 0) {
- str = '';
- $.each(json.data, function(index, item) {
- str += '<tr>';
- str += '<td>' + item.rank + '</td>';
- str += '<td>' + item.id + '</td>';
- str += '<td>' + item.title + '</td>';
- str += '<td>' + item.processName + '</td>';
- str += '</tr>';
- });
- $('#total').html(json.count);
- $('#grid').html(str);
- } else {
- $('#total').html('0');
- $('#grid').html('');
- }
- }
- function task_listCountWithApplication() {
- $('#result').html('');
- $.ajax({
- type : 'get',
- dataType : 'json',
- url : '../jaxrs/task/list/count/application',
- xhrFields : {
- 'withCredentials' : true
- },
- crossDomain : true
- }).always(function(json) {
- $('#result').html(JSON.stringify(json, null, 4));
- });
- }
- function task_listCountWithProcess_init() {
- $('#result').html('');
- str = '<table border="1" width="100%">';
- str += '<tr><td colspan="2"><a href="#" id="get">get</a></td></tr>';
- str += '<tr><td>applicationFlag:</td><td><input type="text" id="applicationFlag" style="width:95%"/></td></tr>';
- str += '</table>';
- $('#content').html(str);
- $('#get').click(function() {
- task_listCountWithProcess($('#applicationFlag').val());
- });
- }
- function task_listCountWithProcess(applicationFlag) {
- $('#result').html('');
- $.ajax({
- type : 'get',
- dataType : 'json',
- url : '../jaxrs/task/list/count/application/' + applicationFlag + '/process',
- xhrFields : {
- 'withCredentials' : true
- },
- crossDomain : true
- }).always(function(json) {
- $('#result').html(JSON.stringify(json, null, 4));
- });
- }
- function task_countWithPerson_init() {
- $('#result').html('');
- str = '<table border="1" width="100%">';
- str += '<tr><td colspan="2"><a href="#" id="get">get</a></td></tr>';
- str += '<tr><td>person:</td><td><input type="text" id="person" style="width:95%"/></td></tr>';
- str += '</table>';
- $('#content').html(str);
- $('#get').click(function() {
- task_countWithPerson($('#person').val());
- });
- }
- function task_countWithPerson(person) {
- $('#result').html('');
- $.ajax({
- type : 'get',
- dataType : 'json',
- url : '../jaxrs/task/count/' + person,
- xhrFields : {
- 'withCredentials' : true
- },
- crossDomain : true
- }).always(function(json) {
- $('#result').html(JSON.stringify(json, null, 4));
- });
- }
- function task_get_init() {
- $('#result').html('');
- str = '<table border="1" width="100%">';
- str += '<tr><td colspan="2"><a href="#" id="get">get</a> <a href="#" id="reference">reference</a> <a href="#" id="process">process</a> <a href="#" id="update">update</a> <a href="#" id="reset">reset</a></td></tr>';
- str += '<tr><td>id:</td><td><input type="text" id="id" style="width:95%"/></td></tr>';
- str += '<tr><td>routeName:</td><td><input type="text" id="routeName" style="width:95%"/></td></tr>';
- str += '<tr><td>opinion:</td><td><input type="text" id="opinion" style="width:95%"/></td></tr>';
- str += '<tr><td>identityList:</td><td><textarea id="identityList" style="width:95%"/></td></tr>';
- str += '</table>';
- $('#content').html(str);
- $('#get').click(function() {
- task_get($('#id').val());
- });
- $('#reference').click(function() {
- task_reference($('#id').val());
- });
- $('#process').click(function() {
- task_process($('#id').val());
- });
- $('#update').click(function() {
- task_update($('#id').val());
- });
- $('#reset').click(function() {
- task_reset($('#id').val());
- });
- }
- function task_get(id) {
- $('#result').html('');
- $.ajax({
- type : 'get',
- dataType : 'json',
- url : '../jaxrs/task/' + id,
- xhrFields : {
- 'withCredentials' : true
- },
- crossDomain : true
- }).done(function(json) {
- if (json.type == 'success') {
- $('#routeName').val(json.data.routeName);
- $('#opinion').val(json.data.opinion);
- }
- }).always(function(json) {
- $('#result').html(JSON.stringify(json, null, 4));
- });
- }
- function task_update(id) {
- $.ajax({
- type : 'put',
- dataType : 'json',
- contentType : 'application/json; charset=utf-8',
- url : '../jaxrs/task/' + id,
- xhrFields : {
- 'withCredentials' : true
- },
- data : JSON.stringify({
- routeName : $('#routeName').val(),
- opinion : $('#opinion').val()
- }),
- crossDomain : true
- }).always(function(json) {
- $('#result').html(JSON.stringify(json, null, 4));
- });
- }
- function task_reference(id) {
- $('#result').html('');
- $.ajax({
- type : 'get',
- dataType : 'json',
- url : '../jaxrs/task/' + id + '/reference',
- xhrFields : {
- 'withCredentials' : true
- },
- crossDomain : true
- }).always(function(json) {
- $('#result').html(JSON.stringify(json, null, 4));
- });
- }
- function task_process(id) {
- $.ajax({
- type : 'post',
- dataType : 'json',
- contentType : 'application/json; charset=utf-8',
- url : '../jaxrs/task/' + id,
- xhrFields : {
- 'withCredentials' : true
- },
- data : JSON.stringify({
- routeName : $('#routeName').val(),
- opinion : $('#opinion').val()
- }),
- crossDomain : true
- }).always(function(json) {
- $('#result').html(JSON.stringify(json, null, 4));
- });
- }
- function task_reset(id) {
- $.ajax({
- type : 'put',
- dataType : 'json',
- contentType : 'application/json; charset=utf-8',
- url : '../jaxrs/task/' + id + '/reset',
- xhrFields : {
- 'withCredentials' : true
- },
- data : JSON.stringify({
- routeName : $('#routeName').val(),
- opinion : $('#opinion').val(),
- identityList : splitValue($('#identityList').val())
- }),
- crossDomain : true
- }).always(function(json) {
- $('#result').html(JSON.stringify(json, null, 4));
- });
- }
|