@Daniel9999999,
Regarding WORDSNET-19349, it is to update you that we have completed the analysis of this issue. Please see the following analysis details:
Put simply, MS Word loses numbering for specified case. Aspose.Words provides “KeepSourceNumbering” option which may be used to preserve source numbering (this option is missing in the MS Word and added to satisfy customer’s needs). Please check the following code for example:
DocumentBuilder builder = new DocumentBuilder(new Document(@"ost.docx"));
builder.MoveToDocumentEnd();
ImportFormatOptions options = new ImportFormatOptions();
options.KeepSourceNumbering = true;
builder.InsertDocument(new Document("merge1.DOC"), ImportFormatMode.KeepSourceFormatting, options);
builder.InsertDocument(new Document("merge2.DOC"), ImportFormatMode.KeepSourceFormatting, options);
builder.InsertDocument(new Document("merge3.DOC"), ImportFormatMode.KeepSourceFormatting, options);
builder.Document.Save("output.docx");
Hope, this workaround will help you in the meantime while you are waiting for a fix. We will keep you posted on any further updates.