Inital commit

This commit is contained in:
2020-11-19 15:36:28 +01:00
parent 71f32f83d3
commit 66ce4ee218
18077 changed files with 2166122 additions and 35184 deletions

View File

@@ -0,0 +1 @@
ef61115b4310718797e2bf2c2444f48f

View File

@@ -0,0 +1,3 @@
table#combinations_list > tbody > tr.purchase-price > td {
border-top: none;
}

View File

@@ -0,0 +1,3 @@
table#combinations_list > tbody > tr.purchase-price > td {
border-top: none;
}

View File

@@ -0,0 +1,8 @@
/* Hide professional fields if the customer is not a professional one. */
$('#customer_family_code_select').change(function(){
var data_code = $('#customer_family_code_select option:selected').attr('data-code');
$('#customer-family-extra-fields').css(
'display',
(data_code === 'particular' || data_code === 'none') ? 'none' : 'block'
);
});

View File

@@ -0,0 +1,4 @@
$("a.action-btn[href='#product_creation_dialog']").click(function() {
$('#price_without_tax').val(0);
$('#price_with_tax').val(0);
});