IDEMPIERE-4801 Add IMediaView interface and Keikai implementation (#780)
Fix preview of xlsx not working at attachment viewer
This commit is contained in:
parent
3dcef18868
commit
287f41a067
|
@ -16,6 +16,7 @@
|
|||
*****************************************************************************/
|
||||
package org.compiere.util;
|
||||
|
||||
import com.google.common.net.MediaType;
|
||||
|
||||
/**
|
||||
* Mime - Content type map.
|
||||
|
@ -760,6 +761,7 @@ public class MimeType
|
|||
// { ".xlm", "application/x-excel"},
|
||||
// { ".xls", "application/excel"},
|
||||
{ ".xls", "application/vnd.ms-excel"},
|
||||
{ ".xlsx", MediaType.OOXML_SHEET.toString()},
|
||||
// { ".xls", "application/x-excel"},
|
||||
// { ".xls", "application/x-msexcel"},
|
||||
// { ".xlt", "application/excel"},
|
||||
|
|
Loading…
Reference in New Issue