mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-05-24 16:28:40 -04:00
relayout of sales/register right panel to follow a more logical flow (#116)
This commit is contained in:
@@ -679,8 +679,7 @@ class Sales extends Secure_area
|
||||
}
|
||||
|
||||
/* Changed the conditional to account for floating point rounding */
|
||||
if ( ($this->sale_lib->get_mode() == 'sale') &&
|
||||
( ( to_currency_no_money( $this->sale_lib->get_total() ) - $total_payments ) > 1e-6 ) )
|
||||
if ( ($this->sale_lib->get_mode() == 'sale') && ( ( to_currency_no_money( $this->sale_lib->get_total() ) - $total_payments ) > 1e-6 ) )
|
||||
{
|
||||
return false;
|
||||
}
|
||||
@@ -710,11 +709,11 @@ class Sales extends Secure_area
|
||||
$data['amount_due'] = $this->sale_lib->get_amount_due();
|
||||
$data['payments'] = $this->sale_lib->get_payments();
|
||||
$data['payment_options'] = array(
|
||||
$this->lang->line('sales_cash') => $this->lang->line('sales_cash'),
|
||||
$this->lang->line('sales_check') => $this->lang->line('sales_check'),
|
||||
$this->lang->line('sales_giftcard') => $this->lang->line('sales_giftcard'),
|
||||
$this->lang->line('sales_debit') => $this->lang->line('sales_debit'),
|
||||
$this->lang->line('sales_credit') => $this->lang->line('sales_credit')
|
||||
$this->lang->line('sales_credit') => $this->lang->line('sales_credit'),
|
||||
$this->lang->line('sales_cash') => $this->lang->line('sales_cash'),
|
||||
$this->lang->line('sales_giftcard') => $this->lang->line('sales_giftcard'),
|
||||
$this->lang->line('sales_check') => $this->lang->line('sales_check')
|
||||
);
|
||||
|
||||
$customer_id = $this->sale_lib->get_customer();
|
||||
@@ -759,9 +758,10 @@ class Sales extends Secure_area
|
||||
$this->load->view("sales/register", $data);
|
||||
}
|
||||
|
||||
function cancel_sale()
|
||||
function cancel()
|
||||
{
|
||||
$this->sale_lib->clear_all();
|
||||
|
||||
$this->_reload();
|
||||
}
|
||||
|
||||
|
||||
@@ -4,14 +4,14 @@ $lang["sales_add_payment"] = "Add Payment";
|
||||
$lang["sales_amount_due"] = "Amount Due";
|
||||
$lang["sales_amount_tendered"] = "Amount Tendered";
|
||||
$lang["sales_basic_information"] = "Sale information";
|
||||
$lang["sales_cancel_sale"] = "Cancel Sale";
|
||||
$lang["sales_cancel_sale"] = "Cancel";
|
||||
$lang["sales_cash"] = "Cash";
|
||||
$lang["sales_change_due"] = "Change Due";
|
||||
$lang["sales_check"] = "Check";
|
||||
$lang["sales_check_balance"] = "Check remainder";
|
||||
$lang["sales_comment"] = "Comment";
|
||||
$lang["sales_comments"] = "Comments";
|
||||
$lang["sales_complete_sale"] = "Complete Sale";
|
||||
$lang["sales_complete_sale"] = "Complete";
|
||||
$lang["sales_confirm_cancel_sale"] = "Are you sure you want to clear this sale? All items will cleared.";
|
||||
$lang["sales_confirm_delete"] = "Are you sure you want to delete the selected sales?";
|
||||
$lang["sales_confirm_finish_sale"] = "Are you sure you want to submit this sale? This cannot be undone.";
|
||||
@@ -102,9 +102,9 @@ $lang["sales_sub_total"] = "Sub Total";
|
||||
$lang["sales_successfully_deleted"] = "You have successfully deleted";
|
||||
$lang["sales_successfully_suspended_sale"] = "Your sale has been successfully suspended";
|
||||
$lang["sales_successfully_updated"] = "Sale successfully updated";
|
||||
$lang["sales_suspend_sale"] = "Suspend Sale";
|
||||
$lang["sales_suspend_sale"] = "Suspend";
|
||||
$lang["sales_suspended_sale_id"] = "ID";
|
||||
$lang["sales_suspended_sales"] = "Suspended Sales";
|
||||
$lang["sales_suspended_sales"] = "Suspended";
|
||||
$lang["sales_tax"] = "Tax";
|
||||
$lang["sales_tax_percent"] = "Tax %";
|
||||
$lang["sales_total"] = "Total";
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<fieldset id="sale_basic_info">
|
||||
<?php echo form_open("sales/save/".$sale_info['sale_id'], array('id'=>'sales_edit_form', 'class'=>'form-horizontal')); ?>
|
||||
<div class="form-group form-group-sm">
|
||||
<?php echo form_label($this->lang->line('sales_receipt_number'), 'customer', array('class'=>'control-label col-xs-3')); ?>
|
||||
<?php echo form_label($this->lang->line('sales_receipt_number'), 'receipt_number', array('class'=>'control-label col-xs-3')); ?>
|
||||
<div class='col-xs-6'>
|
||||
<?php echo anchor('sales/receipt/'.$sale_info['sale_id'], $this->lang->line('sales_receipt_number') .$sale_info['sale_id'], array('target' => '_blank'));?>
|
||||
</div>
|
||||
|
||||
@@ -20,6 +20,9 @@ if (isset($success))
|
||||
?>
|
||||
|
||||
<div id="register_wrapper">
|
||||
|
||||
<!-- Top register controls -->
|
||||
|
||||
<?php echo form_open("sales/change_mode", array('id'=>'mode_form', 'class'=>'form-horizontal panel panel-default')); ?>
|
||||
<div class="panel-body form-group">
|
||||
<ul>
|
||||
@@ -100,7 +103,7 @@ if (isset($success))
|
||||
</thead>
|
||||
<tbody id="cart_contents">
|
||||
<?php
|
||||
if(count($cart)==0)
|
||||
if(count($cart) == 0)
|
||||
{
|
||||
?>
|
||||
<tr>
|
||||
@@ -232,7 +235,7 @@ if (isset($success))
|
||||
if(isset($customer))
|
||||
{
|
||||
?>
|
||||
<table id="customer_details">
|
||||
<table id="customer_info">
|
||||
<tr>
|
||||
<th style='width: 55%;'><?php echo $this->lang->line("sales_customer"); ?></th>
|
||||
<th style="width: 45%; text-align: right;"><?php echo $customer; ?></th>
|
||||
@@ -271,6 +274,7 @@ if (isset($success))
|
||||
}
|
||||
?>
|
||||
</table>
|
||||
|
||||
<?php echo anchor("sales/remove_customer", $this->lang->line('common_remove').' '.$this->lang->line('customers_customer'),
|
||||
array('class'=>'btn btn-danger btn-xs', 'id'=>'remove_customer_button', 'title'=>$this->lang->line('common_remove').' '.$this->lang->line('customers_customer'))); ?>
|
||||
<?php
|
||||
@@ -291,7 +295,7 @@ if (isset($success))
|
||||
}
|
||||
?>
|
||||
|
||||
<table id="sale_details">
|
||||
<table id="sale_totals">
|
||||
<tr>
|
||||
<th style="width: 55%;"><?php echo $this->lang->line('sales_sub_total'); ?></th>
|
||||
<th style="width: 45%; text-align: right;"><?php echo to_currency($this->config->item('tax_included') ? $tax_exclusive_subtotal : $subtotal); ?></th>
|
||||
@@ -320,36 +324,7 @@ if (isset($success))
|
||||
if(count($cart) > 0)
|
||||
{
|
||||
?>
|
||||
<?php echo form_open("sales/cancel_sale", array('id'=>'cancel_sale_form', 'class'=>'form-horizontal')); ?>
|
||||
<div class="form-group" id="cancel_sale">
|
||||
<div class='btn btn-sm btn-default pull-left' id='suspend_sale_button'><?php echo $this->lang->line('sales_suspend_sale'); ?></div>
|
||||
|
||||
<div class='btn btn-sm btn-danger pull-right' id='cancel_sale_button'><?php echo $this->lang->line('sales_cancel_sale'); ?></div>
|
||||
</div>
|
||||
<?php echo form_close(); ?>
|
||||
|
||||
<?php
|
||||
// Only show this part if there is at least one payment entered.
|
||||
if(count($payments) > 0)
|
||||
{
|
||||
?>
|
||||
<?php echo form_open("sales/complete", array('id'=>'finish_sale_form', 'class'=>'form-horizontal')); ?>
|
||||
<div class="form-group" id="finish_sale">
|
||||
<label id="comment_label" for="comment"><?php echo $this->lang->line('common_comments'); ?></label>
|
||||
<?php echo form_textarea(array('name'=>'comment', 'id'=>'comment', 'class'=>'form-control input-sm', 'value'=>$comment, 'rows'=>'2')); ?>
|
||||
<?php
|
||||
if ($payments_cover_total)
|
||||
{
|
||||
echo "<div class='btn btn-sm btn-success pull-right' id='finish_sale_button' tabindex='3'><span>".$this->lang->line('sales_complete_sale')."</span></div>";
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
<?php echo form_close(); ?>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
|
||||
<table width="100%">
|
||||
<table id="payment_totals">
|
||||
<tr>
|
||||
<th style="width: 55%;"><?php echo $this->lang->line('sales_payments_total');?></th>
|
||||
<th style="width: 45%; text-align: right;"><?php echo to_currency($payments_total); ?></th>
|
||||
@@ -360,74 +335,10 @@ if (isset($success))
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<div id="payment_details" class="panel-footer">
|
||||
<div id="payment_details">
|
||||
<div>
|
||||
<?php echo form_open("sales/add_payment", array('id'=>'add_payment_form', 'class'=>'form-horizontal')); ?>
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<?php
|
||||
if(!empty($customer_email))
|
||||
{
|
||||
?>
|
||||
<td><?php echo $this->lang->line('sales_email_receipt'); ?></td>
|
||||
<td>
|
||||
<?php
|
||||
if($email_receipt)
|
||||
{
|
||||
echo form_checkbox(array('name'=>'email_receipt', 'id'=>'email_receipt', 'class'=>'checkbox', 'checked'=>'checked'));
|
||||
}
|
||||
else
|
||||
{
|
||||
echo form_checkbox(array('name'=>'email_receipt', 'id'=>'email_receipt', 'class'=>'checkbox'));
|
||||
}
|
||||
?>
|
||||
</td>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><?php echo $this->lang->line('sales_print_after_sale'); ?></td>
|
||||
<td>
|
||||
<?php
|
||||
if ($print_after_sale)
|
||||
{
|
||||
echo form_checkbox(array('name'=>'sales_print_after_sale', 'id'=>'sales_print_after_sale', 'class'=>'checkbox', 'checked'=>'checked'));
|
||||
}
|
||||
else
|
||||
{
|
||||
echo form_checkbox(array('name'=>'sales_print_after_sale', 'id'=>'sales_print_after_sale', 'class'=>'checkbox'));
|
||||
}
|
||||
?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
if ($mode == "sale")
|
||||
{
|
||||
?>
|
||||
<tr>
|
||||
<td><?php echo $this->lang->line('sales_invoice_enable'); ?></td>
|
||||
<td>
|
||||
<?php if ($invoice_number_enabled)
|
||||
{
|
||||
echo form_checkbox(array('name'=>'sales_invoice_enable', 'id'=>'sales_invoice_enable', 'class'=>'checkbox', 'checked'=>'checked'));
|
||||
}
|
||||
else
|
||||
{
|
||||
echo form_checkbox(array('name'=>'sales_invoice_enable', 'id'=>'sales_invoice_enable', 'class'=>'checkbox'));
|
||||
}
|
||||
?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><?php echo $this->lang->line('sales_invoice_number');?></td>
|
||||
<td>
|
||||
<?php echo form_input(array('name'=>'sales_invoice_number', 'id'=>'sales_invoice_number', 'class'=>'form-control input-sm', 'value'=>$invoice_number, 'size'=>10));?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
<tr>
|
||||
<td><?php echo $this->lang->line('sales_payment');?></td>
|
||||
<td>
|
||||
@@ -442,7 +353,20 @@ if (isset($success))
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<div class='btn btn-sm btn-success pull-right' id='add_payment_button'><?php echo $this->lang->line('sales_add_payment'); ?></div>
|
||||
<?php
|
||||
if( $payments_cover_total )
|
||||
{
|
||||
?>
|
||||
<div class='btn btn-sm btn-success pull-right disabled' id='add_payment_button'><?php echo $this->lang->line('sales_add_payment'); ?></div>
|
||||
<?php
|
||||
}
|
||||
else
|
||||
{
|
||||
?>
|
||||
<div class='btn btn-sm btn-success pull-right' id='add_payment_button'><?php echo $this->lang->line('sales_add_payment'); ?></div>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
<?php echo form_close(); ?>
|
||||
</div>
|
||||
|
||||
@@ -465,13 +389,11 @@ if (isset($success))
|
||||
foreach($payments as $payment_id=>$payment)
|
||||
{
|
||||
?>
|
||||
<?php echo form_open("sales/edit_payment/$payment_id", array('id'=>'edit_payment_form'.$payment_id)); ?>
|
||||
<tr>
|
||||
<td><?php echo anchor( "sales/delete_payment/$payment_id", '<span class="glyphicon glyphicon-trash"></span>' ); ?></td>
|
||||
<td><?php echo $payment['payment_type']; ?></td>
|
||||
<td style="text-align: right;"><?php echo to_currency( $payment['payment_amount'] ); ?></td>
|
||||
</tr>
|
||||
<?php echo form_close(); ?>
|
||||
<tr>
|
||||
<td><?php echo anchor( "sales/delete_payment/$payment_id", '<span class="glyphicon glyphicon-trash"></span>' ); ?></td>
|
||||
<td><?php echo $payment['payment_type']; ?></td>
|
||||
<td style="text-align: right;"><?php echo to_currency( $payment['payment_amount'] ); ?></td>
|
||||
</tr>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
@@ -481,6 +403,127 @@ if (isset($success))
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
|
||||
<?php echo form_open("sales/cancel", array('id'=>'buttons_form', 'class'=>'form-horizontal')); ?>
|
||||
<div class="form-group" id="buttons_sale">
|
||||
<table width="100%">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="width: 33%; text-align: left;">
|
||||
<div class='btn btn-sm btn-default' id='suspend_sale_button'><?php echo $this->lang->line('sales_suspend_sale'); ?></div>
|
||||
</td>
|
||||
<td style="width: 33%; text-align: center;">
|
||||
<div class='btn btn-sm btn-danger' id='cancel_sale_button'><?php echo $this->lang->line('sales_cancel_sale'); ?></div>
|
||||
</td>
|
||||
<td style="width: 33%; text-align: right;">
|
||||
<?php
|
||||
if (count($payments) > 0 && $payments_cover_total)
|
||||
{
|
||||
?>
|
||||
<div class='btn btn-sm btn-success' id='finish_sale_button' tabindex='3'><?php echo $this->lang->line('sales_complete_sale'); ?></div>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
if (count($payments) > 0)
|
||||
{
|
||||
?>
|
||||
<div class="form-group form-group-sm">
|
||||
<?php echo form_label($this->lang->line('common_comments'), 'comments', array('class'=>'control-label', 'id'=>'comment_label', 'for'=>'comment')); ?>
|
||||
<?php echo form_textarea(array('name'=>'comment', 'id'=>'comment', 'class'=>'form-control input-sm', 'value'=>$comment, 'rows'=>'2')); ?>
|
||||
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td style="width: 30%; text-align: left;">
|
||||
<?php echo form_label($this->lang->line('sales_print_after_sale'), 'print_after_sale', array('class'=>'control-label')); ?>
|
||||
</td>
|
||||
<td style="width: 20%; text-align: center; display: inline-block;">
|
||||
<?php
|
||||
if($print_after_sale)
|
||||
{
|
||||
echo form_checkbox(array('name'=>'sales_print_after_sale', 'id'=>'sales_print_after_sale', 'class'=>'checkbox', 'checked'=>'checked'));
|
||||
}
|
||||
else
|
||||
{
|
||||
echo form_checkbox(array('name'=>'sales_print_after_sale', 'id'=>'sales_print_after_sale', 'class'=>'checkbox'));
|
||||
}
|
||||
?>
|
||||
</td>
|
||||
|
||||
<?php
|
||||
if(!empty($customer_email))
|
||||
{
|
||||
?>
|
||||
<td style="width: 30%; text-align: left;">
|
||||
<?php echo form_label($this->lang->line('sales_email_receipt'), 'email_receipt', array('class'=>'control-label')); ?>
|
||||
</td>
|
||||
<td style="width: 20%; text-align: center; display: inline-block;">
|
||||
<?php
|
||||
if($email_receipt)
|
||||
{
|
||||
echo form_checkbox(array('name'=>'email_receipt', 'id'=>'email_receipt', 'class'=>'checkbox', 'checked'=>'checked'));
|
||||
}
|
||||
else
|
||||
{
|
||||
echo form_checkbox(array('name'=>'email_receipt', 'id'=>'email_receipt', 'class'=>'checkbox'));
|
||||
}
|
||||
?>
|
||||
</td>
|
||||
<?php
|
||||
}
|
||||
else
|
||||
{
|
||||
?>
|
||||
<td style="width: 30%; text-align: left;"></td>
|
||||
<td style="width: 20%; text-align: center; display: inline-block;"></td>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
</tr>
|
||||
|
||||
<?php
|
||||
if ($mode == "sale")
|
||||
{
|
||||
?>
|
||||
<tr>
|
||||
<td style="width: 30%; text-align: left;">
|
||||
<?php echo form_label($this->lang->line('sales_invoice_enable'), 'invoice_enable', array('class'=>'control-label')); ?>
|
||||
</td>
|
||||
<td style="width: 20%; text-align: center; display: inline-block;">
|
||||
<?php
|
||||
if($invoice_number_enabled)
|
||||
{
|
||||
echo form_checkbox(array('name'=>'sales_invoice_enable', 'id'=>'sales_invoice_enable', 'class'=>'checkbox', 'checked'=>'checked'));
|
||||
}
|
||||
else
|
||||
{
|
||||
echo form_checkbox(array('name'=>'sales_invoice_enable', 'id'=>'sales_invoice_enable', 'class'=>'checkbox'));
|
||||
}
|
||||
?>
|
||||
</td>
|
||||
|
||||
<td style="width: 30%; text-align: left;">
|
||||
<?php echo form_label($this->lang->line('sales_invoice_number'), 'invoice_number', array('class'=>'control-label')); ?>
|
||||
</td>
|
||||
<td style="width: 20%; text-align: right;">
|
||||
<?php echo form_input(array('name'=>'sales_invoice_number', 'id'=>'sales_invoice_number', 'class'=>'form-control input-sm', 'value'=>$invoice_number, 'size'=>5));?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
</table>
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
<?php echo form_close(); ?>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
@@ -574,26 +617,28 @@ $(document).ready(function()
|
||||
|
||||
$("#finish_sale_button").click(function()
|
||||
{
|
||||
if (confirm('<?php echo $this->lang->line("sales_confirm_finish_sale"); ?>'))
|
||||
//if (confirm('<?php echo $this->lang->line("sales_confirm_finish_sale"); ?>'))
|
||||
{
|
||||
$('#finish_sale_form').submit();
|
||||
$('#buttons_form').attr('action', '<?php echo site_url("sales/complete"); ?>');
|
||||
$('#buttons_form').submit();
|
||||
}
|
||||
});
|
||||
|
||||
$("#suspend_sale_button").click(function()
|
||||
{
|
||||
if (confirm('<?php echo $this->lang->line("sales_confirm_suspend_sale"); ?>'))
|
||||
//if (confirm('<?php echo $this->lang->line("sales_confirm_suspend_sale"); ?>'))
|
||||
{
|
||||
$('#cancel_sale_form').attr('action', '<?php echo site_url("sales/suspend"); ?>');
|
||||
$('#cancel_sale_form').submit();
|
||||
$('#buttons_form').attr('action', '<?php echo site_url("sales/suspend"); ?>');
|
||||
$('#buttons_form').submit();
|
||||
}
|
||||
});
|
||||
|
||||
$("#cancel_sale_button").click(function()
|
||||
{
|
||||
if (confirm('<?php echo $this->lang->line("sales_confirm_cancel_sale"); ?>'))
|
||||
//if (confirm('<?php echo $this->lang->line("sales_confirm_cancel_sale"); ?>'))
|
||||
{
|
||||
$('#cancel_sale_form').submit();
|
||||
$('#buttons_form').attr('action', '<?php echo site_url("sales/cancel"); ?>');
|
||||
$('#buttons_form').submit();
|
||||
}
|
||||
});
|
||||
|
||||
@@ -602,7 +647,7 @@ $(document).ready(function()
|
||||
$('#add_payment_form').submit();
|
||||
});
|
||||
|
||||
$("#payment_types").change(check_payment_type_gifcard).ready(check_payment_type_gifcard)
|
||||
$("#payment_types").change(check_payment_type_giftcard).ready(check_payment_type_giftcard)
|
||||
|
||||
$("#amount_tendered").keyup(function(event){
|
||||
if(event.which == 13) {
|
||||
@@ -647,7 +692,7 @@ function post_person_form_submit(response)
|
||||
}
|
||||
}
|
||||
|
||||
function check_payment_type_gifcard()
|
||||
function check_payment_type_giftcard()
|
||||
{
|
||||
if ($("#payment_types").val() == "<?php echo $this->lang->line('sales_giftcard'); ?>")
|
||||
{
|
||||
|
||||
@@ -99,21 +99,16 @@
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
|
||||
#customer_details, #sale_details, #payment_details
|
||||
#customer_info, #sale_totals, #payment_totals, #payment_details, #buttons_sale, #suspended_sales_table
|
||||
{
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#sale_details
|
||||
#sale_totals, #payment_totals
|
||||
{
|
||||
border-top: 2px solid #000;
|
||||
}
|
||||
|
||||
#select_customer, #finish_sale
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
#payment_details
|
||||
{
|
||||
float: left;
|
||||
@@ -125,18 +120,6 @@
|
||||
clear: both;
|
||||
}
|
||||
|
||||
#cancel_sale
|
||||
{
|
||||
float: left;
|
||||
width: 100%;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
#suspended_sales_table
|
||||
{
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#credit_card_form fieldset
|
||||
{
|
||||
overflow: auto;
|
||||
|
||||
2
dist/opensourcepos.min.css
vendored
2
dist/opensourcepos.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -3,14 +3,14 @@ sales_add_payment,Zahlung,Betaal,Agregar Pago,Add Payment,Ajouter Paiement,新
|
||||
sales_amount_due,fälliger Betrag,Te betalen,Debe,Amount Due,Somme Due,Amount Due,Amount Due,ยอดต้องชำระ,Kalan Ödeme,Kembalian Uang
|
||||
sales_amount_tendered,Erhalten,Ontvangen bedrag,Cantidad Recibida,Amount Tendered,Somme,已收帳款,предложенная сумма,ชำระเข้ามา,Ödenen Tutar,Nilai Pembayaran
|
||||
sales_basic_information,Quittung,Ticket informatie,información sobre las entradas,Sale information,Information de Vente,Sale information,информацию о билетах,,Satış bilgisi,Sale information
|
||||
sales_cancel_sale,Annullieren,Annuleer,Cancelar Venta,Cancel Sale,Annuler la Vente,取消銷售,Отменить продажу,ยกเลิกการขาย,İptal Et,Batal Jual
|
||||
sales_cancel_sale,Annullieren,Annuleer,Cancelar Venta,Cancel,Annuler la Vente,取消銷售,Отменить продажу,ยกเลิกการขาย,İptal Et,Batal Jual
|
||||
sales_cash,Bar,Contant,Efectivo,Cash,Cash,現金,наличные деньги,เงินสด,Nakit,Tunai
|
||||
sales_change_due,Wechselgeld,Wisselgeld terug,Cambio,Change Due,Reste,更改到期日,сдача должное,เงินทอน,Para Üstü,Kembalian Uang
|
||||
sales_check,Scheck,Waardebon,Cheque,Check,Cheque,支票,банковский чек,เช็ค,Çek,Cek
|
||||
sales_check_balance,Scheck-Differenz,Waardebon terug,Balance de Cheque,Check remainder,Check remainder,Check remainder,Check remainder,Check remainder,Check remainder,Check remainder
|
||||
sales_comment,Bemerkung,Commentaar,Comentario,Comment,Commentaire,評論,комментировать,หมายเหตุ,Yorum,Catatan
|
||||
sales_comments,Bemerkungen,Commentaar,Comentarios,Comments,Commentaires,評論,Комментарии,หมายเหตุ,Yorumlar,Keterangan
|
||||
sales_complete_sale,Abschliessen,Bevestig,Completar Venta,Complete Sale,Finaliser la Vente,完成銷售,Завершить продажу,จบการขาย,Satışı Tamamla,Entri penjualan
|
||||
sales_complete_sale,Abschliessen,Bevestig,Completar Venta,Complete,Finaliser la Vente,完成銷售,Завершить продажу,จบการขาย,Satışı Tamamla,Entri penjualan
|
||||
sales_confirm_cancel_sale,Wollen Sie diesen Verkauf abschliessen? Alle Artikeleinträge werden entfernt,Bent u zeker dat u deze aankoop wil verwijderen?,¿Seguro(a) de querer limpiar esta venta? Todos los artículos serán limpiados.,Are you sure you want to clear this sale? All items will cleared.,Etes vous sûr(e) de vouloir annuler cette vente?,你確定要清除此筆銷售單?本單內的所有產品將被清除。,"Вы уверены, что хотите удалить эту продажу? Все детали будут очищены.",แน่ใจหรือไม่ที่จะล้างรายการขาย? สินค้าทุกอย่างจะถูกลบจากบอร์ด.,Bu satışı iptal etmek istiyor musunuz? Tüm ürünler çıkarılacak.,Anda yakin ingin membatalkan transaksi penjualan ini? Semua item akan dihapus.
|
||||
sales_confirm_delete,Wollen Sie die gewählten Aufträge löschen?,Bent u zeker dat u de geselecteerde aankopen wil verwijderen?,¿Seguro(a) de querer borrar las ventas seleccionadas?,Are you sure you want to delete the selected sales?,Are you sure you want to delete the selected sales?,Are you sure you want to delete the selected sales?,Are you sure you want to delete the selected sales?,Are you sure you want to delete the selected sales?,Are you sure you want to delete the selected sales?,Are you sure you want to delete the selected sales?
|
||||
sales_confirm_finish_sale,Wollen Sie diesen Auftrag verarbeiten? Rückgängig unmöglich,Bent u zeker dat u deze aankoop wil invoeren? Dit kan niet ongedaan gemaakt worden.,¿Seguro(a) de querer procesar esta venta? Ésto no se puede deshacer.,Are you sure you want to submit this sale? This cannot be undone.,Etes vous sûr(e) de vouloir enregistrer cette vente? Cette opération est irréversible.,你確定要提交銷售單?此動作不能撤消。,"Вы уверены, что хотите заверщить эту продажу? Не может быть отменено.",แน่ใจหรือไม่ที่จะสำเร็จการขาย? ไม่สามารถย้อนกลับได้.,Satışı tamamlamak istediğinize emin misiniz? Tİşlem geri alınamaz.,Anda yakin ingin melakukan transaksi penjualan ini? Proses tidak dapat dibatalkan.
|
||||
@@ -101,9 +101,9 @@ sales_sub_total,Zwischentotal,Subtotaal,Subtotal,Sub Total,Sous-Total,小計,п
|
||||
sales_successfully_deleted,Löschung erfolgreich,Uw aankoop werd verwijded,La Venta ha sido borrada satisfactoriamente,You have successfully deleted,Vente supprimée,銷售資料成功刪除,продажи успешно удален,ลบการขายสมยูรณ์,Satış silindi,Transaksi Penjualan berhasil dihapus
|
||||
sales_successfully_suspended_sale,Auftrag wurde erfolgreich pendent gehalten,Uw aankoop werd met sucess bewaard,La venta ha sido suspendida satisfactoriamente,Your sale has been successfully suspended,Vente suspendue,本銷售資料已經成功暫停,Ваши продажи успешно приостановлена,การขายของคุณถูกระงับเรียบร้อย,Satış askıya alındı,Penjualan anda telah berhasil ditangguhkan
|
||||
sales_successfully_updated,Änderung erfolgreich,Wijzigingen bewaard voor ticket,La venta ha sido actualizada satisfactoriamente,Sale successfully updated,Vente éditée,銷售資料成功更新,Продажа успешно обновлен,อัพเดทการขายสมบูรณ์,Satış düzenlendi,Penjualan berhasil diperbarui
|
||||
sales_suspend_sale,->Pendent,Bewaar aankoop,Suspender Venta,Suspend Sale,Suspendre la Vente,暫停銷售,Приостановить продажи,พักรายการ,Satışı Askıya Al,Tangguhkan
|
||||
sales_suspend_sale,->Pendent,Bewaar aankoop,Suspender Venta,Suspend,Suspendre la Vente,暫停銷售,Приостановить продажи,พักรายการ,Satışı Askıya Al,Tangguhkan
|
||||
sales_suspended_sale_id,ID,ID,ID de Venta Suspendida,ID,ID,暫停銷售編號,приостановила продажи ID,รหัสการขายที่ถูกพัก,No,ID Penjualan ditangguhkan
|
||||
sales_suspended_sales,Pendente Aufträge,Bewaarde Aankopen,Ventas Suspendidas,Suspended Sales,Ventes Suspendues,已暫停銷售,приостановила продажи,การขายที่พักไว้,Askıdaki Satışlar,Penangguhan
|
||||
sales_suspended_sales,Pendente Aufträge,Bewaarde Aankopen,Ventas Suspendidas,Suspended,Ventes Suspendues,已暫停銷售,приостановила продажи,การขายที่พักไว้,Askıdaki Satışlar,Penangguhan
|
||||
sales_tax,MWSt,VAT,Impuesto,Tax,Taxe,稅額,налог,ภาษี,Vergi,Pajak
|
||||
sales_tax_percent,MWSt %,VAT %,% de Impuesto,Tax %,% Taxe,稅率 %,Налоговые %,ภาษี %,Vergi %,Pajak %
|
||||
sales_total,Total,Totaal,Total,Total,Total,總計,сумма,ยอดรวม,Toplam,Total
|
||||
|
||||
|
Reference in New Issue
Block a user