when duplicating a list, copy its description (fixes #749)
This commit is contained in:
parent
545a5527a9
commit
a30ddb7c32
1 changed files with 27 additions and 17 deletions
|
@ -34,28 +34,38 @@ pandora.addList = function() {
|
|||
data.query = listData.query;
|
||||
}
|
||||
}
|
||||
if (isDuplicate && listData.type == 'static') {
|
||||
var query = {
|
||||
conditions: [{key: 'list', value: list, operator: '=='}],
|
||||
operator: '&'
|
||||
};
|
||||
pandora.api.find({
|
||||
query: query
|
||||
if (isDuplicate) {
|
||||
pandora.api.findLists({
|
||||
query: {conditions: [{key: 'id', value: list, operator: '=='}]},
|
||||
keys: ['description']
|
||||
}, function(result) {
|
||||
if (result.data.items) {
|
||||
data.description = result.data.items[0].description;
|
||||
if (data.type == 'static') {
|
||||
var query = {
|
||||
conditions: [{key: 'list', value: list, operator: '=='}],
|
||||
operator: '&'
|
||||
};
|
||||
pandora.api.find({
|
||||
query: query,
|
||||
keys: ['id'],
|
||||
sort: [{key: 'id', operator: ''}],
|
||||
range: [0, result.data.items]
|
||||
query: query
|
||||
}, function(result) {
|
||||
var items = result.data.items.map(function(item) {
|
||||
return item.id;
|
||||
});
|
||||
addList(items);
|
||||
if (result.data.items) {
|
||||
pandora.api.find({
|
||||
query: query,
|
||||
keys: ['id'],
|
||||
sort: [{key: 'id', operator: ''}],
|
||||
range: [0, result.data.items]
|
||||
}, function(result) {
|
||||
var items = result.data.items.map(function(item) {
|
||||
return item.id;
|
||||
});
|
||||
addList(items);
|
||||
});
|
||||
} else {
|
||||
addList();
|
||||
}
|
||||
});
|
||||
} else {
|
||||
addList();
|
||||
addList()
|
||||
}
|
||||
});
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue