问题描述
我正在尝试与Google App Maker签订合同.该合同具有供人们输入其姓名的文本框.我遇到的问题是仅将人员添加到SQL数据库是不够的,但是需要有可靠的数字证据来证明人员签署了合同.
I am trying to make a contract in Google App Maker. This contract features text boxes for people to enter their names. The issue I ran into is that it's not enough to just add the person to a SQL database, but there needs to be solid digital evidence of the person signing the contract.
在appmaker脚本上使用'ctrl'+'p'会弄乱页面的格式.
Using 'ctrl' + 'p' on the appmaker script messes up the formatting of the page.
我发现有一个如何创建PDF的appmaker示例,但是,这只会创建一个新文档,然后向其中添加文本.合同中有很多文字,而且文字经过专门格式化,因此通过javascript在Google文档中输入文字会花费几个小时.
I see that there is an appmaker sample of how to create a PDF, however, this just creates a new document and then adds text to it. There is a lot of text in the contract and it is specifically formatted, so typing that up in a Google Doc through javascript would take hours.
任何有appmaker经验的人都知道更简单的方法吗?还是我找到的最好的那个?
Does anyone with experience with appmaker know of an easier method? Or is the one I found really the best?
推荐答案
这就是我最终要做的...
Here is what I ended up doing...
-
在必须将信息加载到的地方(例如姓名,地址,电话号码...)创建带有特定标识符{}的模板google文档
Create a template google document with a certain identifier {} in places where information must be loaded into (ex. name, address, phone number...)
在appmaker中,创建一个脚本以读取合同并使用相关信息填写所有标识符{}
In appmaker, create a script which read the contract and filled out all the identifiers {} with the relevant information
在appmaker中,运行命令将google文档转换为pdf
In appmaker, there run the command to turn a google document into a pdf
在appmaker中,将pdf电子邮件通过电子邮件发送给相关人员
In appmaker, email that pdf to the relevant person
这篇关于Google App Maker-创建合同.使用方法?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!