Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Menu Path: Control Panel > System Admint > EMP Configuration > Trading 

...

Expand
titleSales


Sales Return Refund
Expand
titleSales Return Option
Option

Default Sales Return Option for Invoices

Default Sales Return Option for Cashsales

  • CREDIT MEMO  - When customer returned a purchased product, you can only choose to offset with a Credit Memo (issue Credit Note). Therefore, no return in cash is involved.
  • CASH REFUND - Refund the customer in cash
  • CREDIT CARD REFUND
  • CHEQUE REFUND
  • POST DTED CHEQUE REFUND
  • COUPON REFUND
  • Other/Contra


Expand
titleApply Five Cent Concept
  • This is for rounding adjustmen
  • Tick Enable to apply this
  • Before set the item code , please configure the item first by add item for rounding.
  • Tips: Can refer the guide here to Add Item (Item type for rounding must be GL Code type)


Expand
titleRounding option when adding item

No rounding  : It will follow default value which is 12 decimal places

0                   : No decimal

2                   : 2 decimal places

3                   : 3 decimal places

4                   : 4 decimal places

6                   : 6 decimal places

12                 : 12 decimal places

If checkbox is not ticked, It will follow default value which is 12 decimal places

Example : -





Expand
titleEnable Item Search Using Regular Expression

Main purpose is to find the correct keyword from a pattern. Suppose SUPPLIERCODE-ITEMCODE-GRNDATE-COSTPRICE is a patter. Using regular expression system will be able to find ITEMCODE from here.

  • Applicable to New Item Search Form
  • Set Regular Expression, A sample is here:
<data>
   <rules>
      <parentElementRE>^*([_A-Za-z0-9\.]{3,10})*-([_A-Za-z0-9\.]{3,20})*-([_A-Za-z0-9]{4})*-([_A-Za-z0-9]{4})$</parentElementRE>
      <separator>-</separator>
      <keywordPosition>1</keywordPosition>
      <child>
        <childName>ItemCode</childName><childElementRE>^*([_A-Za-z0-9\.]{6,10})$</childElementRE>
        <childName>BatchNumber</childName><childElementRE></childElementRE>
        <childName>keyword</childName><childElementRE></childElementRE>
      </child>
   </rules>
</data>


Here mandatory tags are:

  • parentElementRE => Main Regular Expression to identify a pattern. System will continue looking at this Regular Expression if only this pattern matches with input search keyword
  • separator => This is used to separate elements in Regular Expression. Suppose the whole keyword consist itemcode-batchcode-price. Here '-' is a separator
  • keywordPosition => keywordPosition or child, only 1 of these 2 will be used. If keywordPosition is mentioned system will take the keyword from that position only. Suppose above pattern has combination of 4 different elements. If keywordPosition is 2 then system will consider 2nd element as keyword
  • child => child tag has 2 sub tags:
    1. childName: Currently it supports ItemCode or BatchNumber or keyword.
    2. childElementRE: Regular Expression to identify child from long keyword

If ItemCode is mentioned in childName and it has a regular expression in childElementRE then system will match pattern and findout the itemcode from the long keyword

If BatchNumber is mentioned in childName and it has a regular expression in childElementRE then system will match pattern and findout the batchNumber from the long keyword. Later with the combination of ItemCode and BatchNumber the correct item with BatchNumber will be selected

If keyword is mentioned in childName and it has a regular expression in childelementRE then system will match pattern and findout the keyword from the long keyword.

This Regular Expression mainly used to find keyword from a pattern. Now it's applicable to Item Search.


...