Add image file on Employee Screen and add it into

2019-07-30 14:48发布

On Employee Screen (ScreenId=EP203000) I added the image file as signature. After Add it I want to display that signature of employees on Purchase Order form as owner and approval. Picture below is what I want but don't know how to get these pictures.

enter image description here

标签: acumatica
1条回答
看我几分像从前
2楼-- · 2019-07-30 15:26

I've already done it with the solution below:

  1. Edit report POOrder (po641000.rpx)
  2. Add more relationships

    • POOrder Join EPApproval (NoteID - RefNoteID)
    • EPApproval Join EPEmployee (ApprovalByID - UserID)
    • EPEmployee Join NoteDoc (NoteID - NoteID)
    • NoteDoc Join Note (NoteID - NoteID) : ApprovalSign
    • NoteDoc Join UploadFile (FileID - FileID)
    • POOrder Join EPEmployee (EmployeeID - BAccountID) : PrepareSign
  3. Add Picture Box

    1. Approval Signature:

      Mime Type: image/png

      Source : Database

      Value : =[ApprovalSign.NoteText]

    2. Prepare Signature:

      Mime Type: image/png

      Source : Database

      Value : =[PrepareSign.NoteText]

    3. Result:

enter image description here

查看更多
登录 后发表回答