少妇无码av无码专区线yy,日韩女子肛交视频大全在线观看,男女刺激床爽爽视频只有二人

女高中生上课自慰流白浆_金瓶梅全集在线观看_人妻互换免费中文字幕网站_国产玖玖资源站免费_最经典的人与动物故事

<mark id="ivbgk"><font id="ivbgk"></font></mark>


    獲得積分
    資料庫會員登錄
    搜索: [高級搜索]
    下載首頁 | 資源分類 | 下載排行
    您的位置: 首頁 > 細(xì)分領(lǐng)域系統(tǒng) > 物資 設(shè)備 后勤 材料 供應(yīng)室管理相關(guān)
     
    分類導(dǎo)航
    下載排行
    最新資源
    物資系統(tǒng)模塊及數(shù)據(jù)表說明
    資源大。12.38 KB 資源類型:文檔
    下載積分: 0
    更多
    -->
    下載統(tǒng)計:總下載:0,本月下載:0,本周下載:0,今日下載:0
    發(fā)表評論 錯誤報告 加入收藏夾
    資源介紹
    子系統(tǒng)名稱:WZ
    一、        計劃管理
    1、        采購計劃
    表wz_in_plan
    2、        請領(lǐng)計劃
    表wz_in_plan
    Chis.ini[other]中comm_apply=0[;公共申領(lǐng)端 1:公共申領(lǐng)端;0:非公共申領(lǐng)端]
    如果wz_dict中的trust_flag=’1’ [物資項(xiàng)目維護(hù)中的托管標(biāo)記],則wz_in_plan.in_out_plan=’IN’
    如果是trust_flag=’0’ 則wz_in_plan.in_out_plan=’OUT’
    入庫管理
    1、        采購入庫
    1)入庫單錄入
    A、入庫類型:select * from wz_zd_in_out_type  where in_out_flag=‘IN’and kind=‘1’;保存時寫入wz_in_detl [物資入庫明細(xì)表],對應(yīng)字段in_type
    B、供應(yīng)商:TagSql=417 ,表:wz_zd_supplyer,綁定的庫帳號 wz_zd_kzh,相關(guān)的庫房帳號wz_zd_group;保存對應(yīng)wz_in_detl的字段supplyer_code、kzh_no、group_no_in
    C、采購人:TagSql=8 ,表:a_employee_mi [人事字典表]
    D、支付方式來自表:select * from zd_cheque_type
    E、物資名稱:TagSql=416 ,相關(guān)聯(lián)的表:wz_dict [物資字典表]、wz_base [庫存表]、wz_zd_unit [單位]、wz_zd_class [物資分類]、wz_zd_group[庫房帳號]、wz_zd_manufacture[生產(chǎn)廠家];因?yàn)閣z_dict中不同與yp_dict,其沒有價格,所以第一次入庫,采購價為空,如果第二次入庫,默認(rèn)取上一次的價格wz_in_detl中的buy_price

    保存數(shù)據(jù)寫入:wz_in_detl. 入庫序號取自wz_configure的in_seri,對應(yīng)wz_in_detl.in_seri
    單據(jù)號取自wz_configure的in_pageno,對應(yīng)wz_in_detl.in_docu_no
    第一次Current_stock_amount = buy_amount

    如果入庫類型為:專購入庫,則窗口左下方的內(nèi)部帳號、請領(lǐng)人激活,系統(tǒng)自動將入庫單轉(zhuǎn)換為出庫單,寫入wz_in_detl 同時寫入wz_out_detl [出庫明細(xì)表]

    2)退貨單錄入
    同入庫單寫入wz_in_detl表中,buy_amount、buy_value為負(fù)數(shù);in_type=12 ;out_date=原入庫記錄的in_date,out_seri=原入庫記錄的in_seri

    2、        入庫審核
    1)入庫單據(jù)審核
    A、審核保存時update wz_in_detl set check_flag = ''1'',check_oper = ''00000'',stock_amount = (select stock_amount from wz_base where material_code = ''000156'' and group_no = ''10''),stock_value = (select stock_value from wz_base where material_code = ''000156'' and group_no = ''10'') where in_date = ''2007-11-11 10:32:36'' and in_seri = 17
    更改wz_in_detl中的審核標(biāo)記、審核人、入庫前的庫存量
    B、update wz_base set stock_amount = stock_amount + 100, stock_value = stock_value + 250000 where material_code = '000156' and group_no = '10'
    更改物資庫存表的庫存數(shù)量stock_amount、庫存金額stock_value
    2)退貨單據(jù)審核
    A、更改wz_in_detl中的審核標(biāo)記check_flag、審核人check_oper、退貨前的庫存量stock_amount
    B、update wz_in_detl set current_stock_amount = current_stock_amount + -100, current_stock_value = current_stock_value + -100 * 2500 where in_date = '2007-11-11 10:32:36' and in_seri = 17
    更改wz_in_detl的原入庫記錄的當(dāng)前庫存量current_stock_amount,當(dāng)前庫存金額current_stock_value [此入庫批次]
    C、更改物資庫存表的庫存數(shù)量stock_amount、庫存金額stock_value

    二、        出庫管理
    1、        物資出庫
    1)出庫單錄入
    A、        出庫類型:select * from wz_zd_in_out_type where kind = '2' and code not in ('29','30') and deleted_flag = '0'
    B、        申請科室:TagSql=415 相關(guān)表:wz_zd_inner_acct_no [內(nèi)部帳號] 與 wz_zd_acct_property[帳號屬性]
    C、        可以選擇申請科室的請領(lǐng)單號,數(shù)據(jù)來自wz_in_plan中的accept_flag = '0' and send_flag='1'
    D、保存數(shù)據(jù)寫入:wz_out_detl. 出庫序號取自wz_configure的out_seri,對應(yīng)wz_out_detl.out_seri
    單據(jù)號取自wz_configure的out_pageno,對應(yīng)wz_out_detl.draw_no
    E、update wz_in_detl set current_stock_amount = current_stock_amount - 5, current_stock_value = current_stock_value - 3.851 * 5 where in_date = '2007-01-08 18:34:14' and in_seri = 925
    更改原入庫記錄的庫存量、庫存金額[批次]
    F、更改物資庫存表的庫存數(shù)量stock_amount、庫存金額stock_value
    2)退庫單錄入
    A、update wz_in_detl set current_stock_amount = current_stock_amount - -3, current_stock_value = current_stock_value - 3.851 * -3 where in_date = '2007-01-08 18:34:14' and in_seri = 925
    更改原入庫記錄的庫存量、庫存金額[批次]
    B、update wz_base set stock_amount = stock_amount - -3, stock_value = stock_value - 3.851 * -3 where material_code = '000531' and group_no = '10'
    更改物資庫存表的庫存數(shù)量stock_amount、庫存金額stock_value
    C、寫入wz_out_detl表中issue_amount 為負(fù)數(shù),out_type=’22’

    2、        耐用品登記
    A、        登記類型:SELECT * FROM wz_zd_in_out_type where kind = '3'
    B、        寫入wz_durable_register 表中,分登記和報廢,對應(yīng)out_type為31和32

    三、        庫存管理
    1、        物資盤點(diǎn)
    A、        盤贏 wz_out_detl中out_type=’41’ ,issue_amount是負(fù)數(shù)
    B、        盤虧wz_out_detl中out_type=’42’ ,issue_amount是正數(shù)

    2、        物資報損
    Wz_out_detl中out_type=’44’ ,issue_amount是正數(shù)

    四、        財務(wù)
    1、        供應(yīng)商結(jié)款
    Update wz_in_detl set pay_type='1',acct_oper='00000',acct_date='2007-11-11 16:49:39',acct_pageno=1,invoice_no='12' where in_date='2007-11-11 10:32:36' and in_seri=17
    更改wz_in_detl的pay_type[付款類型]、acct_oper[結(jié)算員]、acct_date[結(jié)算日期]、acct_pageno[結(jié)算單據(jù)號,來自wz_configure.acct_pageno]、invoice_no[發(fā)票號]

    2、        月報
    Report_code=’4301’,調(diào)用存儲過程wz_month_report,結(jié)帳時update了wz_in_detl、wz_out_detl中的report_date,同時將匯總結(jié)果寫入wz_report表中。

    3、        發(fā)票查詢

    4、        庫存明細(xì)帳

    五、        查詢統(tǒng)計

    六、        數(shù)據(jù)維護(hù)
    1、        物資項(xiàng)目維護(hù) –》wz_dict
    2、        庫存物資維護(hù) –》wz_base
    3、        供應(yīng)商字典   -》wz_zd_supplyer
    下載地址
     下載地址1
    按字母檢索

    下載須知:
    大部份資源無需注冊即可下載
    需要積分的資源要在會員中心注冊會員并用 積分體系中提示的方法賺取積分才能下載。

    免責(zé)聲明:
    所有資源只能用于參考學(xué)習(xí),不能用于任何商業(yè)用途,否則后果自負(fù)!