Commit 7061ca40 authored by Ilya.Kirillov's avatar Ilya.Kirillov

Сделано, чтобы при загрузке пустой базы все равно стартовался MailMerge (баг 30760).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@65961 954022d7-b5bf-4e40-9824-e11837661b57
parent 2dccfd82
...@@ -16,11 +16,11 @@ asc_docs_api.prototype.asc_StartMailMerge = function(oData) ...@@ -16,11 +16,11 @@ asc_docs_api.prototype.asc_StartMailMerge = function(oData)
asc_docs_api.prototype.asc_StartMailMergeByList = function(aList) asc_docs_api.prototype.asc_StartMailMergeByList = function(aList)
{ {
if (!aList || !aList.length || aList.length <= 1) if (!aList || !aList.length || aList.length <= 1)
return; aList = [[]];
var aFields = aList[0]; var aFields = aList[0];
if (!aFields || !aFields.length || aFields.length <= 0) if (!aFields || !aFields.length || aFields.length <= 0)
return; aFields = [];
// Пробегаемся по названиям полей и делаем следующее: // Пробегаемся по названиям полей и делаем следующее:
// Если название пустой, тогда задем ему имя "F<номер столбца>" // Если название пустой, тогда задем ему имя "F<номер столбца>"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment