Table loses conditional formatting for cell

Hi Aspose support,
Recently we faced with the issue when convert docx document into strict compliance format a table loses conditional formatting for cell (even rows are not colored) and total row has wrong border formatting.
See the difference:
TableFormattingIssue.png (29.3 KB)

Original document:SourceDocument.zip (30.1 KB)
Converted with Aspose document:ConvertedWithAspose.zip (12.7 KB)

Expected behavior: Table should look the same as in original document.

Code example:

public static void ReSaveDocument(string inputFile, string outputFile, string openPassword)
{

    Document doc = new Document(inputFile, new Aspose.Words.LoadOptions() { Password = !string.IsNullOrEmpty(openPassword) ? openPassword : null });
    doc.Unprotect();

    OoxmlSaveOptions saveOptions = new OoxmlSaveOptions(SaveFormat.Docx);
    saveOptions.Compliance = OoxmlCompliance.Iso29500_2008_Strict;

    doc.Save(outputFile, saveOptions);
}

Checked on Aspose.Words.dll v19.9.0
Please help with this problem.
Thanks in advance.

@licenses,

We tested the scenario and have managed to reproduce the same problem on our end. For the sake of correction, we have logged this problem in our issue tracking system. The ID of this issue is WORDSNET-19326. We will further look into the details of this problem and will keep you updated on the status of correction. We apologize for your inconvenience.

The issues you have found earlier (filed as WORDSNET-19326) have been fixed in this Aspose.Words for .NET 19.11 update and this Aspose.Words for Java 19.11 update.