CM91 - RMA update

This commit is contained in:
“VeLiTi”
2024-12-10 11:49:04 +01:00
parent d2cb68ace4
commit b72f329154
16 changed files with 839 additions and 343 deletions

30
settings/systemrma.php Normal file
View File

@@ -0,0 +1,30 @@
<?php
//=================================================================
// RMA allowed responses ===================================
//=================================================================
$allowedResponse_1 = array(
array("responseID" => "1", "Response" => $rma_question_allowed_label1),
array("responseID" => "2", "Response" => $rma_question_allowed_label2)
);
//=================================================================
// RMA Tool questions ===================================
//=================================================================
$arrayQuestions_rma = array(
array("Group" => $rma_question_header_1,
"Group_sequence" => '1',
"Questions_in_group" => array(
array("Question_sequence" => '1',"QuestionID" => "rma_1","Question" => $rma_question_1, "Type" => 'dropdown', "Response" => $allowedResponse_1),
array("Question_sequence" => '2',"QuestionID" => "rma_2","Question" => $rma_question_2, "Type" => 'dropdown', "Response" => $allowedResponse_1),
array("Question_sequence" => '3',"QuestionID" => "rma_3","Question" => $rma_question_3, "Type" => 'dropdown', "Response" => $allowedResponse_1),
array("Question_sequence" => '4',"QuestionID" => "rma_4","Question" => $rma_question_4, "Type" => 'dropdown', "Response" => $allowedResponse_1)
)
)
);
//=================================================================
// ===================================
//=================================================================