最近一直在做iexpense support,順便去整理一下標準的業務
--credit card transaction (信用卡事務處理表)
select * from ap_credit_card_trxns_all;
(一般通過客製化程式將銀行業務匯入此表)
--iexpense report常用表
select * from ap_expense_report_headers_all;
select * from ap_expense_report_lines_all;
select * from ap_exp_report_dists_all;--submit之後會產生分配表
--expense item type and report template
select * from ap_expense_report_params_all;(item類別)
select * from ap_expense_reports_all;(模板)
--import to invoice(export invocie to ap)
select * from ap_invoices_inte***ce;
select * from ap_invoice_lines_inte***ce;
--concurrent program:
name:expense report export
package:ap_web_export_er
--workflow
expense->apwxwkfl.wft
2) function business process
expense report->|t&e expense- > audit->import
|amex expense->credit credit credit transaction->audit->import to ap
amex expense(這部分標準功能是不存在的,但是使用者可以手工計算錄入不同類別的line)
看到有部分客戶在這裡做了客戶化,自動計算生存personal and exchange rounding
1.personal (客戶化)
a)credit card transaction type=persona ,在ap_expense_report_line產生-amount行記錄
b)credit card transaction total amount使用者沒有 itemzite拆分完的部分,再report上會顯示business personal,實際未產生任何記錄。在匯入ap invoice時候會產生負數clear account line.
2.exchange rounding(客戶化)
a)對於外匯部分產生的小數差異,自動產生一行exchange rounding 行。
js雜記 js jquery實戰雜記 1
1 jquery中event.originalevent屬性 該方法的作用是指向原始的事件物件 2 js滾輪事件 mousewheel dommousescroll ie chrome mousewheel firefox dommousescroll ie chrome event.wheelde...
css雜記 css相容處理雜記 1
1 ios上輸入框 input 輸入區域 textarea 在框體內側頂部會有灰色陰影,去掉的方法 input textarea 2 chrome在輸入框 input 輸入區域 textarea 被聚焦 focus 時,會多出藍色 黃色邊框,去掉方法 input focus textarea foc...
css雜記 css相容處理雜記 2
1 ie上對於沒有內容的a標籤,使用display block會失效 解決辦法 給這個a設乙個背景色 然後透明度調成透明即可 2 css強制換行 word wrap break word 3 css一行太長,最後用省略號表示 display inline block text overflow el...