Compare commits

...

11 Commits

Author SHA1 Message Date
Michał Zieliński
be27602ca3 calculate delivery date fix 2025-08-30 13:15:50 +02:00
Michał Zieliński
eab6fc87b1 AI reports 2025-08-27 08:54:00 +02:00
Michał Zieliński
f3c8adb3c8 AI reports 2025-08-27 07:57:33 +02:00
Michał Zieliński
113e00080a EDI, send_date fix 2025-08-26 19:12:17 +02:00
Michał Zieliński
6fdc2f11b5 summaryNew 2025-08-26 16:18:57 +02:00
Michał Zieliński
7ec831b114 summaryNew 2025-08-26 15:26:23 +02:00
Michał Zieliński
bc6348486d back to begin :) 2025-08-26 12:16:05 +02:00
Michał Zieliński
d9a932acd9 PaymentStates fix 2025-08-26 12:03:57 +02:00
Michał Zieliński
f63dd0c7e2 PaymentStates fix 2025-08-26 11:16:43 +02:00
Michał Zieliński
4f8812117c Merge remote-tracking branch 'origin/main' 2025-08-26 11:15:58 +02:00
Michał Zieliński
7e33e40fcc PaymentStates fix 2025-08-26 10:42:45 +02:00
5 changed files with 1062 additions and 618 deletions

View File

@@ -360,7 +360,7 @@ GROUP BY
ORDER BY i.register_date DESC;
",
'filename' => 'invoices_2024.csv',
],
], // invoices 2024
[
'sql' => "
SELECT
@@ -400,7 +400,101 @@ GROUP BY
ORDER BY i.register_date DESC;
",
'filename' => 'invoices_2025.csv',
],
], // invoices 2025
[
'sql' => "
SELECT
i.document_no,
i.register_date,
oi.document_no AS FV,
oi.register_date AS FV_date,
i.parent_name,
p.code,
p.name,
CASE p.group_ks
WHEN 1 THEN 'Towar handlowy'
WHEN 2 THEN 'Wyrób gotowy'
WHEN 3 THEN 'Usługi'
WHEN '530547ef-2dea-7622-843b-59d745b14c64' THEN 'Materiały'
WHEN '8451dded-710f-51c2-7ed1-60a377eaa7b7' THEN 'Surowce'
ELSE 'Nieznane'
END AS group_ks,
GROUP_CONCAT(c.name ORDER BY cb.position SEPARATOR ' | ') AS category,
ii.quantity_corrected AS quantity_correced,
ii.total_netto_corrected AS total_netto_corrected
FROM ecminvoiceouts AS i
INNER JOIN ecminvoiceoutitems AS ii ON i.id = ii.ecminvoiceout_id
INNER JOIN ecmproducts AS p ON ii.ecmproduct_id = p.id
INNER JOIN ecminvoiceouts AS oi ON oi.id = i.ecminvoiceout_id
LEFT JOIN ecmproductcategories_bean AS cb ON cb.bean_id COLLATE utf8_general_ci = p.id COLLATE utf8_general_ci
AND cb.bean_name = 'EcmProducts'
AND cb.deleted = 0
LEFT JOIN ecmproductcategories AS c ON c.id = cb.ecmproductcategory_id
WHERE i.type = 'correct' AND YEAR(i.register_date) = 2024
GROUP BY
i.document_no,
i.register_date,
oi.document_no,
oi.register_date,
i.parent_name,
p.code,
p.name,
p.group_ks,
ii.quantity,
ii.price_netto,
ii.quantity_corrected,
ii.total_netto_corrected
ORDER BY i.register_date DESC;
",
'filename' => 'correct_invoices_2024.csv',
], // correct invoices 2024
[
'sql' => "
SELECT
i.document_no,
i.register_date,
oi.document_no AS FV,
oi.register_date AS FV_date,
i.parent_name,
p.code,
p.name,
CASE p.group_ks
WHEN 1 THEN 'Towar handlowy'
WHEN 2 THEN 'Wyrób gotowy'
WHEN 3 THEN 'Usługi'
WHEN '530547ef-2dea-7622-843b-59d745b14c64' THEN 'Materiały'
WHEN '8451dded-710f-51c2-7ed1-60a377eaa7b7' THEN 'Surowce'
ELSE 'Nieznane'
END AS group_ks,
GROUP_CONCAT(c.name ORDER BY cb.position SEPARATOR ' | ') AS category,
ii.quantity_corrected AS quantity_correced,
ii.total_netto_corrected AS total_netto_corrected
FROM ecminvoiceouts AS i
INNER JOIN ecminvoiceoutitems AS ii ON i.id = ii.ecminvoiceout_id
INNER JOIN ecmproducts AS p ON ii.ecmproduct_id = p.id
INNER JOIN ecminvoiceouts AS oi ON oi.id = i.ecminvoiceout_id
LEFT JOIN ecmproductcategories_bean AS cb ON cb.bean_id COLLATE utf8_general_ci = p.id COLLATE utf8_general_ci
AND cb.bean_name = 'EcmProducts'
AND cb.deleted = 0
LEFT JOIN ecmproductcategories AS c ON c.id = cb.ecmproductcategory_id
WHERE i.type = 'correct' AND YEAR(i.register_date) = 2025
GROUP BY
i.document_no,
i.register_date,
oi.document_no,
oi.register_date,
i.parent_name,
p.code,
p.name,
p.group_ks,
ii.quantity,
ii.price_netto,
ii.quantity_corrected,
ii.total_netto_corrected
ORDER BY i.register_date DESC;
",
'filename' => 'correct_invoices_2025.csv',
], // correct invoices 2025
[
'sql' => "
SELECT
@@ -440,7 +534,7 @@ GROUP BY
ORDER BY i.register_date DESC;
",
'filename' => 'ecommerce_invoices_2024.csv',
],
], // ecommerce invoices 2024
[
'sql' => "
SELECT
@@ -480,7 +574,7 @@ GROUP BY
ORDER BY i.register_date DESC;
",
'filename' => 'ecommerce_invoices_2025.csv',
],
], // ecommerce invoices 2025
[
'sql' => "
SELECT
@@ -492,7 +586,83 @@ ORDER BY i.register_date DESC;
JOIN ecmstocks AS s ON ss.stock_id = s.id
ORDER BY quantity + 0 DESC;",
'filename' => 'stocks.csv',
],
], // stocks
[
'sql' => "
SELECT
i.document_no,
i.register_date,
p.code,
p.name,
CASE p.group_ks
WHEN 1 THEN 'Towar handlowy'
WHEN 2 THEN 'Wyrób gotowy'
WHEN 3 THEN 'Surowiec'
WHEN 4 THEN 'Usługa'
ELSE 'Nieznane'
END AS group_ks,
GROUP_CONCAT(c.name ORDER BY cb.position SEPARATOR ' | ') AS category,
s.name AS stock,
ii.quantity
FROM ecmstockdocinsideouts AS i
INNER JOIN ecmstockdocinsideoutitems AS ii ON i.id = ii.ecmstockdocinsideout_id
INNER JOIN ecmproducts AS p ON ii.ecmproduct_id = p.id
INNER JOIN ecmstocks AS s ON i.stock_id = s.id
LEFT JOIN ecmproductcategories_bean AS cb ON cb.bean_id COLLATE utf8_general_ci = p.id COLLATE utf8_general_ci
AND cb.bean_name = 'EcmProducts'
AND cb.deleted = 0
LEFT JOIN ecmproductcategories AS c ON c.id = cb.ecmproductcategory_id
WHERE YEAR(i.register_date) = 2025
GROUP BY
i.document_no,
i.register_date,
p.code,
p.name,
p.group_ks,
s.name,
ii.quantity
ORDER BY i.register_date DESC;
",
'filename' => 'rw_2025.csv',
], // rw 2025
[
'sql' => "
SELECT
i.document_no,
i.register_date,
p.code,
p.name,
CASE p.group_ks
WHEN 1 THEN 'Towar handlowy'
WHEN 2 THEN 'Wyrób gotowy'
WHEN 3 THEN 'Surowiec'
WHEN 4 THEN 'Usługa'
ELSE 'Nieznane'
END AS group_ks,
GROUP_CONCAT(c.name ORDER BY cb.position SEPARATOR ' | ') AS category,
s.name AS stock,
ii.quantity
FROM ecmstockdocinsideouts AS i
INNER JOIN ecmstockdocinsideoutitems AS ii ON i.id = ii.ecmstockdocinsideout_id
INNER JOIN ecmproducts AS p ON ii.ecmproduct_id = p.id
INNER JOIN ecmstocks AS s ON i.stock_id = s.id
LEFT JOIN ecmproductcategories_bean AS cb ON cb.bean_id COLLATE utf8_general_ci = p.id COLLATE utf8_general_ci
AND cb.bean_name = 'EcmProducts'
AND cb.deleted = 0
LEFT JOIN ecmproductcategories AS c ON c.id = cb.ecmproductcategory_id
WHERE YEAR(i.register_date) = 2024
GROUP BY
i.document_no,
i.register_date,
p.code,
p.name,
p.group_ks,
s.name,
ii.quantity
ORDER BY i.register_date DESC;
",
'filename' => 'rw_2024.csv',
], // rw 2024
];
$report = [];

File diff suppressed because it is too large Load Diff

View File

@@ -131,6 +131,21 @@ function importSale($file)
$sale->register_date = date("d.m.Y", strtotime($xml->{'Order-Header'}->OrderDate));
$sale->delivery_date = date("d.m.Y", strtotime($xml->{'Order-Header'}->ExpectedDeliveryDate));
$delivery_timestamp = strtotime($xml->{'Order-Header'}->ExpectedDeliveryDate);
$delivery_day_of_week = date('N', $delivery_timestamp); // 1 = Monday, 7 = Sunday
if ($delivery_day_of_week == 1) { // Monday -> send on Friday
$send_timestamp = strtotime('-3 days', $delivery_timestamp);
} else { // send one day before
$send_timestamp = strtotime('-1 day', $delivery_timestamp);
}
$sale->send_date = date("d.m.Y", $send_timestamp);
$sale->document_no = $xml->{'Order-Header'}->OrderNumber;
$sale->document_date = date("d.m.Y", strtotime($xml->{'Order-Header'}->OrderDate));
$sale->document_due_date = date("d.m.Y", strtotime($xml->{'Order-Header'}->ExpectedDeliveryDate));
$sale->document_currency = 'PLN';
$date = new DateTime(date("d.m.Y", strtotime($xml->{'Order-Header'}->OrderDate)));
if ($sale->payment_date_days != "") {
$date->modify("+" . $sale->payment_date_days . " day");

View File

@@ -1,6 +1,6 @@
//START:
$(document).ready(
function() {
function () {
//set sizes
$("#parent_name").attr("size", "70");
$("#parent_name_copy").attr("size", "70");
@@ -8,24 +8,24 @@ $(document).ready(
$("#payment_date_days").css("width", "40");
//$("#payment_method").css("width", "100");
//change parent select button
$("#btn_clr_parent_name").children().attr("src","themes/default/images/id-ff-add.png" );
$("#btn_clr_parent_name").attr("title","Dodaj" );
$("#btn_clr_parent_name").children().attr("src", "themes/default/images/id-ff-add.png");
$("#btn_clr_parent_name").attr("title", "Dodaj");
$("#btn_clr_parent_name").click(createAccount);
// confirm exit
window.onbeforeunload = confirmExit;
// prevent submit by enter press
lockEnter();
// parent info
$("#delivery_date").on('inputchange',function() {
$("#delivery_date").on('inputchange', function () {
calculateDate($("#delivery_date").val());
});
var previousVal;
var pollInterval = setInterval(function() {
var pollInterval = setInterval(function () {
var val = $('#parent_id').val();
if (val !== previousVal) {
if ($('#parent_id').val() == '') return;
$(".loading_panel").css("display", "block");
setTimeout(function() {
setTimeout(function () {
getParentInfo($("#parent_id").val(), 'Accounts');
}, 1000);
}
@@ -33,13 +33,13 @@ $(document).ready(
}, 500);
//newProduct
var previousVal2;
var prodInterval = setInterval(function() {
var prodInterval = setInterval(function () {
var val = $('#newProductId').val();
if (val !== previousVal2) {
if ($('#newProductId').val() == '') return;
$(".loading_panel").css("display", "block");
setTimeout(function() {
AddProduct(items.length-1, val);
setTimeout(function () {
AddProduct(items.length - 1, val);
}, 500);
}
previousVal2 = val;
@@ -50,7 +50,7 @@ $(document).ready(
manageOO();
var count = $('#' + itemsTable + '_T tr').length - 1; // -1 -
// thead row
for (var index = 0; index != count; index++){
for (var index = 0; index != count; index++) {
calculateRow(index);
}
@@ -59,7 +59,7 @@ $(document).ready(
getCategoriesList();
// its vat free change
$("#no_tax").change(function() {
$("#no_tax").change(function () {
// calculate totals
var count = $('#' + itemsTable + '_T tr').length - 1; // -1 -
// thead row
@@ -67,21 +67,21 @@ $(document).ready(
calculateRow(index);
});
// language channge
$("#ecmlanguage").change(function() {
$("#ecmlanguage").change(function () {
changeLanguage();
});
removeFromValidate('EditView', 'shipping_iln');
DrawHeaders();
// stock selector
$("#stock").change(function() {
$("#stock").change(function () {
$("#stock_id").val(($("#stock :selected").val()));
});
if($("#type :selected").val()=='sales_order'){
if ($("#type :selected").val() == 'sales_order') {
removeFromValidate('EditView', 'invoice_date');
}
$("#type").change(function() {
if($("#type :selected").val()=='sales_order'){
$("#type").change(function () {
if ($("#type :selected").val() == 'sales_order') {
removeFromValidate('EditView', 'invoice_date');
} else {
addToValidate('EditView', 'invoice_date', 'id', 'true', '');
@@ -89,15 +89,15 @@ $(document).ready(
});
if (($("#new_number").val() == true)
&& ($("#duplicate").val() != true) && ($("#ecmquote_id").val() =='')) {
&& ($("#duplicate").val() != true) && ($("#ecmquote_id").val() == '')) {
EcmDocumentNumberGenerator_getNumberTemplate('document_no', 'EcmSales');
//sale from subpanel??
var ecp = $("#ecommerce_products").val();
if (ecp && ecp.length > 0) {
loadECommerceProducts(ecp);
} else if ($("#parent_id").val()!='') {
} else if ($("#parent_id").val() != '') {
$(".loading_panel").css("display", "block");
setTimeout(function() {
setTimeout(function () {
getParentInfo($("#parent_id").val(), $(
"#parent_type :selected").val());
}, 1000);
@@ -125,7 +125,7 @@ $(document).ready(
$(".loading_panel").css("display", "none");
}
// handle setItems
setITEMS = function() {
setITEMS = function () {
var formname = 'EditView';
if (check_form_(formname) == true) {
SetTab('ITEMS');
@@ -134,22 +134,22 @@ $(document).ready(
//payment date functions
$('#payment_date_days').css('height', '18');
$('#payment_date_days').val('0');
$('#payment_date_days').change(function() {
$('#payment_date_days').change(function () {
calculatePaymentDate();
});
// parent info
var previousVal4;
var pollInterval4 = setInterval(function() {
var pollInterval4 = setInterval(function () {
var val = $('#payment_date').val();
if (val !== previousVal4) {
setTimeout(function() {
setTimeout(function () {
calculateDateDiff();
}, 1000);
}
previousVal4 = val;
}, 1000);
// wyszukiwanie start
$('#searchProductsInput').keyup(function(e) {
$('#searchProductsInput').keyup(function (e) {
if (e.keyCode == 13) {
// stronicowanie od 1 strony przy zmianie szukanego produktu
$('#searchStart').val(0);
@@ -157,17 +157,18 @@ $(document).ready(
}
});
AddSearchRecord();
calculateDate($("#delivery_date").val());
$(".loading_panel").css("display", "none");
});
// handle save
var check_form_ = check_form;
check_form = function(formname,event) {
check_form = function (formname, event) {
// zapobiega zapisywaniu dokumentu firefox bug, w przypadku nacisniecia enter w polu z autocomplete
if(event.clientY==0 && event.clientX==0){
if (event.clientY == 0 && event.clientX == 0) {
return false;
}
window.onbeforeunload = null;
if (items.length == 0 || items[0].product_id=='') {
if (items.length == 0 || items[0].product_id == '') {
alert("Brak produktów");
return false;
}
@@ -187,7 +188,6 @@ check_form = function(formname,event) {
$("#position_list").val(JSON.stringifyNoSecurity(items));
if (check_form_(formname) === true) {
return true;
} else {
@@ -196,6 +196,7 @@ check_form = function(formname,event) {
return false;
}
};
function confirmExit() {
return "";
}
@@ -203,9 +204,9 @@ function confirmExit() {
function lockEnter() {
// prevent default
$(window).keydown(function(event) {
$(window).keydown(function (event) {
if (event.keyCode == 13 && $(":focus").prop('tagName')!='input') {
if (event.keyCode == 13 && $(":focus").prop('tagName') != 'input') {
event.preventDefault();
return false;

View File

@@ -23,6 +23,13 @@ switch ($_POST['job']) {
function calculateDate($date){
$date = new Datetime($date);
$date->modify('-1 day');
$tmp['date']=$date->format("d.m.Y");
$tmp['date_day']=date('N', strtotime($tmp['date']));
if($tmp['date_day']==7){
$date->modify('-2 day');
} else if($tmp['date_day']==6){
$date->modify('-1 day');
}
$tmp['date']=$date->format("d.m.Y");
echo json_encode($tmp);
return '';