summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTibor Nagy <nagy.tibor2@nisz.hu>2021-01-06 12:23:32 +0100
committerXisco Fauli <xiscofauli@libreoffice.org>2021-01-14 08:35:52 +0100
commit40cb04a088e4fcf2b76232d080b3a5aaf5f5a675 (patch)
treeadd9384d9470d217931c2c9e4a1e6f1896e861e9
parent6bb252e26ce1aeb3949c64ec6f0bef502a6a459d (diff)
tdf#113013 XLSX import: fix "Formula is" type conditional formatting
rule when the formula contains a reference to another worksheet. Change-Id: I873fad97a88df64e885fef20d4259ef6bfeaa06b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108850 Tested-by: Jenkins Tested-by: László Németh <nemeth@numbertext.org> Reviewed-by: László Németh <nemeth@numbertext.org> (cherry picked from commit fcd96df8f648439ea191d8c2070e8b21ff0b1001) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109124 Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
-rw-r--r--sc/qa/unit/data/xlsx/tdf113013.xlsxbin0 -> 9980 bytes
-rw-r--r--sc/qa/unit/subsequent_filters-test.cxx26
-rw-r--r--sc/source/filter/oox/extlstcontext.cxx13
3 files changed, 35 insertions, 4 deletions
diff --git a/sc/qa/unit/data/xlsx/tdf113013.xlsx b/sc/qa/unit/data/xlsx/tdf113013.xlsx
new file mode 100644
index 000000000000..25e6276e7fbb
--- /dev/null
+++ b/sc/qa/unit/data/xlsx/tdf113013.xlsx
Binary files differ
diff --git a/sc/qa/unit/subsequent_filters-test.cxx b/sc/qa/unit/subsequent_filters-test.cxx
index ce65fc6684cf..3d5621da963d 100644
--- a/sc/qa/unit/subsequent_filters-test.cxx
+++ b/sc/qa/unit/subsequent_filters-test.cxx
@@ -106,6 +106,7 @@ public:
virtual void tearDown() override;
//ods, xls, xlsx filter tests
+ void testCondFormatFormulaIsXLSX();
void testCondFormatBeginsAndEndsWithXLSX();
void testExtCondFormatXLSX();
void testUpdateCircleInMergedCellODS();
@@ -298,6 +299,7 @@ public:
void testDeleteCirclesInRowAndCol();
CPPUNIT_TEST_SUITE(ScFiltersTest);
+ CPPUNIT_TEST(testCondFormatFormulaIsXLSX);
CPPUNIT_TEST(testCondFormatBeginsAndEndsWithXLSX);
CPPUNIT_TEST(testExtCondFormatXLSX);
CPPUNIT_TEST(testUpdateCircleInMergedCellODS);
@@ -534,6 +536,30 @@ void testRangeNameImpl(const ScDocument& rDoc)
}
+void ScFiltersTest::testCondFormatFormulaIsXLSX()
+{
+ ScDocShellRef xDocSh = loadDoc(u"tdf113013.", FORMAT_XLSX);
+ CPPUNIT_ASSERT_MESSAGE("Failed to load tdf113013.xlsx", xDocSh.is());
+
+ ScDocument& rDoc = xDocSh->GetDocument();
+
+ // "Formula is" condition
+ ScConditionalFormat* pFormatB1 = rDoc.GetCondFormat(1, 0, 0);
+ CPPUNIT_ASSERT(pFormatB1);
+ ScConditionalFormat* pFormatA2 = rDoc.GetCondFormat(0, 1, 0);
+ CPPUNIT_ASSERT(pFormatA2);
+
+ ScRefCellValue aCellB1(rDoc, ScAddress(1, 0, 0));
+ OUString aCellStyleB1 = pFormatB1->GetCellStyle(aCellB1, ScAddress(1, 0, 0));
+ CPPUNIT_ASSERT(!aCellStyleB1.isEmpty());
+
+ ScRefCellValue aCellA2(rDoc, ScAddress(0, 1, 0));
+ OUString aCellStyleA2 = pFormatA2->GetCellStyle(aCellA2, ScAddress(0, 1, 0));
+ CPPUNIT_ASSERT(!aCellStyleA2.isEmpty());
+
+ xDocSh->DoClose();
+}
+
void ScFiltersTest::testCondFormatBeginsAndEndsWithXLSX()
{
ScDocShellRef xDocSh = loadDoc("tdf120749.", FORMAT_XLSX);
diff --git a/sc/source/filter/oox/extlstcontext.cxx b/sc/source/filter/oox/extlstcontext.cxx
index 53cd7b385100..fda1a0449e5e 100644
--- a/sc/source/filter/oox/extlstcontext.cxx
+++ b/sc/source/filter/oox/extlstcontext.cxx
@@ -153,26 +153,31 @@ ContextHandlerRef ExtConditionalFormattingContext::onCreateContext(sal_Int32 nEl
eOperator = CondFormatBuffer::convertToInternalOperator(aToken);
return this;
}
- else if(aType == "containsText")
+ else if (aType == "containsText")
{
eOperator = ScConditionMode::ContainsText;
return this;
}
- else if(aType == "notContainsText")
+ else if (aType == "notContainsText")
{
eOperator = ScConditionMode::NotContainsText;
return this;
}
- else if(aType == "beginsWith")
+ else if (aType == "beginsWith")
{
eOperator = ScConditionMode::BeginsWith;
return this;
}
- else if(aType == "endsWith")
+ else if (aType == "endsWith")
{
eOperator = ScConditionMode::EndsWith;
return this;
}
+ else if (aType == "expression")
+ {
+ eOperator = ScConditionMode::Direct;
+ return this;
+ }
else
{
SAL_WARN("sc", "unhandled XLS14_TOKEN(cfRule) with type: " << aType);