Purchase Order Management System using PHP DEMO

แชร์
ฝัง
  • เผยแพร่เมื่อ 8 ก.ย. 2024
  • Download the full source code here:
    www.sourcecode...
    For more source codes, please visit www.sourcecode.... We have so many example projects prepared and uploaded on the website that you may use. Don't forget to subscribe to my channel and hit the notification bell to keep updated on my new uploads.

ความคิดเห็น • 8

  • @smarthomer2677
    @smarthomer2677 2 ปีที่แล้ว

    hello congratulations...great job
    can you help me put some rules in the system?
    1 - a seller cannot see or delete Purchase Order of other sellers, when logging in he can only see and edit his orders, if its status is pending or canceled, if approved the PO can no longer be deleted or edited.
    2 - each user can only view, edit or delete their purchase orders.
    thanks

  • @leejashrestha146
    @leejashrestha146 ปีที่แล้ว

    Why the item list is not showing in dashboard?

  • @gursimrandeepmanesh3161
    @gursimrandeepmanesh3161 2 ปีที่แล้ว

    Can I hire you to customize this for my business need ? Need to add 6-7 tables and form design.

  • @tissueeveryday995
    @tissueeveryday995 ปีที่แล้ว

    delete button in action for purchase order error, how to fix it, sir?

    • @tissueeveryday995
      @tissueeveryday995 ปีที่แล้ว

      i already fix it, sir. hehehe

    • @brunomanhaes714
      @brunomanhaes714 ปีที่แล้ว

      @@tissueeveryday995 How did you fix it? I have the same problem here

    • @alojhelynjoyv.9864
      @alojhelynjoyv.9864 ปีที่แล้ว

      @@tissueeveryday995 can you share how did you fix it sir?

    • @aurorasautomation3361
      @aurorasautomation3361 6 หลายเดือนก่อน

      @@alojhelynjoyv.9864 because in that area the function being called is "delete_rent" but it should be calling "delete_po".
      Eg
      line 91 on /admin/purchase_orders/index.php says
      $(document).ready(function(){
      $('.delete_data').click(function(){
      _conf("Are you sure to delete this rent permanently?","delete_rent",[$(this).attr('data-id')])
      })
      but it should be
      $(document).ready(function(){
      $('.delete_data').click(function(){
      _conf("Are you sure to delete this purchase order permanently?","delete_po",[$(this).attr('data-id')])
      })
      the function delete_po is in
      \purchase_order\classes\Master.php