- Copy both files into the directory containing the files you want converted
- Run
excel-to-csv.bat
Note: This script requires Excel to be installed.
{ | |
"date": "2021-10-13T14:13:28Z", | |
"cost": 12.34, | |
"mealsByPerson": [ | |
{ | |
"Tom": { | |
"meat": "bacon", | |
"eggs": "scrambled", | |
"side": "hashbrowns" | |
} |
/** | |
* This Trait adds a ToMap(..) methods to a POGO, which convert the object to a Map<String, Object> | |
* ignoring extraneous fields such as synthetic, static, grails domain classes, and collections. | |
* It is designed to be used preprocess Grails domain object proir to converting to JSON. However, | |
* it does not require Grails to work. | |
*/ | |
import groovy.transform.InheritConstructors | |
import org.codehaus.groovy.grails.commons.DomainClassArtefactHandler | |
import org.springframework.validation.Errors |
<?xml version="1.0"?> | |
<form string="Survey User inputs" create="false"> | |
<header> | |
<button name="action_survey_resend" string="Send Invitation Again" type="object" class="oe_highlight" attrs="{'invisible': ['|', ('type','=','manually'), ('state', '=', 'done')]}"/> | |
<button name="action_view_answers" states="done" string="Print These Answers" type="object" class="oe_highlight"/> | |
<button name="action_survey_results" string="View Results" type="object"/> | |
<field name="state" widget="statusbar"/> | |
</header> | |
<sheet> | |
<div class="oe_button_box" name="button_box"/> |
import grails.web.mapping.LinkGenerator | |
/** | |
* Copyright (c) 2016 SharpTop Software, LLC | |
*/ | |
trait RestfulLinkGeneratorTrait { | |
LinkGenerator grailsLinkGenerator | |
String generateLink(Map map) { |
<html> | |
<head> | |
<title>Book List</title> | |
<meta name="layout" content="main"/> | |
</head> |