The platform for dealer.
The project's estimate is 10 hours by $11 per hour, so it came out 5000g.If your flight is bigger, it will be unfortunate if you are still investing in the budget thanks to your qualification.I think it will take 2 hours to get to know.There are cows, it’s not a framework.Work is constant with the project, if we work, then the work will be for 5-10 hours, every week.The Russian and Belarusian proposals are not considered.You need to value the opportunity to sell products with the individual price of the dealer.The function is partially made:
1 Table of Pricing
2 The magazine of the seller.3 - fields for delivery, delivery, FIO of the customer in the standard order form.4 - made filter to display information in the hat and tables of orders and payments, depending on the status of the user.You need to pay:
- to introduce the rights to the logic of interests, and the rights of users.- add fields and functional to all forms of calculations (field for forms already exists, functional made)
- to make a printed form (realised, and hardly to make)
- add the option to download the client’s logo and enter it in the calculation form, and printed form.(in the initial stage)
- need will be directions in the layer (will be given for a good look, only the forms of orders)
Test the functional.(We will be)
Testing entrance:
HTTPS://piramid.com.ua/formazakazajaluzy.html
Posts Tagged: test@test
Number of passwords: 5555
Examples of code:
Структура порталу:

Приклад коду:
<?php
/*
* В этом файле реализовано внесение нового заказа
* 4/12/14
* автор: Splitter
*/
include_once '../calculators/balance.php';
include_once '../DataGrid/functions_.php';
include_once 'get_order_sum.php';
include_once 'order_number.php';
include_once 'change_payment.php';
//определяем юзверя, возжелавшего оформить заказ
session_start();
$us_login = $_SESSION['login'];
// узнаем сумму заказа
$order_sum = get_tempOrder_sum($us_login);
if ($order_sum) {
// определяем номер заказа
$order_number = get_order_number();
if ($order_number) {
// вносим данные в таблицу "заказы"
// достаем скидку
$order_discount = getOrderDiscount();
if (update_order($order_number, $us_login, $order_sum, $order_discount)) {
// вносим содержимое заказа
if (add_order_contents($order_number, $us_login)) {
echo "<h1>оформлен предварительный заказ № $order_number </h1>"
. "<h2>не забудьте его подтвердить!</h2>";
// очищаем временную таблицу
$d_base = db_connect();
$d_base->query("TRUNCATE TABLE `temp_" . $us_login . "`");
// вычисляем и записываем баланс
}else{ echo "<h1>ошибка при попытке оформить заказ</h1>"; }
}
}
}
//***********************************************
// внесение заказа
//***********************************************
function update_order($order_number, $us_login, $order_sum, $order_discount = 0) {
//определяем дату и время заказа
$order_data_time = date("y.m.d H:i:s");
//определяем желания юзверя отосительно своего приобретения
if (isset($_POST['comment'])) {
$comment = filter_input(INPUT_POST, 'comment', 515);
} else {
exit(" ошибка передачи данных по комментарию заказчика!");
}
if (isset($_POST['delivery_adr'])) {
$delivery_adr = filter_input(INPUT_POST, 'delivery_adr', 515);
} else {
exit(" ошибка передачи адреса доставки! ");
}
if (isset($_POST['product_type'])) {
$order_type = filter_input(INPUT_POST, 'product_type', 515);
} else {
exit(" ошика передачи данных о типе продукта! ");
}
if (isset($_POST['retailData'])) {
$retailData = filter_input(INPUT_POST, 'retailData', 515);
} else {
exit(" ошика передачи розничных данных! ");
}
if (isset($_POST['retailSum'])) {
$retailSum = filter_input(INPUT_POST, 'retailSum', 515);
} else {
exit(" ошика передачи розничных данных! ");
}
// узнаем площадь заказа
$order_square = get_tempOrder_square($us_login);
//формируем текст запроса и выполняем
$d_base = db_connect();
$SQL_data_text = "INSERT INTO `заказы` "
. "( `N_заказа`, `IP`, `дата_заказа`, `пользователь`, "
. "`вид заказа`, `площадь, м.кв.`, `сумма`, `статус`, "
. "`комментарий`, `адрес доставки` , `ВидАдресаВЗаказе`, `розничная сумма`, `заказчик розница`, `скидка`) "
. "VALUES ( '" . $order_number . "', '" . $_SESSION['IP']
. "', '" . $order_data_time . "', '" . $us_login . "', '"
. $order_type . "', '" . $order_square . "', '"
. $order_sum . "', 'предварительный', '"
. $comment . "', '" . str_replace(' ', "\n", $delivery_adr) . "','".$_POST['adrType']."', '"
. $retailSum . "', '" . $retailData . "', '" . $order_discount . "' )";
if ($d_base->query($SQL_data_text) === TRUE) {
$d_base->close();
return TRUE;
} else {
echo "Ошибка при попытке записать заказ: "
. $SQL_data_text . "<br>" . $d_base->error;
return FALSE;
}
}
//***********************************************
// внесение содержимого заказа
//***********************************************
function add_order_contents($order_number, $us_login) {
// получаем данные из временной таблицы
$d_base = db_connect();
$result = $d_base->query("SELECT * FROM `temp_" . $us_login . "`");
// формируем запрос на внесение данных в таблицу "содержимое заказов"
$sql_values_text = "";
while ($cells = mysqli_fetch_array($result)) {
$sql_values_text .= "('" . $order_number . "', '"
. $cells[1] . "', '" . $cells[2] . "', '" . $cells[3] . "', '"
. $cells[4] . "', '" . $cells[5] . "', '" . $cells[6] . "', '" . $cells[7] . "'";
if (isset($cells[8])) {
$sql_values_text .= ", '" . $cells[8] . "'),";
} else {
$sql_values_text .= ",''),";
}
}
$sql_values = substr_replace($sql_values_text, ';', -1);
$SQL_txt = "INSERT INTO содержимое_заказов VALUES " . $sql_values;
// вносим данные в таблицу "содержимое_заказов"
if ($d_base->query($SQL_txt)) {
$d_base->close();
return TRUE;
} else {
echo "$cells[8] Ошибка при попытке записать содержимое заказа:
INSERT INTO содержимое_заказов VALUES " . $sql_values . $d_base->error;
return FALSE;
}
}
//***********************************************
// определение суммы временного заказа
//***********************************************
Applications 4
-
105 Welcome to! Ready to take your project. It has been in development for more than 4 years. I do it at the highest level in the agreed time, always in contact. Write to discuss.
-
2328 30 0 Welcome, I can perform your task on the front part, provide technical support.
CMS: Magento, WordPress and MODX.
LESS, SASS, SCSS, JavaScript, PHP, MYSQL
by GIT
I am glad to see you among my customers now and in the future.
Current freelance projects in the category Javascript and Typescript
Website design updateIt is necessary to update the design of the existing website using HTML, CSS, JS: refresh the appearance, make it modern and responsive for mobile devices. Smooth animations and interactive elements need to be added. HTML & CSS, Javascript and Typescript ∙ 7 hours 50 minutes back ∙ 61 proposals |
Consultation and audit of the current project on Odoo 19 Community EditionWe are looking for an Odoo Developer — a solo developer with experience in Odoo 19 Community Edition, including using Claude Code. We need a specialist who has successfully implemented projects in Odoo and practical experience in development using Claude Code. Important: we only… C & C++, Javascript and Typescript ∙ 13 hours 29 minutes back ∙ 5 proposals |
Online clothing storeNeed a developer for an online clothing store Looking for an experienced developer to create a full-fledged online clothing store with a drop model of sales. What needs to be done: 6 pages: home, product, cart, checkout, account, admin panel Login via Google account Cart and… HTML & CSS, Javascript and Typescript ∙ 2 days 10 hours back ∙ 98 proposals |
Full-stack development — Amazon PPC Dashboard (Stage 1)Need a full-stack developer with experience working with Amazon API to implement Stage 1 of the internal PPC dashboard. The project is real, the data is live, everything is ready to start. Frontend prototype (5 pages, React + TypeScript): WHAT IS ALREADY READY — Frontend… Javascript and Typescript, Web Programming ∙ 4 days 21 hours back ∙ 32 proposals |
Development of a photo book and photo frame constructor websiteProject Goal A modern website needs to be developed for ordering photo books, photo frames, and other personalized photo products. The main task of the project is to provide the client with the ability to independently create a ready-made layout of the product directly on the… Javascript and Typescript, Web Programming ∙ 6 days 13 hours back ∙ 99 proposals |