当前位置: 首页>>代码示例>>PHP>>正文


PHP GetRecordingsSection函数代码示例

本文整理汇总了PHP中GetRecordingsSection函数的典型用法代码示例。如果您正苦于以下问题:PHP GetRecordingsSection函数的具体用法?PHP GetRecordingsSection怎么用?PHP GetRecordingsSection使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了GetRecordingsSection函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: GetRecordingsSection

            $number1 = $row_prod[2];
            $book_name1 = $row_prod[0];
            $book_price1 = $row_prod[1];
            $data['page'][0] .= '<tr style="background: #FEFEFE">
											<td style="border:1px solid #85B1DE; padding:2px;">' . $number1 . '</td>
											<td style="border:1px solid #85B1DE; padding:2px;">' . $res[call_date] . '</td>
											<td style="border:1px solid #85B1DE; padding:2px;">' . $res[name_surname] . '</td>
											<td style="border:1px solid #85B1DE; padding:2px;">' . $book_price1 . '</td>
											<td style="border:1px solid #85B1DE; padding:2px;">' . $book_name1 . '</td>
											<td style="border:1px solid #85B1DE; padding:2px;">
											    <button type="button" value="' . $number1 . '" ' . $other_disabled . ' class="delete_gift">-</button>
											</td>
										</tr>';
        }
        $data['page'][0] .= '</table></div>
					</fieldset>' . GetRecordingsSection($res) . '
					</div>
				    </div>
								<input type="hidden" id="id" value="' . $_REQUEST[id] . '" />
			</div>
		</fieldset></div>';
        break;
    case 'save_dialog':
        $per_id = mysql_fetch_row(mysql_query("\tSELECT id\r\n\t\t\t\t\t\t\t\t\t\t   \t\tFROM shipping\r\n\t\t\t\t\t\t\t\t\t\t   \t\tWHERE `name` = '{$_REQUEST['period']}'"));
        mysql_query("UPDATE `elva_sale` SET \r\n\t\t\t\t\t\t\t`status`\t\t\t\t='{$_REQUEST['status']}', \r\n\t\t\t\t\t\t\t`oder_send_date`\t\t='{$_REQUEST['oder_date']}', \r\n\t\t\t\t\t\t\t`coordinator_id`\t\t='{$_REQUEST['cooradinator']}', \r\n\t\t\t\t\t\t\t`coordinator_comment`\t='{$_REQUEST['k_coment']}', \r\n\t\t\t\t\t\t\t`elva_status`\t\t\t='{$_REQUEST['elva']}',\r\n\t\t\t\t\t\t\t`person_id`\t\t\t\t='{$_REQUEST['person_id']}', \r\n\t\t\t\t\t\t\t`name_surname`\t\t\t='{$_REQUEST['name_surname']}', \r\n\t\t\t\t\t\t\t`mail`\t\t\t\t\t='{$_REQUEST['mail']}', \r\n\t\t\t\t\t\t\t`address`\t\t\t\t='{$_REQUEST['addres']}', \r\n\t\t\t\t\t\t\t`phone`\t\t\t\t\t='{$_REQUEST['phone']}', \r\n\t\t\t\t\t\t\t`phone1`\t\t\t\t='{$_REQUEST['phone1']}', \r\n\t\t\t\t\t\t\t`period`\t\t\t\t='{$_REQUEST['period']}', \r\n\t\t\t\t\t\t\t`books`\t\t\t\t\t='{$_REQUEST['book']}', \r\n\t\t\t\t\t\t\t`call_date`\t\t\t\t='{$_REQUEST['date']}', \r\n\t\t\t\t\t\t\t`sum_price`\t\t\t\t='{$_REQUEST['sum_price']}', \r\n\t\t\t\t\t\t\t`callceenter_comment`\t='{$_REQUEST['c_coment']}' \r\n\t\t\t\t\tWHERE (`id`='{$_REQUEST['id']}')");
        break;
    case 'delete_prod':
        $delete_prod_id = $_REQUEST[delete_prod_id];
        $rResult = mysql_query("SELECT elva_sale.id,\r\n   \t        elva_sale.person_id,\r\n   \t        elva_sale.name_surname,\r\n   \t        elva_sale.mail,\r\n   \t        elva_sale.address,\r\n   \t        elva_sale.phone,\r\n   \t        elva_sale.phone1,\r\n   \t        shipping.`name` AS `period`,\r\n   \t        elva_sale.books,\r\n   \t        elva_sale.call_date,\r\n   \t        elva_sale.sum_price,\r\n   \t        elva_sale.callceenter_comment,\r\n   \t        persons.`name` as operator_id,\r\n   \t        elva_sale.oder_send_date,\r\n   \t        elva_sale.`status`,\r\n   \t        elva_sale.coordinator_id,\r\n   \t        elva_sale.coordinator_comment,\r\n   \t        elva_sale.task_id,\r\n   \t        elva_sale.elva_status,\r\n   \t        elva_sale.period AS `period_id`\r\n   \t        FROM `elva_sale`\r\n   \t        left JOIN shipping ON elva_sale.period = shipping.id\r\n   \t        JOIN users ON elva_sale.operator_id = users.id\r\n   \t        JOIN persons ON users.person_id = persons.id\r\n   \t        WHERE elva_sale.id='{$_REQUEST['evla_id']}'");
        $res = mysql_fetch_array($rResult);
        $query_list1 = mysql_fetch_row(mysql_query("SELECT \tproduct_ids,\r\n   \t        gift_ids,id\r\n   \t        FROM \t\t`task_scenar`\r\n   \t        WHERE \ttask_detail_id = '{$res['task_id']}'"));
开发者ID:GeoPvN,项目名称:winstone,代码行数:31,代码来源:elva.ge.action.php

示例2: GetPage


//.........这里部分代码省略.........
							<td style="width: 180px;">
								<input type="text" id="personal_mail" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['personal_mail'] . '" />
							</td>			
						</tr>
						<tr>
							<td td style="width: 180px; color: #3C7FB1;">გვარი</td>
							<td td style="width: 180px; color: #3C7FB1;">დაბადების თარიღი</td>
						</tr>
						<tr>
							<td style="width: 180px;">
								<input type="text" id="personal_last_name" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['personal_last_name'] . '" />		
							</td>
							<td td style="width: 180px;">
								<input type="text" id="personal_d_date" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['personal_d_date'] . '" />		
							</td>
						</tr>
						<tr>
							<td td style="width: 180px; color: #3C7FB1;">ქალაქი</td>
							<td td style="width: 180px; color: #3C7FB1;">მისამართი</td>
						</tr>
						<tr>
							<td><select style="width: 165px;" id="personal_city" class="idls object">' . Getcity($res['personal_city']) . '</select></td>
							<td td style="width: 180px;">
								<input type="text" id="personal_addres" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['personal_addres'] . '" />		
							</td>
						</tr>
						<tr>
							<td td style="width: 180px; color: #3C7FB1;">ოჯახური სტატუსი</td>
							<td td style="width: 180px; color: #3C7FB1;">პროფესია</td>
						</tr>
						<tr>
							<td><select style="width: 165px;" id="personal_status" class="idls object">' . Getfamily($res['personal_status']) . '</select></td>
							<td td style="width: 180px;">
								<input type="text" id="personal_profession" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['personal_profession'] . '" />		
							</td>
						</tr>
					</table>
				</fieldset>	
				<!--fieldset>
					<legend>ყველა გაყიდვა (ბოლო 10)</legend>					
		                <table style="border:2px solid #85B1DE; width:100%;">
		                   		<tr style="background:#F2F2F2; ">	
									<th style="width:7%; padding:5px; border:1px solid #85B1DE;">#</th>
									<th style="border:1px solid #85B1DE; padding:5px;">თარიღი</th>
									<th style="border:1px solid #85B1DE; padding:5px;">მომხმარებელი</th>
									<th style="width:12%; padding:5px; border:1px solid #85B1DE;">ფასი</th>
									<th style="border:1px solid #85B1DE; padding:5px;">წიგნები</th>
								</tr>		
								<tr style="background: #FEFEFE">
										<td style="border:1px solid #85B1DE; padding:2px;">1</td>
										<td style="border:1px solid #85B1DE; padding:2px;">test</td>
										<td style="border:1px solid #85B1DE; padding:2px;">test</td>
										<td style="border:1px solid #85B1DE; padding:2px;">test</td>
										<td style="border:1px solid #85B1DE; padding:2px;">test</td>
								</tr>												
		                </table>
							<button id="read_more" style="float:right;">სრულად ნახვა</button>
				</fieldset-->					
				<fieldset style="margin-top: 10px; width: 150px; margin-left:10px; float: right;">
            		<legend>ფაილი</legend>
					<table style="float: right; border: 1px solid #85b1de; width: 150px; text-align: center;">
     <tr>
      <td>
       <div class="file-uploader">
        <input id="choose_file" type="file" name="choose_file" class="input" style="display: none;">
        <button id="choose_button" class="center">აირჩიეთ ფაილი</button>
        <input id="hidden_inc" type="text" value="' . increment('action') . '" style="display: none;">
       </div>
      </td>
     </tr>
    </table>
        <table style="float: right; border: 1px solid #85b1de; width: 150px; text-align: center;">
             <tr style="border-bottom: 1px solid #85b1de;">
              <td colspan="3">მიმაგრებული ფაილი</td>
             </tr>
    </table>
    <table id="file_div" style="float: right; border: 1px solid #85b1de; width: 150px; text-align: center;">';
    while ($increm_row = mysql_fetch_assoc($increm)) {
        $data .= ' 
                <tr style="border-bottom: 1px solid #85b1de;">
                  <td style="width:110px; display:block;word-wrap:break-word;">' . $increm_row[name] . '</td>              
                  <td ><button type="button" value="media/uploads/file/' . $increm_row[rand_name] . '" style="cursor:pointer; border:none; margin-top:25%; display:block; height:16px; width:16px; background:none;background-image:url(\'media/images/get.png\');" id="download" ></button><input type="text" style="display:none;" id="download_name" value="' . $increm_row[rand_name] . '"> </td>
                  <td ><button type="button" value="' . $increm_row[id] . '" style="cursor:pointer; border:none; margin-top:25%; display:block; height:16px; width:16px; background:none; background-image:url(\'media/images/x.png\');" id="delete"></button></td>
                </tr>';
    }
    $data .= '
    </table>
				</fieldset>	
  					
						';
    if (!empty($res[phone])) {
        $data .= GetRecordingsSection($res);
    }
    $data .= '
	  		<button type="button" class="save-dialog" id="save-dialog" style="margin-top:10px;">შენახვა</button>
	  		</div>
			</div>
    </div>';
    return $data;
}
开发者ID:GeoPvN,项目名称:winstone,代码行数:101,代码来源:incomming_miss_call.action.php

示例3: GetRecordingsSection

     break;
 case 'page_records':
     $phone = $_REQUEST['phone'];
     $tab = $_REQUEST['tab'];
     $page = GetRecordingsSection($phone, $tab);
     $data = array('htm_records' => $page);
     break;
 case 'delete-fun':
     $in_phone = $_REQUEST['in_phone'];
     $tab = $_REQUEST['tab'];
     $call_status_id = $_REQUEST['call_status_id'];
     $inc_id = $_REQUEST['inc_id'];
     $redactor_comment = $_REQUEST['redactor_comment'];
     $user_id = $_SESSION['USERID'];
     mysql_query(" UPDATE `incomming_call` \r\n                         SET `call_status_id`   = {$call_status_id},\r\n                             `fan_status`       = '4',\r\n                             `redactor_user_id` = '{$user_id}',\r\n                             `redactor_comment` = '{$redactor_comment}'\r\n                      WHERE  `id`               = '{$inc_id}'");
     $page = GetRecordingsSection($in_phone, $tab);
     $data = array('htm_records' => $page);
     break;
 case 'page_records1':
     $incom_id = $_REQUEST['incom_id'];
     $in_phone = $_REQUEST['in_phone'];
     $page = '  <fieldset style="width: 364px; border: solid 1px #85b1de;">
                 <legend>მიუთითეთ საჭირო სტატუსი</legend>
                     <table>
                         <tr>
             	            <td style="width: 110px;"><label style="display: block; margin-top: 18px; margin-left: 10px;" for="d_number">ზარის სტატუსი</label></td>
             				<td style="width: 180px;"><select style="width: 180px; display: block; margin-top: 12px; height: 25px;" id="call_status" class="idls object">' . Getcall_status() . '</select></td>
         		        </tr>
             		    <tr>
             	            <td style="width: 110px;">
             				    <label style="display: block; margin-top: 20px; margin-left: 10px;" for="d_number">კომენტარი</label>
开发者ID:aleqsandre553,项目名称:msgroup,代码行数:31,代码来源:blacklist1.action.php

示例4: GetPage


//.........这里部分代码省略.........
				</fieldset>
				<fieldset style="width:315px; float:left; margin-left: 10px;">
			    	<legend>შედეგის კომენტარი <span style="color:red; font-weight: bold; font-size: 120%">*</span></legend>
					<table id="" class="dialog-form-table" width="150px">	
						<tr>
							<td><textarea  style="width:317px; resize: none;" id="results_comment" class="idle" name="content" cols="300" >' . $res['results_comment'] . '</textarea></td>
						</tr>
					</table>
				</fieldset>
				<fieldset style="width:557px; float:left;">
			    	<legend>კომენტარი <span style="color:red; font-weight: bold; font-size: 120%">*</span></legend>
					<table id="" class="dialog-form-table" width="150px">	
						<tr>
							<td><textarea  style="width: 750px; resize: none;" id="content" class="idle" name="content" cols="300" >' . $res['content'] . '</textarea></td>
						</tr>
					</table>
				</fieldset>
				';
    $data .= '
		   
				<fieldset style="margin-top: 5px;">
			    	<legend>დავალების ფორმირება</legend>
		
			    	<table class="dialog-form-table">
						<tr>
							<td style="width: 280px;"><label for="d_number">დავალების ტიპი</label></td>
							<td style="width: 280px;"><label for="d_number">სცენარი</label></td>
							<td style="width: 280px;"><label for="d_number">პრიორიტეტი</label></td>
						</tr>
			    		<tr>
							<td style="width: 280px;" id="task_type_change"><select style="width: 230px;" id="task_type_id" class="idls object">' . Gettask_type($res['task_type_id']) . '</select></td>
							<td style="width: 280px;"><select style="width: 230px;" id="task_department_id" class="idls object">' . Getdepartment($res['task_department_id']) . '</select></td>
							<td style="width: 280px;"><select style="width: 230px;" id="persons_id" class="idls object">' . Getpersons($res['persons_id']) . '</select></td>
						</tr>
						<tr>
							<td style="width: 150px;"><label for="content">კომენტარი</label></td>
							<td style="width: 150px;"><label for="content"></label></td>
							<td style="width: 150px;"><label for="content"></label></td>
						</tr>
						<tr>
							<td colspan="6">
								<textarea  style="width: 747px; resize: none;" id="comment" class="idle" name="content" cols="300" rows="2">' . $res['comment'] . '</textarea>
							</td>
						</tr>
					</table>
		        </fieldset>
			</div>
			<div>
				  </fieldset>
			</div>
			<div style="float: right;  width: 355px;">
				 <fieldset>
					<legend>მომართვის ავტორი <span style="color:red; font-weight: bold; font-size: 120%">*</span></legend>
					<table style="height: 243px;">						
						<tr>
							<td style="width: 180px; color: #3C7FB1;">ტელეფონი</td>
							<td style="width: 180px; color: #3C7FB1;">პირადი ნომერი</td>
						</tr>
						<tr>
							<td>
								<input type="text" id="personal_phone" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['personal_phone'] . '" />
							</td>
							<td style="width: 180px;">
								<input type="text" id="personal_id" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['personal_id'] . '" />
							</td>					
						</tr>
						<tr>
							<td style="width: 180px; color: #3C7FB1;">კონტრაგენტი</td>
							<td style="width: 180px; color: #3C7FB1;">ელ-ფოსტა</td>
						</tr>
						<tr >
							<td style="width: 180px;">
								<input type="text" id="personal_contragent" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['personal_contragent'] . '" />
							</td>
							<td style="width: 180px;">
								<input type="text" id="personal_mail" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['personal_mail'] . '" />
							</td>			
						</tr>
						<tr>
							<td td style="width: 180px; color: #3C7FB1;">მისამართი</td>
							<td td style="width: 180px; color: #3C7FB1;">სტატუსი</td>
						</tr>
						<tr>
							<td style="width: 180px;">
								<input type="text" id="personal_addres" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['personal_addres'] . '" />		
							</td>
							<td td style="width: 180px;">
								<input type="text" id="personal_status" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['personal_status'] . '" />		
							</td>
						</tr>
					</table>
				</fieldset>';
    if (!empty($res[phone])) {
        $data .= GetRecordingsSection($res);
    }
    $data .= '</div>
			</div>
    </div>';
    return $data;
}
开发者ID:GeoPvN,项目名称:winstone,代码行数:101,代码来源:main.action.php

示例5: GetPage


//.........这里部分代码省略.........
            				</td>
            			</tr>
            			<tr>
            				<td style="width: 180px;"><label  for="req_phone">ტელეფონი</label></td>
                	    </tr>
            			<tr>
            				<td style="width: 150px;">
            					<input style="width: 180px;" type="text" id="phone" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['phone'] . '" ' . $diss . '  />
            				</td>
            			</tr>
            	       
            			<tr>
            			    <td style="width: 180px;"><label  for="req_phone">სახელი</label></td>
            			</tr>
            			<tr>
            			    <td style="width: 180px;">
            					<input style="width: 180px;" type="text" id="client_name" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['name'] . '" ' . $dis . '/>
            				</td>
            			</tr>
            		    <tr>
							<td colspan="6" style="width: 180px;"><label for="d_number">სტატუსი</label></td>
						</tr>
			    		<tr>
							<td style="width: 180px;"><select style="width: 180px;" id="task_status" class="idls object"' . $diss . '>' . status($res['status']) . '</select></td>
						</tr>
            		    <tr style="margin-top: 20px; margin-top=25px">
            				<td style="width: 180px;"><label for="content">დამატებითი ინფორმაცია</label></td>
            			</tr>
            			<tr>
            				<td colspan="5">
            					<div id="content">		
            					<textarea  style="width: 180px; resize: vertical; margin-top: 5px;" id="call_content" class="idle" name="call_content" cols="300" rows="2"' . $diss . '>' . $res['call_content'] . '</textarea>
            					</div>
            				</td>
            			</tr>			
            		</table>
            	</fieldset>
                <fieldset style="margin-top: 5px; width: 185px;">
                	<legend>დავალების ფორმირება</legend>
                    <table class="dialog-form-table">
            			<tr>
            				<td style="width: 180px;"><label for="d_number">პასუხისმგებელი პირი</label></td>
            			</tr>
            			<tr>
            				<td style="width: 180px;"><select style="width: 180px;" id="persons_id" class="idls object">' . Getpersons($res['responsible_user_id']) . '</select></td>
            		    </tr>
                		<tr>
            				<td style="width: 180px;"><label for="d_number">დავალების ტიპი</label></td>
            			</tr>
            			<tr>
            				<td style="width: 180px;"><select style="width: 180px;" id="task_type_id" class="idls object">' . Gettask_type($res['task_type_id']) . '</select></td>
            			</tr>
                		<tr>
            				<td style="width: 180px;"><label for="d_number">სხვა ნომერი</label></td>
            			</tr>
                		<tr>	
            				<td style="width: 180px;">
            					<input type="text" style="width: 175px;" id="out_phone" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['task_phone'] . '" />
            				</td>
            			</tr>
            			<tr>
							<td style="width: 180px;"><label for="content">შინაარსი</label></td>
						</tr>
						<tr>
							<td colspan="6">	
								<textarea  style="width: 175px; resize: vertical;" id="problem_coment" class="idle" name="call_content" cols="300" rows="2"' . $diss . '>' . $res['problem_comment'] . '</textarea>
							</td>
						</tr>
					    <tr>
							<td style="width: 180px;"><label for="content">პრობლემის გადაწყვეტა</label></td>
						</tr>
						<tr>
							<td colspan="6">	
								<textarea  style="width: 175px; resize: vertical;" id="comment" class="idle" name="call_content" cols="300" rows="2">' . $res['comment'] . '</textarea>
							</td>
						</tr>	
            		</table>
                </fieldset>
        	</td>
            <td style="vertical-align: top;">
            	<fieldset id="search" style="float: right; margin-top: 6px; margin-right: 4px;">
            </td>
        	<td style="vertical-align: top; width: 120px;">
                
                </fieldset>';
    $data .= '</div><div id="chanawerebi" style="float: right; width: 195px;">';
    $data .= GetRecordingsSection($res);
    $data .= '</div>
            </td>
        </tr>
    </table>
                    
        <input id="hidden_user" type="text" value="' . $res['user_id'] . '" style="display: none;">
 		<input id="asterisk_incomming_id" type="text" value="' . $res['asterisk_incomming_id'] . '" style="display: none;">
 		<input id="ast_incomming_id" type="text" value="' . $res['ast_incomming_id'] . '" style="display: none;">
 		<input id="task_hidde_id" type="text" value="' . $res['id'] . '" style="display: none;">
    	    
    </div>';
    return $data;
}
开发者ID:aleqsandre553,项目名称:msgroup,代码行数:101,代码来源:outgoing_tab2.action.php

示例6: GetPage


//.........这里部分代码省略.........
					</table>
				</fieldset >
		   
				<fieldset style="margin-top: 5px;">
			    	<legend>დავალების ფორმირება</legend>
		
			    	<table class="dialog-form-table">
						<tr>
							<td style="width: 180px;"><label for="d_number">პასუხისმგებელი პირი</label></td>
							<td style="width: 180px;"><label for="d_number">დავალების ტიპი</label></td>
							<td style="width: 180px;"><label for="d_number">სხვა ნომერი</label></td>
							
						</tr>
			    		<tr>
							<td style="width: 180px;"><select id="persons_id" class="idls object">' . Getpersons($res['responsible_user_id']) . '</select></td>
							<td style="width: 180px;"><select id="task_type_id" class="idls object">' . Gettask_type($res['task_type_id']) . '</select></td>
							<td style="width: 180px;">
								<input type="text" id="out_phone" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['task_phone'] . '" />
							</td>
						</tr>
						<tr>
							<td style="width: 180px;"><label for="content">შინაარსი</label></td>
						</tr>
						<tr>
							
							<td colspan="6">	
								<textarea  style="width: 641px; resize: vertical;" id="problem_coment" class="idle" name="call_content" cols="300" rows="2">' . $res['problem_comment'] . '</textarea>
							</td>
						</tr>	
					</table>
		        </fieldset>
				
			</div>
			<div style="float: left; margin-left: 5px; width: 190px;">
				 <fieldset>
					<legend>მომართვის ავტორი</legend>
					<table style="height: 190px;">
						<tr>
							<td style="width: 180px;">რეგიონი <span style="color: #FA0000;">*</span></td>
						</tr>
						<tr>
							<td style="width: 180px;"><select id="region_id" class="idls object">' . Get_region($res['region_id']) . '</select></td>
						</tr>
						<tr>
							<td style="width: 180px;">ქალაქი</td>
						</tr>
						<tr>
							<td style="width: 180px;"><select id="sity_id" class="idls object">' . Get_city_edit($res['city_id'], $res['region_id']) . '</select></td>
						</tr>
						<tr>
							<td style="width: 180px;">DY კოდი</td>
						</tr>
						<tr>
							<td style="width: 180px;">
								<input type="text" id="DY_code" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['DY_code'] . '"/>
							</td>
						</tr>
					</table>
				</fieldset>
				<div id="additional_info">';
    $data .= '</div>';
    $data .= GetRecordingsSection($res);
    $data .= '	<fieldset style="display: inline-flex; width: 168px;">
					<legend>ფაილი</legend> 
					<table style="float: left; border: 1px solid #85b1de; width: 168px; text-align: center;">
					<tr>
						<td>
							<div class="file-uploader">
								<input id="choose_file" type="file" name="choose_file" class="input" style="display: none;">
								<button id="choose_button" class="center">აირჩიეთ ფაილი</button>
								<input id="hidden_inc" type="text" value="' . increment('incomming_call') . '" style="display: none;">
							</div>
						</td>
					</tr>
				</table>
			     <table style="float: left; border: 1px solid #85b1de; width: 168px; text-align: center;">
			          <tr style="border-bottom: 1px solid #85b1de;">
			           <td colspan="3">მიმაგრებული ფაილი</td>
			          </tr>
				</table>
				<table id="file_div" style="float: left; border: 1px solid #85b1de; width: 168px; text-align: center;">';
    while ($increm_row = mysql_fetch_assoc($increm)) {
        $data .= ' 
								        <tr style="border-bottom: 1px solid #85b1de;">
								          <td style="width:110px; display:block;word-wrap:break-word;">' . $increm_row[name] . '</td>													 
								          <td ><button type="button" value="media/uploads/file/' . $increm_row[rand_name] . '" style="cursor:pointer; border:none; margin-top:25%; display:block; height:16px; width:16px; background:none;background-image:url(\'media/images/get.png\');" id="download" ></button><input type="text" style="display:none;" id="download_name" value="' . $increm_row[rand_name] . '"> </td>
								          <td ><button type="button" value="' . $increm_row[id] . '" style="cursor:pointer; border:none; margin-top:25%; display:block; height:16px; width:16px; background:none; background-image:url(\'media/images/x.png\');" id="delete"></button></td>
								        </tr>';
    }
    $data .= '
	 		</table>
				</fieldset>
	 		</div>
	 		<input id="hidden_user" type="text" value="' . $res['user_id'] . '" style="display: none;">
	 		<input id="sms_inc_increm_id" type="text" value="' . $incr . '" style="display: none;">
	 		<input id="send_male_status" type="text" value="true" style="display: none;">
	 		
    </div>';
    return $data;
}
开发者ID:aleqsandre553,项目名称:msgroup,代码行数:101,代码来源:incomming.action.php

示例7: GetPage


//.........这里部分代码省略.........
										</td>
									</tr>
					
								</table>
							</fieldset>';
    } else {
        $data .= '<div style="float: left; margin-left:10px; width: 355px;">
					<fieldset id="open_inc">
						<legend>ინფორმაცია</legend>
							<table class="dialog-form-table">
								<tr>
									<td style="width: 150px;"><label for="req_num">ტელეფონი</label></td>
								</tr>
								
								<tr>
									<td style="width: 150px;">
										<input style="width: 130px;" disabled type="text" id="id_my_task" class="idle" onblur="this.className=\'idle\'"  value="' . $res['phone'] . '" />
									</td>
								</tr>
							    <tr>
									<td style="width: 150px;"><label for="req_num">სახელი</label></td>
								</tr>
							    <tr>
									<td>
										<input style="width: 130px;" disabled type="text" id="cur_date" class="idle" onblur="this.className=\'idle\'"  value="' . $res['first_name'] . '" />
										    <input id="open_inc_id" type="text" value="' . $res[incomming_call_id] . '" style="display:none;">
									</td>
								</tr>
							</table>
										        <table style="height: 243px;">						
						<tr>
							<td style="width: 180px; color: #3C7FB1;">ტელეფონი</td>
							<td style="width: 180px; color: #3C7FB1;">პირადი ნომერი</td>
						</tr>
						<tr>
							<td>
								<input type="text" id="personal_phone" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['personal_phone'] . '" />
							</td>
							<td style="width: 180px;">
								<input type="text" id="personal_id" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['personal_id'] . '" />
							</td>					
						</tr>
						<tr>
							<td style="width: 180px; color: #3C7FB1;">სახელი</td>
							<td style="width: 180px; color: #3C7FB1;">ელ-ფოსტა</td>
						</tr>
						<tr >
							<td style="width: 180px;">
								<input type="text" id="personal_first_name" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['personal_first_name'] . '" />
							</td>
							<td style="width: 180px;">
								<input type="text" id="personal_mail" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['personal_mail'] . '" />
							</td>			
						</tr>
						<tr>
							<td td style="width: 180px; color: #3C7FB1;">გვარი</td>
							<td td style="width: 180px; color: #3C7FB1;">დაბადების თარიღი</td>
						</tr>
						<tr>
							<td style="width: 180px;">
								<input type="text" id="personal_last_name" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['personal_last_name'] . '" />		
							</td>
							<td td style="width: 180px;">
								<input type="text" id="personal_d_date" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['personal_d_date'] . '" />		
							</td>
						</tr>
						<tr>
							<td td style="width: 180px; color: #3C7FB1;">ქალაქი</td>
							<td td style="width: 180px; color: #3C7FB1;">მისამართი</td>
						</tr>
						<tr>
							<td><select style="width: 165px;" id="personal_city" class="idls object">' . Getcity($res['personal_city']) . '</select></td>
							<td td style="width: 180px;">
								<input type="text" id="personal_addres" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['personal_addres'] . '" />		
							</td>
						</tr>
						<tr>
							<td td style="width: 180px; color: #3C7FB1;">ოჯახური სტატუსი</td>
							<td td style="width: 180px; color: #3C7FB1;">პროფესია</td>
						</tr>
						<tr>
							<td><select style="width: 165px;" id="personal_status" class="idls object">' . Getfamily($res['personal_status']) . '</select></td>
							<td td style="width: 180px;">
								<input type="text" id="personal_profession" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['personal_profession'] . '" />		
							</td>
						</tr>
					</table>
	                </fieldset>';
    }
    if (!empty($res[phone])) {
        $data .= GetRecordingsSection($res);
    }
    if ($res['outgoing_id'] != '') {
        $data .= GetRecordingsSection1($res);
    }
    $data .= ' </div>
		    </div>';
    $data .= '<input type="hidden" id="outgoing_call_id" value="' . $res['id'] . '" />';
    return $data;
}
开发者ID:GeoPvN,项目名称:mspy,代码行数:101,代码来源:tasks_tab1.action.php

示例8: GetPage


//.........这里部分代码省略.........
		        </fieldset>
			</div>
			<div>
				  </fieldset>
			</div>
			<div style="float: right;  width: 355px;">
					    
<!---------------------------------------------------------------კლიენტი---------------------------------------------------------------------------->							    
				 <fieldset onload="legal()">
					<legend>მომართვის ავტორი</legend>
					<table style="height: 172px;">
						<tr style="height:20px;">
							<td style="padding: 0px 0px 10px 45px;"><input type="radio" style="float:left;" class="legal" onclick="legal()" value="fhisical" name="legal" ' . ($res['abonent_status'] == "fhisical" ? "checked" : "checked") . '><span style="display: inline-block; margin: 8px;" >ფიზიკური </span></td>
							<td style="width: 180px; height:20px;"><input type="radio" style="float:left;" class="legal" onclick="legal()" value="Jural" name="legal" ' . ($res['abonent_status'] == "Jural" ? "checked" : "") . '><span style="display: inline-block; margin: 8px;">იურიდიული </td>
						</tr>
						<tr style="height:20px;">
							<td style="width: 180px; height:20px;">ტელეფონი</td>
							<td style="width: 180px; height:20px;"><div class="fhisical">პირადი ნომერი</div><div class="Jural">საიდენთიპიკაციო კოდი</div></td>
						</tr>	    
						<tr style="height:40px;">
							<td style="width: 180px; height:20px;"><input type="text" id="abonent_phone" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['abonent_phone'] . '" /></td>
                            <td style="width: 180px; height:20px;"><input type="text" id="abonent_pin" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['abonent_pin'] . '" /></td>
						</tr>
						<tr style="height:20px;">
							<td colspan="2" style="height:20px;"><div class="fhisical">აბონენტის სახელი გვარი</div><div class="Jural">ორგანიზაცია</div></td>
						</tr>
						<tr style="height:40px;">
							<td colspan="2" style="height:20px;">
								<input type="text" id="abonent_name" style="width: 328px;" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['abonent_name'] . '" />
							</td>		
						</tr>
						<tr style="height:20px;" class="Jural">
							<td colspan="2" style="height:20px;">პასუხისმგებელი პირი</td>
						</tr>		    
						<tr style="height:40px;" class="Jural">
							<td colspan="2" style="height:20px;">
								<input type="text" id="abonent_responsibl_person" style="width: 328px;" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['abonent_responsibl_person'] . '" />
							</td>		
						</tr>		    
						<tr style="height:20px;">
							<td colspan="2" style="height:20px;">მისამართი</td>
						</tr>
						<tr style="height:20px;">
							<td colspan="2" style="height:40px;">
								<input type="text" id="abonent_address" style="width: 328px;" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['abonent_address'] . '" />
							</td>		
						</tr>
						<tr style="height:20px;">
							<td style="width: 180px;"></td>
							<td style="width: 180px;">აბონენტის ნომერი</td>
						</tr>	    
						<tr style="height:40px;">
							<td style="width: 180px;">შენიშვნა</td>
                            <td style="width: 180px;"><input type="text" id="abonent_number" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['abonent_number'] . '" /></td>
						</tr>
                        <tr style="height:40px;">
							<td colspan="2">
								<textarea type="text" id="abonent_coment" style="width: 328px;" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" >' . $res['abonent_coment'] . '</textarea>
							</td>		
						</tr>        		    		    
						
					</table>
				</fieldset>
				';
    $data .= GetRecordingsSection($res);
    $data .= '		<fieldset>
					<legend>დამატებითი ინფორმაცია</legend> 
					<table style="float: right; border: 1px solid #85b1de; width: 150px; text-align: center;">
					<tr>
						<td>
							<div class="file-uploader">
								<input id="choose_file" type="file" name="choose_file" class="input" style="display: none;">
								<button id="choose_button" class="center">აირჩიეთ ფაილი</button>
								<input id="hidden_inc" type="text" value="' . increment('incomming_call') . '" style="display: none;">
							</div>
						</td>
					</tr>
				</table>
			     <table style="float: right; border: 1px solid #85b1de; width: 150px; text-align: center;">
			          <tr style="border-bottom: 1px solid #85b1de;">
			           <td colspan="3">მიმაგრებული ფაილი</td>
			          </tr>
				</table>
				<table id="file_div" style="float: right; border: 1px solid #85b1de; width: 150px; text-align: center;">';
    while ($increm_row = mysql_fetch_assoc($increm)) {
        $data .= ' 
								        <tr style="border-bottom: 1px solid #85b1de;">
								          <td style="width:110px; display:block;word-wrap:break-word;">' . $increm_row[name] . '</td>													 
								          <td ><button type="button" value="media/uploads/file/' . $increm_row[rand_name] . '" style="cursor:pointer; border:none; margin-top:25%; display:block; height:16px; width:16px; background:none;background-image:url(\'media/images/get.png\');" id="download" ></button><input type="text" style="display:none;" id="download_name" value="' . $increm_row[rand_name] . '"> </td>
								          <td ><button type="button" value="' . $increm_row[id] . '" style="cursor:pointer; border:none; margin-top:25%; display:block; height:16px; width:16px; background:none; background-image:url(\'media/images/x.png\');" id="delete"></button></td>
								        </tr>';
    }
    $data .= '
	 		</table>
				</fieldset>
			</div>
	 		<input id="hidden_checker" type="text" value="' . $res['id'] . '" style="display: none;">
    </div>';
    return $data;
}
开发者ID:aleqsandre553,项目名称:ktg,代码行数:101,代码来源:incomming.action4.php

示例9: GetPage


//.........这里部分代码省略.........
							</div>
							<div>
								  </fieldset>
							</div>
							<div style="float: right;  width: 355px;">
								 <fieldset>
									<legend>მომართვის ავტორი</legend>
									<table style="height: 133px;">
										<tr>
											<td style="width: 180px;">PIN კოდი</td>
											<td style="width: 180px;"></td>
										</tr>
										<tr>
											<td style="width: 180px;"><input type="text" id="personal_pin" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['personal_pin'] . '" /></td>
											<td style="width: 180px;"></td>
											
										</tr>
										<tr>
											<td style="width: 180px;">პირადი ნომერი</td>
											<td style="width: 180px;"></td>
										</tr>
										<tr>
											<td style="width: 180px;">
												<input type="text" id="personal_id" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['personal_id'] . '" />
											</td>
											<td style="width: 180px;"></td>
										</tr>
									</table>
								</fieldset>
								<div id="additional_info">';
        if (!empty($res['personal_pin'])) {
            $data .= get_addition_all_info($res['personal_pin']);
        }
        $data .= GetRecordingsSection($res);
        $data .= '</div>
								<fieldset>
									<legend>დამატებითი ინფორმაცია</legend> 
									
									<table style="float: right; border: 1px solid #85b1de; width: 150px; text-align: center;">
										<tr>
											<td>
												<div class="file-uploader">
													<input id="choose_file" type="file" name="choose_file" class="input" style="display: none;">
													<button id="choose_button" class="center">აირჩიეთ ფაილი</button>
													<input id="hidden_inc" type="text" value="' . increment('task') . '" style="display: none;">
												</div>
											</td>
										</tr>
									</table>
								     <table style="float: right; border: 1px solid #85b1de; width: 150px; text-align: center;">
								          <tr style="border-bottom: 1px solid #85b1de;">
								           <td colspan="3">მიმაგრებული ფაილი</td>
								          </tr>
									</table>
									<table id="file_div" style="float: right; border: 1px solid #85b1de; width: 150px; text-align: center;">';
        while ($increm_row = mysql_fetch_assoc($increm)) {
            $data .= ' 
									        <tr style="border-bottom: 1px solid #85b1de;">
									          <td style="width:110px; display:block;word-wrap:break-word;">' . $increm_row[name] . '</td>													 
									          <td ><button type="button" value="media/uploads/file/' . $increm_row[rand_name] . '" style="cursor:pointer; border:none; margin-top:25%; display:block; height:16px; width:16px; background:none;background-image:url(\'media/images/get.png\');" id="download" ></button><input type="text" style="display:none;" id="download_name" value="' . $increm_row[rand_name] . '"> </td>
									          <td ><button type="button" value="' . $increm_row[id] . '" style="cursor:pointer; border:none; margin-top:25%; display:block; height:16px; width:16px; background:none; background-image:url(\'media/images/x.png\');" id="delete"></button></td>
									        </tr>';
        }
        $data .= '
				 					</table>
								</fieldset>
开发者ID:aleqsandre553,项目名称:ktg,代码行数:67,代码来源:outgoing_tab2.action.php

示例10: GetPage


//.........这里部分代码省略.........
												<td style="width: 150px;"><label></label></td>
												<td style="width: 150px;"><label>კომენტარი</label></td>
											</tr>
											<tr>
												<td><input style="width: 130px; float:left;" id="set_start_time" class="idle" type="text"><span style="margin-left:5px; ">დან</span></td>
										  		<td><input style="width: 130px; float:left;" id="set_done_time" class="idle" type="text"><span style="margin-left:5px; ">მდე</span></td>
												<td>
													<textarea  style="width: 270px; resize: none;" id="set_body" class="idle" name="content" cols="300">' . $res['comment'] . '</textarea>
												</td>
											</tr>
										</table>
							        </fieldset>	
							</fieldset>	
							</div>';
    $data .= '<div style="float: right;  width: 355px;">
								<fieldset>
								<legend>აბონენტი</legend>
								<table style="height: 243px;">						
									<tr>
										<td style="width: 180px; color: #3C7FB1;">ტელეფონი 1</td>
										<td style="width: 180px; color: #3C7FB1;">ტელეფონი 2</td>
									</tr>
									<tr>
										<td>
											<input type="text" id="phone"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['phone'] . '" />
										</td>
										<td>
											<input type="text" id="phone1"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['phone2'] . '" />
										</td>
															
									</tr>
									<tr>
										<td style="width: 180px; color: #3C7FB1;">სახელი</td>
										<td style="width: 180px; color: #3C7FB1;">ელ-ფოსტა</td>
									</tr>
									<tr >
										<td style="width: 180px;">
											<input type="text" id="first_name"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['first_name'] . '" />
										</td>
										<td style="width: 180px;">
											<input type="text" id="mail"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['mail'] . '" />
										</td>			
									</tr>
									<tr>
										<td td style="width: 180px; color: #3C7FB1;">ქალაქი</td>
										<td td style="width: 180px; color: #3C7FB1;">დაბადების თარიღი</td>
									</tr>
									<tr>
										<td><input type="text" id="city_id"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['city_id'] . '" /></td>	
										<td td style="width: 180px;">
											<input type="text" id="b_day"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['b_day'] . '" />		
										</td>
									</tr>
									<tr>
										<td td style="width: 180px; color: #3C7FB1;">მისამართი</td>
										<td style="width: 180px; color: #3C7FB1;">პირადი ნომერი</td>
									</tr>
									<tr>
										<td td style="width: 180px;">
											<input type="text" id="addres"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['addres'] . '" />		
										</td>
										<td style="width: 180px;">
											<input type="text" id="person_n"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['person_n'] . '" />
										</td>
									</tr>
													
									<tr>
										<td td style="width: 180px; color: #3C7FB1;">ასაკი</td>
										<td style="width: 180px; color: #3C7FB1;">სქესი</td>
									</tr>
									<tr>
										<td td style="width: 180px;">
											<input type="text" id="age"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['age'] . '" />		
										</td>
										<td style="width: 180px;">
											<input type="text" id="sex"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['sex'] . '" />
										</td>
									</tr>
									
									<tr>
										<td td style="width: 180px; color: #3C7FB1;">პროფესია</td>
										<td style="width: 180px; color: #3C7FB1;">ინტერესების სფერო</td>
									</tr>
									<tr>
										<td td style="width: 180px;">
											<input type="text" id="profession"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['profession'] . '" />		
										</td>
										<td style="width: 180px;">
											<input type="text" id="interes"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['interes'] . '" />
										</td>
									</tr>
									
								</table>
							</fieldset>';
    $data .= GetRecordingsSection($res);
    $data .= '</div>
				    </div>';
    $data .= '<input type="hidden" id="outgoing_call_id" value="' . $res['id'] . '" />';
    return $data;
}
开发者ID:GeoPvN,项目名称:mspy,代码行数:101,代码来源:outgoing_tab0.action.php

示例11: GetPage


//.........这里部分代码省略.........
            		    <tr>
            				<td style="width: 180px;">
            					<input style="width: 180px;" type="text" id="call_date" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField date\'" value="' . $date . '" disabled="disabled" />
            				</td>
            			</tr>
            			<tr>
            				<td style="width: 180px;"><label  for="req_phone">ტელეფონი</label></td>
                	    </tr>
            			<tr>
            				<td style="width: 150px;">
            					<input style="width: 180px;" type="text" id="phone" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['phone'] . '" ' . $disable . ' />
            				</td>
            			</tr>
            			<tr>
            			    <td style="width: 180px;"><label  for="req_phone">სახელი</label></td>
            			</tr>
            			<tr>
            			    <td style="width: 180px;">
            					<input style="width: 180px;" type="text" id="client_name" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['name'] . '" ' . $disable . ' />
            				</td>
            			</tr>
            		    <tr>
            				<td style="width: 180px;"><label for="d_number">ზარის სტატუსი</label></td>
            			</tr>
            			<tr>
            				<td style="width: 180px;"><select style="width: 180px;" id="call_status" class="idls object" ' . $disable . '>' . Getcall_status($res['call_status_id']) . '</select></td>
            			</tr>
            		    <tr style="margin-top: 20px; margin-top=25px">
            				<td style="width: 180px;"><label for="content">დამატებითი ინფორმაცია</label></td>
            			</tr>
            			<tr>
            				<td colspan="5">
            					<div id="content">		
            					<textarea  style="width: 180px; resize: vertical; margin-top: 5px;" id="call_content" class="idle" name="call_content" cols="300" rows="2" ' . $disable . '>' . $res['call_content'] . '</textarea>
            					</div>
            				</td>
            			</tr>			
            		</table>
            	</fieldset>
                <fieldset style="margin-top: 5px; width: 190px;">
                	<legend>დავალების ფორმირება</legend>
                    <table class="dialog-form-table">
            			<tr style="display: none">
            				<td style="width: 180px; display: none"><label for="d_number">პასუხისმგებელი პირი</label></td>
            			</tr>
            			<tr style="display: none">
            				<td style="width: 180px; display: none"><select style="width: 180px;" id="persons_id" class="idls object" ' . $disable . '>' . Getpersons($res['responsible_user_id']) . '</select></td>
            		    </tr>
            			<tr>
            				<td style="width: 180px;"><label for="d_number">დეპარტამენტი</label></td>
            			</tr>
            			<tr>
            				<td style="width: 180px;"><select style="width: 180px;" id="department_id" class="idls object" ' . $disable . '>' . Getdepartment($res['department_id']) . '</select></td>
            			</tr>
                		<tr>
            				<td style="width: 180px;"><label for="d_number">დავალების ტიპი</label></td>
            			</tr>
            			<tr>
            				<td style="width: 180px;"><select style="width: 180px;" id="task_type_id" class="idls object" ' . $disable . '>' . Gettask_type($res['task_type_id']) . '</select></td>
            			</tr>
            			<tr>
            				<td style="width: 180px;"><label for="d_number">პრიორიტეტი</label></td>
            			</tr>
            		    <tr>
            				<td style="width: 180px;"><select style="width: 180px;" id="priority_id" class="idls object" ' . $disable . '>' . Getpriority($res['priority_id']) . '</select></td>
            			</tr>
                		<tr style="display: none">
            				<td style="width: 180px;"><label for="d_number">სხვა ნომერი</label></td>
            			</tr>
            			<tr>
            				<td style="width: 180px;"><label for="content">შინაარსი</label></td>
            			</tr>
            			<tr>
            				
            				<td>	
            					<textarea  style="width: 180px; resize: vertical;" id="problem_coment" class="idle" name="call_content" cols="300" rows="2" ' . $disable . '>' . $res['problem_comment'] . '</textarea>
            				</td>
            			</tr>	
            		</table>
                </fieldset>
        	</td>
            <td>
            	<fieldset id="search" style="float: right; margin-top: 7px; margin-top: 62px;">
            	</fieldset>
            </td>
        	<td style="vertical-align: top;">';
    $data .= '</div><div id="chanawerebi" style="float: right; width: 195px;">';
    $data .= GetRecordingsSection($res);
    $data .= '</div>
            </td>
        </tr>
    </table>
                    
        <input id="hidden_user" type="text" value="' . $res['user_id'] . '" style="display: none;">
    	<input id="asterisk_incomming_id" type="text" value="' . $res['asterisk_incomming_id'] . '" style="display: none;">
    	<input id="inc_id" type="text" value="' . $res['id'] . '" style="display: none;">
    	    
    </div>';
    return $data;
}
开发者ID:aleqsandre553,项目名称:msgroup,代码行数:101,代码来源:incomming.action2.php

示例12: GetPage


//.........这里部分代码省略.........
												<td style="width: 150px;"><label></label></td>
												<td style="width: 150px;"><label>კომენტარი</label></td>
											</tr>
											<tr>
												<td><input style="width: 130px; float:left;" id="set_start_time" class="idle" type="text"><span style="margin-left:5px; ">დან</span></td>
										  		<td><input style="width: 130px; float:left;" id="set_done_time" class="idle" type="text"><span style="margin-left:5px; ">მდე</span></td>
												<td>
													<textarea  style="width: 270px; resize: none;" id="set_body" class="idle" name="content" cols="300">' . $res['comment'] . '</textarea>
												</td>
											</tr>
										</table>
							        </fieldset>	
							</fieldset>	
							</div>';
    $data .= '<div style="float: right;  width: 355px;">
								<fieldset>
								<legend>აბონენტი</legend>
								<table style="height: 243px;">						
									<tr>
										<td style="width: 180px; color: #3C7FB1;">ტელეფონი 1</td>
										<td style="width: 180px; color: #3C7FB1;">ტელეფონი 2</td>
									</tr>
									<tr>
										<td>
											<input type="text" id="phone"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['phone'] . '" />
										</td>
										<td>
											<input type="text" id="phone1"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['phone2'] . '" />
										</td>
															
									</tr>
									<tr>
										<td style="width: 180px; color: #3C7FB1;">სახელი</td>
										<td style="width: 180px; color: #3C7FB1;">ელ-ფოსტა</td>
									</tr>
									<tr >
										<td style="width: 180px;">
											<input type="text" id="first_name"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['first_name'] . '" />
										</td>
										<td style="width: 180px;">
											<input type="text" id="mail"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['mail'] . '" />
										</td>			
									</tr>
									<tr>
										<td td style="width: 180px; color: #3C7FB1;">ქალაქი</td>
										<td td style="width: 180px; color: #3C7FB1;">დაბადების თარიღი</td>
									</tr>
									<tr>
										<td><input type="text" id="city_id"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['city_id'] . '" /></td>	
										<td td style="width: 180px;">
											<input type="text" id="b_day"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['b_day'] . '" />		
										</td>
									</tr>
									<tr>
										<td td style="width: 180px; color: #3C7FB1;">მისამართი</td>
										<td style="width: 180px; color: #3C7FB1;">პირადი ნომერი</td>
									</tr>
									<tr>
										<td td style="width: 180px;">
											<input type="text" id="addres"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['addres'] . '" />		
										</td>
										<td style="width: 180px;">
											<input type="text" id="person_n"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['person_n'] . '" />
										</td>
									</tr>
													
									<tr>
										<td td style="width: 180px; color: #3C7FB1;">ასაკი</td>
										<td style="width: 180px; color: #3C7FB1;">სქესი</td>
									</tr>
									<tr>
										<td td style="width: 180px;">
											<input type="text" id="age"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['age'] . '" />		
										</td>
										<td style="width: 180px;">
											<input type="text" id="sex"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['sex'] . '" />
										</td>
									</tr>
									
									<tr>
										<td td style="width: 180px; color: #3C7FB1;">პროფესია</td>
										<td style="width: 180px; color: #3C7FB1;">ინტერესების სფერო</td>
									</tr>
									<tr>
										<td td style="width: 180px;">
											<input type="text" id="profession"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['profession'] . '" />		
										</td>
										<td style="width: 180px;">
											<input type="text" id="interes"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['interes'] . '" />
										</td>
									</tr>
									
								</table>
							</fieldset>';
    $data .= GetRecordingsSection($res);
    $data .= '</div>
				    </div>';
    $data .= '<input type="hidden" id="outgoing_call_id" value="' . $res['id'] . '" />';
    return $data;
}
开发者ID:GeoPvN,项目名称:mspy,代码行数:101,代码来源:outgoing_tab0_0.action.php

示例13: pagee


//.........这里部分代码省略.........
											<th style="width: 150px"></th>
                							<th style="width: 150px"></th>
                                        </tr>
                                        </tfoot>
					                </table>
					            </div>
					            <div class="spacer">
					            </div>
					        </div></div>
					</fieldset>
    
			 		<fieldset>
							<legend>ცვლილებების ისტორია</legend>
				                <div id="dt_example" class="inner-table">
					        <div style="width:100%;" id="container" >        	
					            <div id="dynamic">
									<div id="button_area">
				        			</div>
					                <table id="sub2" style="width: 100%;">
					                    <thead>
											<tr  id="datatable_header">
												<th style="width:1%; display:none;"></th>
												<th style="width:25%;">რედაქტირებს თარიღი</th>
												<th style="width:20%;">ქმედება</th>
												<th style="width:100%;">ოპერატორი ძველი</th>
												<th style="width:100%;">ოპერატორი ახალი</th>
												<th style="width:100%;">პროდუქტი ძველი</th>
												<th style="width:100%;">პროდუქტი ახალი</th>
		  										<th style="width:10%;">რ-ბა ძველი</th>
												<th style="width:10%;">რ-ბა ახალი</th>
												<th style="width:10%;">ფასი ძველი</th>
												<th style="width:10%;">ფასი ახალი</th>
											    <th style="width:10%;">სულ ფასი ძველი</th>
												<th style="width:10%;">სულ ფასი ახალი</th>
											</tr>
										</thead>
										<thead>
											<tr class="search_header">
												<th style="display:none;">
												</th>
												<th>
													<input style="width:60px;" type="text" name="search_overhead" value="ფილტრი" class="search_init" />
												</th>
		  										<th>
													<input style="width:60px;" type="text" name="search_overhead" value="ფილტრი" class="search_init" />
												</th>
												<th>
													<input style="width:60px;" type="text" name="search_partner" value="ფილტრი" class="search_init" />
												</th>
												<th>
													<input style="width:60px;" type="text" name="search_overhead" value="ფილტრი" class="search_init" />
												</th>
												<th>
													<input style="width:60px;" type="text" name="search_partner" value="ფილტრი" class="search_init" />
												</th>
		  										<th>
                									<input style="width:60px;" type="text" name="search_overhead" value="ფილტრი" class="search_init" />
                								</th>	
												<th>
													<input style="width:30px;" type="text" name="search_overhead" value="" class="search_init" />
												</th>
												<th>
													<input style="width:30px;" type="text" name="search_partner" value="" class="search_init" />
												</th>
												<th>
													<input style="width:30px;" type="text" name="search_overhead" value="" class="search_init" />
												</th>
												<th>
													<input style="width:30px;" type="text" name="search_partner" value="" class="search_init" />
												</th>
		  										<th>
													<input style="width:60px;" type="text" name="search_partner" value="ფილტრი" class="search_init" />
												</th>
		  										<th>
                									<input style="width:60px;" type="text" name="search_overhead" value="ფილტრი" class="search_init" />
                								</th>	
												
											</tr>
										</thead>
					                </table>
					            </div>
					            <div class="spacer">
					            </div>
					        </div></div>
					</fieldset>
					</div>
					<input type="hidden" id="id" value="' . $_REQUEST[id] . '" />
					<input type="hidden" id="my_dep" value="' . $_REQUEST[dep_now] . '"/>
			</div>
		</fieldset>
								    
	    <div id="tab-2">
	    <div id="dialog-form">
	    ' . GetRecordingsSection($res) . '
	    </div>
	    </div></div>
	    
	    </div>';
    return $data['page'][0];
}
开发者ID:GeoPvN,项目名称:mspy,代码行数:101,代码来源:elva.ge_new.action.php

示例14: GetPage


//.........这里部分代码省略.........
									<tr>
										<td style="width: 180px; color: #3C7FB1;">სახელი</td>
										<td style="width: 180px; color: #3C7FB1;">ელ-ფოსტა</td>
									</tr>
									<tr >
										<td style="width: 180px;">
											<input type="text" id="first_name"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['first_name'] . '" />
										</td>
										<td style="width: 180px;">
											<input type="text" id="mail"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['mail'] . '" />
										</td>			
									</tr>
									<tr>
										<td td style="width: 180px; color: #3C7FB1;">ქალაქი</td>
										<td td style="width: 180px; color: #3C7FB1;">დაბადების თარიღი</td>
									</tr>
									<tr>
										<td><input type="text" id="city_id"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['city_id'] . '" /></td>	
										<td td style="width: 180px;">
											<input type="text" id="b_day"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['b_day'] . '" />		
										</td>
									</tr>
									<tr>
										<td td style="width: 180px; color: #3C7FB1;">მისამართი</td>
										<td style="width: 180px; color: #3C7FB1;">პირადი ნომერი</td>
									</tr>
									<tr>
										<td td style="width: 180px;">
											<input type="text" id="addres"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['addres'] . '" />		
										</td>
										<td style="width: 180px;">
											<input type="text" id="person_n"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['person_n'] . '" />
										</td>
									</tr>
													
									<tr>
										<td td style="width: 180px; color: #3C7FB1;">ასაკი</td>
										<td style="width: 180px; color: #3C7FB1;">სქესი</td>
									</tr>
									<tr>
										<td td style="width: 180px;">
											<input type="text" id="age"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['age'] . '" />		
										</td>
										<td style="width: 180px;">
											<input type="text" id="sex"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['sex'] . '" />
										</td>
									</tr>
									
									<tr>
										<td td style="width: 180px; color: #3C7FB1;">პროფესია</td>
										<td style="width: 180px; color: #3C7FB1;">ინტერესების სფერო</td>
									</tr>
									<tr>
										<td td style="width: 180px;">
											<input type="text" id="profession"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['profession'] . '" />		
										</td>
										<td style="width: 180px;">
											<input type="text" id="interes"  class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['interes'] . '" />
										</td>
									</tr>
									
								</table>
							</fieldset>';
    $data .= GetRecordingsSection($res);
    $data .= '</div>
						    
						    <fieldset style="margin-top: 5px;">
								    	<legend>დავალების ფორმირება</legend>
							
								    	<table class="dialog-form-table" >
											<tr>
												<td style="width: 280px;"><label for="set_task_department_id">განყოფილება</label></td>
												<td style="width: 280px;"><label for="set_persons_id">პასუხისმგებელი პირი</label></td>
												<td style="width: 280px;"><label for="set_priority_id">პრიორიტეტი</label></td>
											</tr>
								    		<tr>
												<td><select style="width: 200px;"  id="set_task_department_id" class="idls object">' . Getdepartment($res['task_department_id']) . '</select></td>
												<td><select style="width: 200px;" id="set_persons_id" class="idls object">' . Getpersons($res['persons_id']) . '</select></td>
												<td><select style="width: 200px;" id="set_priority_id" class="idls object">' . Getpriority($res['priority_id']) . '</select></td>
											</tr>
											</table>
											<table class="dialog-form-table" style="width: 720px;">
											<tr>
												<td style="width: 150px;"><label>შესრულების პერიოდი</label></td>
												<td style="width: 150px;"><label></label></td>
												<td style="width: 150px;"><label>კომენტარი</label></td>
											</tr>
											<tr>
												<td><input style="width: 130px; float:left;" id="set_start_time" class="idle" type="text"><span style="margin-left:5px; ">დან</span></td>
										  		<td><input style="width: 130px; float:left;" id="set_done_time" class="idle" type="text"><span style="margin-left:5px; ">მდე</span></td>
												<td>
													<textarea  style="width: 270px; resize: none;" id="set_body" class="idle" name="content" cols="300">' . $res['comment'] . '</textarea>
												</td>
											</tr>
										</table>
							        </fieldset>	
				    </div>';
    $data .= '<input type="hidden" id="outgoing_call_id" value="' . $res['id'] . '" />';
    return $data;
}
开发者ID:GeoPvN,项目名称:winstone,代码行数:101,代码来源:outgoing_tab0.action.php

示例15: GetPage


//.........这里部分代码省略.........
				 <fieldset onload="legal()">
					<legend>მომართვის ავტორი</legend>
					<table style="height: 172px;">
						<tr style="height:20px;">
							<td style="padding: 0px 0px 10px 45px;"><input type="radio" style="float:left;" class="legal" onclick="legal()" value="fhisical" name="legal" ' . ($res['abonent_status'] == "fhisical" ? "checked" : "checked") . '><span style="display: inline-block; margin: 8px;" >ფიზიკური </span></td>
							<td style="width: 180px; height:20px;"><input type="radio" style="float:left;" class="legal" onclick="legal()" value="Jural" name="legal" ' . ($res['abonent_status'] == "Jural" ? "checked" : "") . '><span style="display: inline-block; margin: 8px;">იურიდიული </td>
						</tr>
						<tr style="height:20px;">
							<td style="width: 180px; height:20px;">ტელეფონი</td>
							<td style="width: 180px; height:20px;"><div class="fhisical">პირადი ნომერი</div><div class="Jural">საიდენთიპიკაციო კოდი</div></td>
						</tr>	    
						<tr style="height:40px;">
							<td style="width: 180px; height:20px;"><input type="text" id="abonent_phone" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['abonent_phone'] . '" /></td>
                            <td style="width: 180px; height:20px;"><input type="text" id="abonent_pin" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['abonent_pin'] . '" /></td>
						</tr>
						<tr style="height:20px;">
							<td colspan="2" style="height:20px;"><div class="fhisical">აბონენტის სახელი გვარი</div><div class="Jural">ორგანიზაცია</div></td>
						</tr>
						<tr style="height:40px;">
							<td colspan="2" style="height:20px;">
								<input type="text" id="abonent_name" style="width: 328px;" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['abonent_name'] . '" />
							</td>		
						</tr>
						<tr style="height:20px;" class="Jural">
							<td colspan="2" style="height:20px;">პასუხისმგებელი პირი</td>
						</tr>		    
						<tr style="height:40px;" class="Jural">
							<td colspan="2" style="height:20px;">
								<input type="text" id="abonent_responsibl_person" style="width: 328px;" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['abonent_responsibl_person'] . '" />
							</td>		
						</tr>		    
						<tr style="height:20px;">
							<td colspan="2" style="height:20px;">მისამართი</td>
						</tr>
						<tr style="height:20px;">
							<td colspan="2" style="height:40px;">
								<textarea type="text" id="abonent_address" style="width: 328px; resize: vertical;" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'"  >' . $res['abonent_address'] . '</textarea>
							</td>		
						</tr>
						<tr style="height:20px;">
							<td style="width: 180px;"></td>
							<td style="width: 180px;">აბონენტის ნომერი</td>
						</tr>	    
						<tr style="height:40px;">
							<td style="width: 180px;">შენიშვნა</td>
                            <td style="width: 180px;"><input type="text" id="abonent_number" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" value="' . $res['abonent_number'] . '" /></td>
						</tr>
                        <tr style="height:40px;">
							<td colspan="2">
								<textarea type="text" id="abonent_coment" style="width: 328px; resize: vertical;" class="idle" onblur="this.className=\'idle\'" onfocus="this.className=\'activeField\'" >' . $res['abonent_coment'] . '</textarea>
							</td>		
						</tr>        		    		    
						
					</table>
				</fieldset>
				
				<div id="additional_info">';
    if (!empty($res['personal_pin'])) {
        $data .= get_addition_all_info($res['personal_pin']);
    }
    $data .= '</div>';
    $data .= GetRecordingsSection($res);
    $data .= '		<fieldset>
		         	<legend>დამატებითი ინფორმაცია</legend> 
		         	<table id="additiona1" class="hidden dialog-form-table" style="float: left; border: 1px solid #85b1de; width: 180px; text-align: center;">
			        <table style="float: right; border: 1px solid #85b1de; width: 150px; text-align: center;">
						<tr>
							<td>
								<div class="file-uploader">
									<input id="choose_file" type="file" name="choose_file" class="input" style="display: none;">
									<button id="choose_button" class="download">აირჩიეთ ფაილი</button>
									<input id="hidden_inc" type="text" value="' . increment('task') . '" style="display: none;">
								</div>
							</td>
						</tr>
					</table>
				     <table style="float: right; border: 1px solid #85b1de; width: 150px; text-align: center;">
				          <tr style="border-bottom: 1px solid #85b1de;">
				           <td colspan="3">მიმაგრებული ფაილი</td>
				          </tr>
					</table>
					<table id="file_div" style="float: right; border: 1px solid #85b1de; width: 150px; text-align: center;">';
    while ($increm_row = mysql_fetch_assoc($increm)) {
        $data .= ' 
									        <tr style="border-bottom: 1px solid #85b1de;">
									          <td style="width:110px; display:block;word-wrap:break-word;">' . $increm_row[name] . '</td>													 
									          <td ><button type="button" value="media/uploads/file/' . $increm_row[rand_name] . '" style="cursor:pointer; border:none; margin-top:25%; display:block; height:16px; width:16px; background:none;background-image:url(\'media/images/get.png\');" id="download" ></button><input type="text" style="display:none;" id="download_name" value="' . $increm_row[rand_name] . '"> </td>
									          <td ><button type="button" value="' . $increm_row[id] . '" style="cursor:pointer; border:none; margin-top:25%; display:block; height:16px; width:16px; background:none; background-image:url(\'media/images/x.png\');" id="delete"></button></td>
									        </tr>';
    }
    $data .= '
		 		</table>
		        </fieldset>
							
			</div>
		<!-- ID -->
		<input type="hidden" id="req_id" value="' . $res['id'] . '" />
    </div>';
    return $data;
}
开发者ID:aleqsandre553,项目名称:ktg,代码行数:101,代码来源:tasks.action.php


注:本文中的GetRecordingsSection函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。