Search Results for '1'

Home Forums Search Search Results for '1'

Viewing 15 results - 256 through 270 (of 302 total)
  • Author
    Search Results
  • #6661

    Topic: Expenses module

    in forum Accounting
    corivo
    Participant

    Wp erp (v 1.1.18)

    On the expense module, we can only view the entered data, unless logged in with the same account name that entered data in this module.
    It seems to be a privilege problem for users …

    I also emailed this message )

    Cheers!

    #6660

    In reply to: Leave Policies

    ishubham
    Participant

    Hi,

    I solved the problem by editing tab-leave.php in \modules\hrm\views\employee
    After definition of array of policies, I put this code: (on line 4)
    Code is very sloppy I think, but it will get the job done!
    Please let me know if there’s improved way of achieving this.

    if($employee->gender == 'male') {
    $policies = array_filter(
    $policies,
    function($pol) {
    return $pol->gender == 'male' || $pol->gender == -1;
    }
    );
    } else if($employee->gender == 'female') {
    $policies = array_filter(
    $policies,
    function($pol) {
    return $pol->gender == 'female' || $pol->gender == -1;
    }
    );
    } else {
    $policies = array_filter(
    $policies,
    function($pol) {
    return $pol->gender == 'other' || $pol->gender == -1;
    }
    );
    }
    </code

    #6619

    In reply to: Half day leave

    Shawon Chowdhury
    Moderator

    @mattv7,
    Currently, we are working on the core of WP ERP and we are in the last stage of it. So we are assuming that half day leave feature will be available on June,17.

    Thank you 🙂

    #6563

    Topic: Importing Clients Data

    in forum CRM
    beststartup
    Participant

    Hi all,
    I would need help with a new big project I really would like to do with WPERP

    I have a big client of mine… a group of Gym with more than 15K members. They actually use TeamSystem Wellness CRM Management tool but they want to dismiss it. I would like to know

    – Into WPERP CRM it would be possible to import actual Clients data through. CSV or Html?
    – Into WPERP through Woocommerce module… it would be possible to manage Clients Monthly Subscription…

    Awaiting from you urgently (tomorrow morning I am going to have a meeting with this client) Many thanks

    Valerio

    #6454
    Salma ElKadeem
    Participant

    So i have to buy another plugin after paying 149 USD to add 1 field?

    #6293
    erlee
    Participant

    I noted the following “discrepancy” (?) with the WooCommerce Integration extension

    (1) You cannot raise an order on the ACCOUNTING module. Is there a menu item to click to raise an order?

    (2) You can create a new INVENTORY item.. but these items will not be visible in WooCommerce.

    (3) You can create Customers in ACCOUNTING but they will not be available/visible in WooCommerce

    Would it be right to say – the integration between WPERP & WooCommerce is only via the Accounting Sales Invoice only?

    #6222
    erlee
    Participant

    So the WooCommerce\Products is different from the Accounting-Module’s Products…
    but, what i don’t understand is – when you put an order thru the WooCommerce StoreFront – the item’s sales/invoiced sales-value ended up as a ‘Revenue’ in the Accounting Module.

    [1]Which means the WooCommerce\Product is connected to the Accounting Module in some way??

    >>But if you want to track your selling via Accounting module then you have to add products by using Inventory extension. And this process will be handled from the backend.<<

    [2]Is there a storefront-page for the Inventory added from the Accounting Module?

    thank you.

    #6051
    Shawon Chowdhury
    Moderator

    @salma,
    Whenever you will add any field for employee forms that will be automatically added in HR Recruitment form.

    Process:
    “Go to wp-admin → ERP settings → Custom field builder
    Choose “Employee” tab for adding a new field to HR module and Recruitment form”

    See the screenshots given below to be clearer:
    1. Adding extra field in employee tab: http://prntscr.com/eq6q9q
    2. It is automatically added in the HR recruitment form: http://prntscr.com/eq6qzx

    Hope this was helpful. Thanks and let me know whether you have got it fixed or not 🙂

    #5946
    Nico
    Participant

    Hi,

    I have a question about the custom field builder.

    Especially about the checkbox option. It does not give me the options as i build it before. It only gives me the first option. I guess i have to do something when i build it but i am not sure what. I added a picture for more info.

    png example

    Thank you for replying.

    kind regards,

    Nico

    • This topic was modified 8 years, 1 month ago by Nico.
    • This topic was modified 8 years, 1 month ago by Nico.
    spazio
    Participant

    Hi All,

    The server is a LAMP with fast-cgi php. It was the only php choice I was able to install it!

    After it installed, the pluggin kind a work great.
    But I get this error sometime. The page freeze and I need to refresh to get all of it!

    [Thu Mar 23 12:27:54.102145 2017] [fcgid:warn] [pid 9409] (104)Connection reset by peer: [client xx.xx.xx.xx.:51908] mod_fcgid: ap_pass_brigade failed in handle_request_ipc function, referer: http://erp.domain.com/wp-admin/admin.php?page=erp-sales-customers&s=lu

    I have about 1200 clients entered

    Any idea on how to fix this?

    Thans
    Spazio

    #5776
    Ondrej Kollár
    Participant

    The clock shows correct time In the moment of check-in and check-out. But really stored time shows 1 hour less, What is the problem ?.

    #5673
    Donovan
    Participant

    Hi Shaown,

    We’ve confirmed that this problem is caused by the following code segment which is hard-coded in … /erp/modules/crm/views/dashboard.php, lines 34-43:


    if ( $contact_key == 'customer' ) {
    echo sprintf( _n( '%s Customer', '%s Customers', $contact_value['count'], 'erp' ), number_format_i18n( $contact_value['count'] ), 0 );
    } else if ( $contact_key == 'opportunity' ) {
    echo sprintf( _n( '%s Opportunity', '%s Opportunites', $contact_value['count'], 'erp' ), number_format_i18n( $contact_value['count'] ), 0 );
    } elseif( $contact_key == 'subscriber' ) {
    echo sprintf( _n( '%s Subscriber', '%s Subscribers', $contact_value['count'], 'erp' ), number_format_i18n( $contact_value['count'] ), 0 );
    } else {
    echo sprintf( _n( '%s Lead', '%s Leads', $contact_value['count'], 'erp' ), number_format_i18n( $contact_value['count'] ), 0 );
    }

    `

    We’ve also posted this to the Wiki: https://github.com/wp-erp/wp-erp/wiki/CRM-Filters#dashboard-problem-with-custom-life-stag

    Ideally, life stages should be a CRM option that can be set via the admin dashboard vs code overrides. Never-the-less, to make the “erp_crm_life_stages” filter useful there needs to be a way to override the CRM Dashboard view to display the custom life stages instead of the hard-coded life stages.

    Please advise if there is a filter or other recommended way to accomplish this.

    Thanks Shaown!

    #5611
    corivo
    Participant

    The use of schedules for contacts is currently limited:

    Is there a development in the near future of the following functions;
    1. Edit a calendar item by clicking on it. At the present time we have only the possibility of visualizing it, we can not modify it directly. You have to go through the contact to make the schedule change. The same criticism applies to the dashboard when we click on detail of an upcoming schedules
    In daily or weekday viewing, all schedules are recorded at the top of the page in the “all day” section , despite the recorded hours of the event.
    2. In the day or week view, it would be greatly appreciated if the hours divided into half an hour or a quarter of an hour appear in the left column and the hours allotted to an appointment draw a block, corresponding to the duration of the schedule and that it can be edited with the function to click drag of the mouse.

    You sell add-ons for your “wp erp” plugin (which I bought), however there are still important basic functions to complete and debug before adding paid plugin features…

    #5233

    In reply to: Countries

    Shawon Chowdhury
    Moderator

    @leo,
    You can easily add the necessary states according to your needs.
    Here is the file location: “wp-content\plugins\erp\i18n\states”
    See the BD.php and you will get the idea on how to add the states.

    Thank you 🙂

    #5196
    Holli
    Participant

    I just installed the plugin, made some test users and contacts and found a problem.
    When a CRM Agent or CRM Manager goes into the detail view of a contact, he is allowed to make a WP user of this contact. The biggest problem is, that he can choose from all WP roles and make him an administrator.

    Three buttons are shown on the top of the detail view:
    1) Back to contact list
    2) Edit this contact
    3) Make WP User

    Version 1.1.13

Viewing 15 results - 256 through 270 (of 302 total)

Contact Us

Reach out to us for any inquiry

You must enter full name
You must enter email
You must enter message

We received your query

We will reply to you very soon :)