Skip to content

Commit 9fffe34

Browse files
committed
Merge pull request #2033 from NaturalGIS/fix_12683
fixes processing refactor fields for certain datatypes
2 parents c9897ab + 8a98934 commit 9fffe34

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

python/plugins/processing/algs/qgis/ui/FieldsMappingPanel.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ class FieldsMappingModel(QtCore.QAbstractTableModel):
4444
(QtCore.QVariant.Int, "Integer"),
4545
(QtCore.QVariant.Double, "Double"),
4646
(QtCore.QVariant.String, "String"),
47+
(QtCore.QVariant.DateTime, "Date"),
48+
(QtCore.QVariant.LongLong, "Double"),
4749
(QtCore.QVariant.Date, "Date")])
4850

4951
columns = [

0 commit comments

Comments
 (0)