-
15survey_custom_matrix/COPYRIGHT
-
11survey_custom_matrix/LICENSE
-
4survey_custom_matrix/__init__.py
-
21survey_custom_matrix/__manifest__.py
-
1survey_custom_matrix/controllers/__init__.py
-
14survey_custom_matrix/controllers/main.py
-
52survey_custom_matrix/i18n/fr.po
-
43survey_custom_matrix/i18n/survey_custom_matrix.pot
-
1survey_custom_matrix/models/__init__.py
-
20survey_custom_matrix/models/survey_label.py
-
5survey_custom_matrix/models/survey_label_value.py
-
95survey_custom_matrix/models/survey_question.py
-
89survey_custom_matrix/models/survey_user_input_line.py
-
4survey_custom_matrix/reports/user_input.xml
-
8survey_custom_matrix/security/ir_model_access.xml
-
BINsurvey_custom_matrix/static/description/banner.jpg
-
BINsurvey_custom_matrix/static/description/call-icon.png
-
2survey_custom_matrix/static/description/color code.txt
-
BINsurvey_custom_matrix/static/description/features-icon.png
-
BINsurvey_custom_matrix/static/description/icon-2.png
-
BINsurvey_custom_matrix/static/description/icon-3.png
-
BINsurvey_custom_matrix/static/description/icon-4.png
-
BINsurvey_custom_matrix/static/description/icon-5.png
-
BINsurvey_custom_matrix/static/description/icon-6.png
-
BINsurvey_custom_matrix/static/description/icon.png
-
BINsurvey_custom_matrix/static/description/icon1.png
-
248survey_custom_matrix/static/description/index.html
-
BINsurvey_custom_matrix/static/description/logo.png
-
BINsurvey_custom_matrix/static/description/main_image.jpg
-
BINsurvey_custom_matrix/static/description/support-icon.png
-
BINsurvey_custom_matrix/static/description/survey_1.png
-
BINsurvey_custom_matrix/static/description/survey_10.png
-
BINsurvey_custom_matrix/static/description/survey_11.png
-
BINsurvey_custom_matrix/static/description/survey_12.png
-
BINsurvey_custom_matrix/static/description/survey_13.png
-
BINsurvey_custom_matrix/static/description/survey_2.png
-
BINsurvey_custom_matrix/static/description/survey_3.png
-
BINsurvey_custom_matrix/static/description/survey_4.png
-
BINsurvey_custom_matrix/static/description/survey_5.png
-
BINsurvey_custom_matrix/static/description/survey_6.png
-
BINsurvey_custom_matrix/static/description/survey_8.png
-
BINsurvey_custom_matrix/static/description/survey_9.png
-
35survey_custom_matrix/templates/matrix.xml
-
2survey_custom_matrix/views/survey_question.xml
-
6survey_custom_matrix/views/survey_user_input_line.xml
@ -1,15 +0,0 @@ |
|||||
|
|
||||
Most of the files are |
|
||||
|
|
||||
Copyright (c) 2012-TODAY Kanak Infosystems LLP |
|
||||
|
|
||||
Many files also contain contributions from third |
|
||||
parties. In this case the original copyright of |
|
||||
the contributions can be traced through the |
|
||||
history of the source version control system. |
|
||||
|
|
||||
When that is not the case, the files contain a prominent |
|
||||
notice stating the original copyright and applicable |
|
||||
license, or come with their own dedicated COPYRIGHT |
|
||||
and/or LICENSE file. |
|
||||
|
|
@ -1,11 +0,0 @@ |
|||||
Kanak Infosystems LLP Proprietary License v1.0 |
|
||||
|
|
||||
This software and associated files (the "Software") may only be used (executed, modified, executed after modifications) if you have purchased a valid license from the authors, typically via Kanak Infosystems LLP Apps, or if you have received a written agreement from the authors of the Software (see the COPYRIGHT file). |
|
||||
|
|
||||
You may develop Kanak Infosystems LLP modules that use the Software as a library (typically by depending on it, importing it and using its resources), but without copying any source code or material from the Software. You may distribute those modules under the license of your choice, provided that this license is compatible with the terms of the Kanak Infosystems LLP Proprietary License (For example: LGPL, MIT, or proprietary licenses similar to this one). |
|
||||
|
|
||||
It is forbidden to publish, distribute, sublicense, or sell copies of the Software or modified copies of the Software. |
|
||||
|
|
||||
The above copyright notice and this permission notice must be included in all copies or substantial portions of the Software. |
|
||||
|
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
|
@ -1,3 +1,3 @@ |
|||||
|
|
||||
from . import models |
|
||||
|
# -*- coding: utf-8 -*- |
||||
from . import controllers |
from . import controllers |
||||
|
from . import models |
@ -1 +1,2 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
from . import main |
from . import main |
@ -1,3 +1,4 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
from . import survey_label |
from . import survey_label |
||||
from . import survey_label_value |
from . import survey_label_value |
||||
from . import survey_question |
from . import survey_question |
||||
|
@ -1,16 +1,18 @@ |
|||||
|
|
||||
from odoo import models, fields, _ |
|
||||
|
# -*- coding: utf-8 -*- |
||||
|
from odoo import models, fields |
||||
|
|
||||
TYPES = [ |
TYPES = [ |
||||
('free_text', _('Multiple Lines Text Box')), |
|
||||
('textbox', _('Single Line Text Box')), |
|
||||
('numerical_box', _('Numerical Value')), |
|
||||
('dropdown', _('Dropdown')), |
|
||||
('checkbox', _('Checkbox')), |
|
||||
|
('free_text', 'Multiple Lines Text Box'), |
||||
|
('textbox', 'Single Line Text Box'), |
||||
|
('numerical_box', 'Numerical Value'), |
||||
|
# ('date', 'Date'), |
||||
|
('dropdown', 'Dropdown'), |
||||
|
('checkbox', 'Checkbox'), |
||||
] |
] |
||||
|
|
||||
|
|
||||
class SurveyLabel(models.Model): |
class SurveyLabel(models.Model): |
||||
_inherit = 'survey.label' |
_inherit = 'survey.label' |
||||
|
|
||||
type = fields.Selection(selection=TYPES, string='Type of Question', default="checkbox") |
|
||||
dpvalues = fields.Many2many(comodel_name='survey.label.value', string="values") |
|
||||
|
type = fields.Selection(selection=TYPES, string="Type of question", default="checkbox") |
||||
|
value_ids = fields.Many2many(comodel_name='survey.label.value', string="Values") |
@ -1,8 +1,9 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
from odoo import models, fields |
from odoo import models, fields |
||||
|
|
||||
|
|
||||
class SurveyLabelValue(models.Model): |
class SurveyLabelValue(models.Model): |
||||
_name = 'survey.label.value' |
_name = 'survey.label.value' |
||||
_description = "Valeur" |
|
||||
|
_description = "Value" |
||||
|
|
||||
name = fields.Char(strring="Name") |
|
||||
|
name = fields.Char(string="Name") |
Before Width: 750 | Height: 375 | Size: 92 KiB |
Before Width: 29 | Height: 28 | Size: 771 B |
@ -1,2 +0,0 @@ |
|||||
Blue color: 123246 |
|
||||
Red Color: dc1d1d |
|
Before Width: 25 | Height: 25 | Size: 598 B |
Before Width: 97 | Height: 96 | Size: 3.7 KiB |
Before Width: 90 | Height: 92 | Size: 2.2 KiB |
Before Width: 90 | Height: 92 | Size: 2.7 KiB |
Before Width: 90 | Height: 92 | Size: 2.3 KiB |
Before Width: 90 | Height: 92 | Size: 2.1 KiB |
Before Width: 500 | Height: 500 | Size: 16 KiB |
Before Width: 95 | Height: 104 | Size: 2.5 KiB |
@ -1,248 +0,0 @@ |
|||||
<section class="oe_container oe_dark"> |
|
||||
<div class="oe_row oe_spaced"> |
|
||||
<div class="oe_span12"> |
|
||||
<h2 class="oe_slogan"> |
|
||||
Matrix Survey |
|
||||
</h2> |
|
||||
</div> |
|
||||
</div> |
|
||||
</section> |
|
||||
<section class="oe_container" style="background-color: #eeeeee;"> |
|
||||
<div class="oe_row oe_spaced text-center"> |
|
||||
<div class="oe_span12"> |
|
||||
<h2 class="oe_slogan">Create Survey & Add Survey pages</h2> |
|
||||
</div> |
|
||||
<div class="oe_span12"> |
|
||||
<div class="oe_row_img oe_centered"> |
|
||||
<div class=""> |
|
||||
<img src="survey_1.png" class="oe_screenshot oe_centered" style="max-height: 400px;"/> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
</section> |
|
||||
<section class="oe_container"> |
|
||||
<div class="oe_row oe_spaced text-center"> |
|
||||
<div class="oe_span12"> |
|
||||
<h2 class="oe_slogan">Add questions for survey page</h2> |
|
||||
<div class="oe_row_img oe_centered"> |
|
||||
<div class=""> |
|
||||
<img src="survey_2.png" class="oe_screenshot oe_centered" style="max-height: 400px;"/> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
</section> |
|
||||
<section class="oe_container" style="background-color: #eeeeee;"> |
|
||||
<div class="oe_row oe_spaced text-center"> |
|
||||
<div class="oe_span12"> |
|
||||
<h2 class="oe_slogan">Set question type as "matrix"</h2> |
|
||||
<div class="oe_row_img oe_centered"> |
|
||||
<div class=""> |
|
||||
<img src="survey_3.png" class="oe_screenshot oe_centered" style="max-height: 400px;"/> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
</section> |
|
||||
<section class="oe_container"> |
|
||||
<div class="oe_row oe_spaced text-center"> |
|
||||
<div class="oe_span12"> |
|
||||
<h2 class="oe_slogan">Set type of matrix</h2> |
|
||||
<div class="oe_row_img oe_centered"> |
|
||||
<div class=""> |
|
||||
<img src="survey_4.png" class="oe_screenshot oe_centered" style="max-height: 400px;"/> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
</section> |
|
||||
<section class="oe_container" style="background-color: #eeeeee;"> |
|
||||
<div class="oe_row oe_spaced text-center"> |
|
||||
<div class="oe_span12"> |
|
||||
<h3 class="oe_slogan"> |
|
||||
Add answer's choices & Set display type of questions <br/> |
|
||||
with different types of input methods |
|
||||
</h3> |
|
||||
<div class="oe_row_img oe_centered"> |
|
||||
<div class=""> |
|
||||
<img src="survey_5.png" class="oe_screenshot oe_centered" style="max-height: 400px;"/> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
</section> |
|
||||
<section class="oe_container"> |
|
||||
<div class="oe_row oe_spaced text-center"> |
|
||||
<div class="oe_span12"> |
|
||||
<h2 class="oe_slogan">Add multiple header rows</h2> |
|
||||
<div class="oe_row_img oe_centered"> |
|
||||
<div class=""> |
|
||||
<img src="survey_6.png" class="oe_screenshot oe_centered" style="max-height: 400px;"/> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
</section> |
|
||||
<section class="oe_container" style="background-color: #eeeeee;"> |
|
||||
<div class="oe_row oe_spaced text-center"> |
|
||||
<div class="oe_span12"> |
|
||||
<h2 class="oe_slogan">Fill survey</h2> |
|
||||
<div class="oe_row_img oe_centered"> |
|
||||
<div class=""> |
|
||||
<img src="survey_8.png" class="oe_screenshot oe_centered" style="max-height: 400px;"/> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
</section> |
|
||||
<section class="oe_container"> |
|
||||
<div class="oe_row oe_spaced text-center"> |
|
||||
<div class="oe_span12"> |
|
||||
<h2 class="oe_slogan">View filled answers of survey</h2> |
|
||||
<div class="oe_row_img oe_centered"> |
|
||||
<div class=""> |
|
||||
<img src="survey_9.png" class="oe_screenshot oe_centered" style="max-height: 400px;"/> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
</section> |
|
||||
<section class="oe_container" style="background-color: #eeeeee;"> |
|
||||
<div class="oe_row oe_spaced text-center"> |
|
||||
<div class="oe_span12"> |
|
||||
<h2 class="oe_slogan">Get print in .pdf</h2> |
|
||||
<div class="oe_row_img oe_centered"> |
|
||||
<div class="oe_span6"> |
|
||||
<img src="survey_10.png" class="oe_screenshot oe_centered" style="max-height: 400px;"/> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
</section> |
|
||||
<section class="oe_container"> |
|
||||
<div class="oe_row oe_spaced text-center"> |
|
||||
<div class="oe_span12"> |
|
||||
<h2 class="oe_slogan">PDF view</h2> |
|
||||
<div class="oe_row_img oe_centered"> |
|
||||
<div class="oe_span6"> |
|
||||
<img src="survey_11.png" class="oe_screenshot oe_centered" style="max-height: 400px;"/> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
</section> |
|
||||
<section class="oe_container" style="background-color: #eeeeee;"> |
|
||||
<div class="oe_row oe_spaced text-center"> |
|
||||
<div class="oe_span12"> |
|
||||
<h2 class="oe_slogan">Print filled answers</h2> |
|
||||
<div class="oe_row_img oe_centered"> |
|
||||
<div class="oe_span6"> |
|
||||
<img src="survey_12.png" class="oe_screenshot oe_centered" style="max-height: 400px;"/> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
</section> |
|
||||
<section class="oe_container"> |
|
||||
<div class="oe_row oe_spaced text-center"> |
|
||||
<div class="oe_span12"> |
|
||||
<h2 class="oe_slogan">Filled Answers</h2> |
|
||||
<div class="oe_row_img oe_centered"> |
|
||||
<div class="oe_span6"> |
|
||||
<img src="survey_13.png" class="oe_screenshot oe_centered" style="max-height: 400px;"/> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
</section> |
|
||||
<section class="oe_container"> |
|
||||
<div class="row"> |
|
||||
<div class="col-sm-12"> |
|
||||
<div class="laptop-wrapper"> |
|
||||
<iframe width="560" height="315" src="https://www.youtube.com/embed/F7u41nqf_iA" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
</section> |
|
||||
<section> |
|
||||
<div class="oe_row"> |
|
||||
<div class="container-fluid"> |
|
||||
<div class="oe_row"> |
|
||||
<div class="col-md-12 col-xs-12 col-sm-12 mt32 mb32 text-center"> |
|
||||
<img src="logo.png" style="height:100px;"> |
|
||||
</div> |
|
||||
</div> |
|
||||
<div class="oe_row oe_screenshot" style="box-shadow: 3px 4px 25px 6px rgba(0, 0, 0, 0.2);;border-radius: 8px; background: #ECEDF0;"> |
|
||||
<div class="col-sm-12"> |
|
||||
<div class="text-center"> |
|
||||
<a href="https://kanakinfosystems.com/kanak_aboutus"><h3 class="oe_slogan" style="border-bottom: 1px solid #123246; margin-top: 8px; font-size:33px; color:#123246; opacity:1; font-family:segoeuib">About kanak Infosystems</h3></a> |
|
||||
</div> |
|
||||
</div> |
|
||||
<div class="col-sm-12"> |
|
||||
<h5 class="oe_slogan" style="margin-top: -9px; color:#123246;margin-bottom: 12px; opacity: 0.6; font-family:segoeuiz;"><i><b>"We are groupies wrapped in Creativity, Skills and Innovation"</b></i></h5> |
|
||||
<p style="font-family:segoeui">We are authorized IT company to offer advanced, hight quality and affordable IT solutions. We have years of rich experience in the field of ODOO Development, ERP Solutions, Web Development, Mobile Apps, Web Designing and Digital marketing. Around a decade are offering quality assured and 100% customer satisfaction services to global clientele.</p> |
|
||||
|
|
||||
<p style="font-family:segoeui">Our highly experienced and devoted team of professionals works with there heart, passion and talent to provide the most dedicated IT Business Solutions to our valuable clients globally. Our team works on the real words "Dedication,"Timely Deliverables",And "Happy Clients"!</p> |
|
||||
</div> |
|
||||
</div> |
|
||||
<div class="oe_row col-md-12 col-sm-12"> |
|
||||
<div class="text-center"> |
|
||||
<h2 style="color:#123246;font-family:segoeuib"> What We Do</h2> |
|
||||
</div> |
|
||||
</div> |
|
||||
<div class="row"> |
|
||||
<div class="col-md-2 col-sm-2"> |
|
||||
<img src="icon1.png"> |
|
||||
<h6 style="margin-top: -10px;font-size: 9px;color:#123246;font-family:">Odoo Customization</h6> |
|
||||
</div> |
|
||||
<div class="col-md-2 col-sm-2"> |
|
||||
<img src="icon-2.png"> |
|
||||
<h6 style="margin-top: -1px;font-size: 9px;color:#123246;font-family:">Odoo Code Migration</h6> |
|
||||
</div> |
|
||||
<div class="col-md-2 col-sm-2"> |
|
||||
<img src="icon-3.png"> |
|
||||
<h6 style="margin-top: -1px;font-size: 9px;color:#123246;font-family:">Odoo Mobile App</h6> |
|
||||
</div> |
|
||||
<div class="col-md-2 col-sm-2"> |
|
||||
<img src="icon-4.png"> |
|
||||
<h6 style="margin-top: -1px;font-size: 9px;color:#123246;font-family:">Odoo DB Migration</h6> |
|
||||
</div> |
|
||||
<div class="col-md-2 col-sm-2"> |
|
||||
<img src="icon-5.png"> |
|
||||
<h6 style="margin-top: -1px;font-size: 9px;color:#123246;font-family:">Odoo Web Development</h6> |
|
||||
</div> |
|
||||
<div class="col-md-2 col-sm-2"> |
|
||||
<img src="icon-6.png"> |
|
||||
<h6 style="margin-top: -1px;font-size: 9px;color:#123246;font-family:">Odoo Themes</h6> |
|
||||
</div> |
|
||||
</div> |
|
||||
<div class="oe_row"> |
|
||||
<div class="text-center" style="text-align: center;"> |
|
||||
<a style="color:#dc1d1d; border:1px solid #dc1d1d; width:170px;" class="btn btn-lg" rel="nofollow" href="https://kanakinfosystems.com/contactus" target="_blank"> |
|
||||
Contact Us |
|
||||
</a> |
|
||||
</div> |
|
||||
</div> |
|
||||
<div class="oe_row" style="box-shadow: 3px 5px 18px 6px rgba(0, 0, 0, 0.2);;border-radius: 8px; background: #ECEDF0; height:50px"> |
|
||||
|
|
||||
<div class="oe_row"> |
|
||||
<div class="col-md-12 col-sm-12" style="padding-top: 10px;padding-left: 40px;"> |
|
||||
<div class="col-md-4 col-sm-4" style="float: left; text-align: center;"> |
|
||||
<span><img src="call-icon.png"/></span> |
|
||||
<span>Help</span> |
|
||||
</div> |
|
||||
<div class="col-md-4 col-sm-4" style="float: left; text-align: center;"> |
|
||||
<span><img src="support-icon.png"/></span> |
|
||||
<span>Support</span> |
|
||||
</div> |
|
||||
<div class="col-md-4 col-sm-4" style="float: left; text-align: center;"> |
|
||||
<span><img src="support-icon.png"/></span> |
|
||||
<span>Request New Features</span> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
</section> |
|
Before Width: 261 | Height: 123 | Size: 15 KiB |
Before Width: 750 | Height: 375 | Size: 89 KiB |
Before Width: 28 | Height: 28 | Size: 846 B |
Before Width: 1351 | Height: 608 | Size: 108 KiB |
Before Width: 1351 | Height: 608 | Size: 134 KiB |
Before Width: 1351 | Height: 608 | Size: 78 KiB |
Before Width: 1351 | Height: 608 | Size: 133 KiB |
Before Width: 1351 | Height: 608 | Size: 79 KiB |
Before Width: 1351 | Height: 608 | Size: 88 KiB |
Before Width: 1351 | Height: 608 | Size: 109 KiB |
Before Width: 1351 | Height: 608 | Size: 99 KiB |
Before Width: 1351 | Height: 608 | Size: 106 KiB |
Before Width: 1351 | Height: 608 | Size: 77 KiB |
Before Width: 1351 | Height: 608 | Size: 76 KiB |
Before Width: 1351 | Height: 608 | Size: 65 KiB |