| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="com.goafanti.common.dao.TOrderTaskMapper">
- <resultMap id="BaseResultMap" type="com.goafanti.common.model.TOrderTask">
- <id column="id" jdbcType="INTEGER" property="id" />
- <result column="order_no" jdbcType="VARCHAR" property="orderNo" />
- <result column="main" jdbcType="INTEGER" property="main" />
- <result column="super_id" jdbcType="VARCHAR" property="superId" />
- <result column="commodity_id" jdbcType="VARCHAR" property="commodityId" />
- <result column="commodity_name" jdbcType="VARCHAR" property="commodityName" />
- <result column="commodity_quantity" jdbcType="INTEGER" property="commodityQuantity" />
- <result column="commodity_mode" jdbcType="VARCHAR" property="commodityMode" />
- <result column="commodity_price" jdbcType="DECIMAL" property="commodityPrice" />
- <result column="task_status" jdbcType="INTEGER" property="taskStatus" />
- <result column="task_distribution_time" jdbcType="TIMESTAMP" property="taskDistributionTime" />
- <result column="task_allocator" jdbcType="VARCHAR" property="taskAllocator" />
- <result column="task_receiver" jdbcType="VARCHAR" property="taskReceiver" />
- <result column="task_comment" jdbcType="VARCHAR" property="taskComment" />
- <result column="task_start_time" jdbcType="TIMESTAMP" property="taskStartTime" />
- <result column="task_end_time" jdbcType="TIMESTAMP" property="taskEndTime" />
- <result column="attachment_url" jdbcType="VARCHAR" property="attachmentUrl" />
- <result column="project_status" jdbcType="INTEGER" property="projectStatus" />
- <result column="accept_time" jdbcType="DATE" property="acceptTime" />
- <result column="review_time" jdbcType="DATE" property="reviewTime" />
- <result column="publicity_time" jdbcType="DATE" property="publicityTime" />
- <result column="licence_time" jdbcType="DATE" property="licenceTime" />
- <result column="certificate_number" jdbcType="VARCHAR" property="certificateNumber" />
- <result column="status" jdbcType="INTEGER" property="status" />
- <result column="form_retrieve" jdbcType="INTEGER" property="formRetrieve" />
- <result column="task_refund" jdbcType="INTEGER" property="taskRefund" />
- <result column="refund_content" jdbcType="VARCHAR" property="refundContent" />
- <result column="retrieve_content" jdbcType="VARCHAR" property="retrieveContent" />
- <result column="declare_user" jdbcType="VARCHAR" property="declareUser" />
- <result column="declare_pwd" jdbcType="VARCHAR" property="declarePwd" />
- <result column="set_up_amount" jdbcType="DECIMAL" property="setUpAmount" />
- <result column="arrival_money" jdbcType="INTEGER" property="arrivalMoney" />
- <result column="outsource_name" jdbcType="VARCHAR" property="outsourceName" />
- <result column="outsource_price" jdbcType="DECIMAL" property="outsourcePrice" />
- <result column="consultant_id" jdbcType="VARCHAR" property="consultantId" />
- <result column="manager_id" jdbcType="VARCHAR" property="managerId" />
- <result column="outsource" jdbcType="INTEGER" property="outsource" />
- <result column="split_super" jdbcType="INTEGER" property="splitSuper" />
- <result column="split_status" jdbcType="INTEGER" property="splitStatus" />
- <result column="split_id" jdbcType="INTEGER" property="splitId" />
- <result column="split_aid" jdbcType="VARCHAR" property="splitAid" />
- <result column="split_time" jdbcType="TIMESTAMP" property="splitTime" />
- <result column="cname" jdbcType="VARCHAR" property="cname" />
- <result column="receiver_name" jdbcType="VARCHAR" property="receiverName" />
- <result column="declaration_batch" jdbcType="INTEGER" property="declarationBatch" />
- <result column="cost_reduction" jdbcType="INTEGER" property="costReduction" />
- <result column="official_cost" jdbcType="INTEGER" property="officialCost" />
- <result column="set_up_status" jdbcType="INTEGER" property="setUpStatus" />
- <result column="set_up_time" jdbcType="TIMESTAMP" property="setUpTime" />
- <result column="spot_check_status" jdbcType="INTEGER" property="spotCheckStatus" />
- <result column="high_tech_status" jdbcType="INTEGER" property="highTechStatus" />
- <result column="special_comment" jdbcType="VARCHAR" property="specialComment" />
- <result column="if_certification_fee" jdbcType="INTEGER" property="ifCertificationFee" />
- <result column="certification_fee" jdbcType="DECIMAL" property="certificationFee" />
- <result column="certification_corporate" jdbcType="VARCHAR" property="certificationCorporate" />
- <result column="time_record" jdbcType="VARCHAR" property="timeRecord" />
- <result column="if_publicity" jdbcType="INTEGER" property="ifPublicity" />
- <result column="check_status" jdbcType="INTEGER" property="checkStatus" />
- <result column="patent_type" jdbcType="INTEGER" property="patentType" />
- <result column="pubicity_url" jdbcType="VARCHAR" property="pubicityUrl" />
- <result column="process_status" jdbcType="INTEGER" property="processStatus" />
- <result column="member_type" jdbcType="INTEGER" property="memberType" />
- <result column="picture_url" jdbcType="VARCHAR" property="pictureUrl" />
- </resultMap>
- <sql id="Base_Column_List">
- id, order_no, main, super_id, commodity_id, commodity_name, commodity_quantity, commodity_mode,
- commodity_price, task_status, task_distribution_time, task_allocator, task_receiver,
- task_comment, task_start_time, task_end_time, attachment_url, project_status, accept_time,
- review_time, publicity_time, licence_time, certificate_number, `status`, form_retrieve,
- task_refund, refund_content, retrieve_content, declare_user, declare_pwd, set_up_amount,
- arrival_money, outsource_name, outsource_price, consultant_id, manager_id, outsource,
- split_super, split_status, split_id, split_aid, split_time, cname, receiver_name,
- declaration_batch, cost_reduction, official_cost, set_up_status, set_up_time, spot_check_status,
- high_tech_status, special_comment, if_certification_fee, certification_fee, certification_corporate,
- time_record, if_publicity, check_status, patent_type, pubicity_url, process_status,
- member_type, picture_url
- </sql>
- <select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
- select
- <include refid="Base_Column_List" />
- from t_order_task
- where id = #{id,jdbcType=INTEGER}
- </select>
- <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
- delete from t_order_task
- where id = #{id,jdbcType=INTEGER}
- </delete>
- <insert id="insert" keyColumn="id" keyProperty="id" parameterType="com.goafanti.common.model.TOrderTask" useGeneratedKeys="true">
- insert into t_order_task (id, order_no, main,
- super_id, commodity_id, commodity_name,
- commodity_quantity, commodity_mode, commodity_price,
- task_status, task_distribution_time, task_allocator,
- task_receiver, task_comment, task_start_time,
- task_end_time, attachment_url, project_status,
- accept_time, review_time, publicity_time,
- licence_time, certificate_number, `status`,
- form_retrieve, task_refund, refund_content,
- retrieve_content, declare_user, declare_pwd,
- set_up_amount, arrival_money, outsource_name,
- outsource_price, consultant_id, manager_id,
- outsource, split_super, split_status,
- split_id, split_aid, split_time,
- cname, receiver_name, declaration_batch,
- cost_reduction, official_cost, set_up_status,
- set_up_time, spot_check_status, high_tech_status,
- special_comment, if_certification_fee, certification_fee,
- certification_corporate, time_record, if_publicity,
- check_status, patent_type, pubicity_url,
- process_status, member_type, picture_url
- )
- values (#{id,jdbcType=INTEGER}, #{orderNo,jdbcType=VARCHAR}, #{main,jdbcType=INTEGER},
- #{superId,jdbcType=VARCHAR}, #{commodityId,jdbcType=VARCHAR}, #{commodityName,jdbcType=VARCHAR},
- #{commodityQuantity,jdbcType=INTEGER}, #{commodityMode,jdbcType=VARCHAR}, #{commodityPrice,jdbcType=DECIMAL},
- #{taskStatus,jdbcType=INTEGER}, #{taskDistributionTime,jdbcType=TIMESTAMP}, #{taskAllocator,jdbcType=VARCHAR},
- #{taskReceiver,jdbcType=VARCHAR}, #{taskComment,jdbcType=VARCHAR}, #{taskStartTime,jdbcType=TIMESTAMP},
- #{taskEndTime,jdbcType=TIMESTAMP}, #{attachmentUrl,jdbcType=VARCHAR}, #{projectStatus,jdbcType=INTEGER},
- #{acceptTime,jdbcType=DATE}, #{reviewTime,jdbcType=DATE}, #{publicityTime,jdbcType=DATE},
- #{licenceTime,jdbcType=DATE}, #{certificateNumber,jdbcType=VARCHAR}, #{status,jdbcType=INTEGER},
- #{formRetrieve,jdbcType=INTEGER}, #{taskRefund,jdbcType=INTEGER}, #{refundContent,jdbcType=VARCHAR},
- #{retrieveContent,jdbcType=VARCHAR}, #{declareUser,jdbcType=VARCHAR}, #{declarePwd,jdbcType=VARCHAR},
- #{setUpAmount,jdbcType=DECIMAL}, #{arrivalMoney,jdbcType=INTEGER}, #{outsourceName,jdbcType=VARCHAR},
- #{outsourcePrice,jdbcType=DECIMAL}, #{consultantId,jdbcType=VARCHAR}, #{managerId,jdbcType=VARCHAR},
- #{outsource,jdbcType=INTEGER}, #{splitSuper,jdbcType=INTEGER}, #{splitStatus,jdbcType=INTEGER},
- #{splitId,jdbcType=INTEGER}, #{splitAid,jdbcType=VARCHAR}, #{splitTime,jdbcType=TIMESTAMP},
- #{cname,jdbcType=VARCHAR}, #{receiverName,jdbcType=VARCHAR}, #{declarationBatch,jdbcType=INTEGER},
- #{costReduction,jdbcType=INTEGER}, #{officialCost,jdbcType=INTEGER}, #{setUpStatus,jdbcType=INTEGER},
- #{setUpTime,jdbcType=TIMESTAMP}, #{spotCheckStatus,jdbcType=INTEGER}, #{highTechStatus,jdbcType=INTEGER},
- #{specialComment,jdbcType=VARCHAR}, #{ifCertificationFee,jdbcType=INTEGER}, #{certificationFee,jdbcType=DECIMAL},
- #{certificationCorporate,jdbcType=VARCHAR}, #{timeRecord,jdbcType=VARCHAR}, #{ifPublicity,jdbcType=INTEGER},
- #{checkStatus,jdbcType=INTEGER}, #{patentType,jdbcType=INTEGER}, #{pubicityUrl,jdbcType=VARCHAR},
- #{processStatus,jdbcType=INTEGER}, #{memberType,jdbcType=INTEGER}, #{pictureUrl,jdbcType=VARCHAR}
- )
- </insert>
- <insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.goafanti.common.model.TOrderTask" useGeneratedKeys="true">
- insert into t_order_task
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test="id != null">
- id,
- </if>
- <if test="orderNo != null">
- order_no,
- </if>
- <if test="main != null">
- main,
- </if>
- <if test="superId != null">
- super_id,
- </if>
- <if test="commodityId != null">
- commodity_id,
- </if>
- <if test="commodityName != null">
- commodity_name,
- </if>
- <if test="commodityQuantity != null">
- commodity_quantity,
- </if>
- <if test="commodityMode != null">
- commodity_mode,
- </if>
- <if test="commodityPrice != null">
- commodity_price,
- </if>
- <if test="taskStatus != null">
- task_status,
- </if>
- <if test="taskDistributionTime != null">
- task_distribution_time,
- </if>
- <if test="taskAllocator != null">
- task_allocator,
- </if>
- <if test="taskReceiver != null">
- task_receiver,
- </if>
- <if test="taskComment != null">
- task_comment,
- </if>
- <if test="taskStartTime != null">
- task_start_time,
- </if>
- <if test="taskEndTime != null">
- task_end_time,
- </if>
- <if test="attachmentUrl != null">
- attachment_url,
- </if>
- <if test="projectStatus != null">
- project_status,
- </if>
- <if test="acceptTime != null">
- accept_time,
- </if>
- <if test="reviewTime != null">
- review_time,
- </if>
- <if test="publicityTime != null">
- publicity_time,
- </if>
- <if test="licenceTime != null">
- licence_time,
- </if>
- <if test="certificateNumber != null">
- certificate_number,
- </if>
- <if test="status != null">
- `status`,
- </if>
- <if test="formRetrieve != null">
- form_retrieve,
- </if>
- <if test="taskRefund != null">
- task_refund,
- </if>
- <if test="refundContent != null">
- refund_content,
- </if>
- <if test="retrieveContent != null">
- retrieve_content,
- </if>
- <if test="declareUser != null">
- declare_user,
- </if>
- <if test="declarePwd != null">
- declare_pwd,
- </if>
- <if test="setUpAmount != null">
- set_up_amount,
- </if>
- <if test="arrivalMoney != null">
- arrival_money,
- </if>
- <if test="outsourceName != null">
- outsource_name,
- </if>
- <if test="outsourcePrice != null">
- outsource_price,
- </if>
- <if test="consultantId != null">
- consultant_id,
- </if>
- <if test="managerId != null">
- manager_id,
- </if>
- <if test="outsource != null">
- outsource,
- </if>
- <if test="splitSuper != null">
- split_super,
- </if>
- <if test="splitStatus != null">
- split_status,
- </if>
- <if test="splitId != null">
- split_id,
- </if>
- <if test="splitAid != null">
- split_aid,
- </if>
- <if test="splitTime != null">
- split_time,
- </if>
- <if test="cname != null">
- cname,
- </if>
- <if test="receiverName != null">
- receiver_name,
- </if>
- <if test="declarationBatch != null">
- declaration_batch,
- </if>
- <if test="costReduction != null">
- cost_reduction,
- </if>
- <if test="officialCost != null">
- official_cost,
- </if>
- <if test="setUpStatus != null">
- set_up_status,
- </if>
- <if test="setUpTime != null">
- set_up_time,
- </if>
- <if test="spotCheckStatus != null">
- spot_check_status,
- </if>
- <if test="highTechStatus != null">
- high_tech_status,
- </if>
- <if test="specialComment != null">
- special_comment,
- </if>
- <if test="ifCertificationFee != null">
- if_certification_fee,
- </if>
- <if test="certificationFee != null">
- certification_fee,
- </if>
- <if test="certificationCorporate != null">
- certification_corporate,
- </if>
- <if test="timeRecord != null">
- time_record,
- </if>
- <if test="ifPublicity != null">
- if_publicity,
- </if>
- <if test="checkStatus != null">
- check_status,
- </if>
- <if test="patentType != null">
- patent_type,
- </if>
- <if test="pubicityUrl != null">
- pubicity_url,
- </if>
- <if test="processStatus != null">
- process_status,
- </if>
- <if test="memberType != null">
- member_type,
- </if>
- <if test="pictureUrl != null">
- picture_url,
- </if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test="id != null">
- #{id,jdbcType=INTEGER},
- </if>
- <if test="orderNo != null">
- #{orderNo,jdbcType=VARCHAR},
- </if>
- <if test="main != null">
- #{main,jdbcType=INTEGER},
- </if>
- <if test="superId != null">
- #{superId,jdbcType=VARCHAR},
- </if>
- <if test="commodityId != null">
- #{commodityId,jdbcType=VARCHAR},
- </if>
- <if test="commodityName != null">
- #{commodityName,jdbcType=VARCHAR},
- </if>
- <if test="commodityQuantity != null">
- #{commodityQuantity,jdbcType=INTEGER},
- </if>
- <if test="commodityMode != null">
- #{commodityMode,jdbcType=VARCHAR},
- </if>
- <if test="commodityPrice != null">
- #{commodityPrice,jdbcType=DECIMAL},
- </if>
- <if test="taskStatus != null">
- #{taskStatus,jdbcType=INTEGER},
- </if>
- <if test="taskDistributionTime != null">
- #{taskDistributionTime,jdbcType=TIMESTAMP},
- </if>
- <if test="taskAllocator != null">
- #{taskAllocator,jdbcType=VARCHAR},
- </if>
- <if test="taskReceiver != null">
- #{taskReceiver,jdbcType=VARCHAR},
- </if>
- <if test="taskComment != null">
- #{taskComment,jdbcType=VARCHAR},
- </if>
- <if test="taskStartTime != null">
- #{taskStartTime,jdbcType=TIMESTAMP},
- </if>
- <if test="taskEndTime != null">
- #{taskEndTime,jdbcType=TIMESTAMP},
- </if>
- <if test="attachmentUrl != null">
- #{attachmentUrl,jdbcType=VARCHAR},
- </if>
- <if test="projectStatus != null">
- #{projectStatus,jdbcType=INTEGER},
- </if>
- <if test="acceptTime != null">
- #{acceptTime,jdbcType=DATE},
- </if>
- <if test="reviewTime != null">
- #{reviewTime,jdbcType=DATE},
- </if>
- <if test="publicityTime != null">
- #{publicityTime,jdbcType=DATE},
- </if>
- <if test="licenceTime != null">
- #{licenceTime,jdbcType=DATE},
- </if>
- <if test="certificateNumber != null">
- #{certificateNumber,jdbcType=VARCHAR},
- </if>
- <if test="status != null">
- #{status,jdbcType=INTEGER},
- </if>
- <if test="formRetrieve != null">
- #{formRetrieve,jdbcType=INTEGER},
- </if>
- <if test="taskRefund != null">
- #{taskRefund,jdbcType=INTEGER},
- </if>
- <if test="refundContent != null">
- #{refundContent,jdbcType=VARCHAR},
- </if>
- <if test="retrieveContent != null">
- #{retrieveContent,jdbcType=VARCHAR},
- </if>
- <if test="declareUser != null">
- #{declareUser,jdbcType=VARCHAR},
- </if>
- <if test="declarePwd != null">
- #{declarePwd,jdbcType=VARCHAR},
- </if>
- <if test="setUpAmount != null">
- #{setUpAmount,jdbcType=DECIMAL},
- </if>
- <if test="arrivalMoney != null">
- #{arrivalMoney,jdbcType=INTEGER},
- </if>
- <if test="outsourceName != null">
- #{outsourceName,jdbcType=VARCHAR},
- </if>
- <if test="outsourcePrice != null">
- #{outsourcePrice,jdbcType=DECIMAL},
- </if>
- <if test="consultantId != null">
- #{consultantId,jdbcType=VARCHAR},
- </if>
- <if test="managerId != null">
- #{managerId,jdbcType=VARCHAR},
- </if>
- <if test="outsource != null">
- #{outsource,jdbcType=INTEGER},
- </if>
- <if test="splitSuper != null">
- #{splitSuper,jdbcType=INTEGER},
- </if>
- <if test="splitStatus != null">
- #{splitStatus,jdbcType=INTEGER},
- </if>
- <if test="splitId != null">
- #{splitId,jdbcType=INTEGER},
- </if>
- <if test="splitAid != null">
- #{splitAid,jdbcType=VARCHAR},
- </if>
- <if test="splitTime != null">
- #{splitTime,jdbcType=TIMESTAMP},
- </if>
- <if test="cname != null">
- #{cname,jdbcType=VARCHAR},
- </if>
- <if test="receiverName != null">
- #{receiverName,jdbcType=VARCHAR},
- </if>
- <if test="declarationBatch != null">
- #{declarationBatch,jdbcType=INTEGER},
- </if>
- <if test="costReduction != null">
- #{costReduction,jdbcType=INTEGER},
- </if>
- <if test="officialCost != null">
- #{officialCost,jdbcType=INTEGER},
- </if>
- <if test="setUpStatus != null">
- #{setUpStatus,jdbcType=INTEGER},
- </if>
- <if test="setUpTime != null">
- #{setUpTime,jdbcType=TIMESTAMP},
- </if>
- <if test="spotCheckStatus != null">
- #{spotCheckStatus,jdbcType=INTEGER},
- </if>
- <if test="highTechStatus != null">
- #{highTechStatus,jdbcType=INTEGER},
- </if>
- <if test="specialComment != null">
- #{specialComment,jdbcType=VARCHAR},
- </if>
- <if test="ifCertificationFee != null">
- #{ifCertificationFee,jdbcType=INTEGER},
- </if>
- <if test="certificationFee != null">
- #{certificationFee,jdbcType=DECIMAL},
- </if>
- <if test="certificationCorporate != null">
- #{certificationCorporate,jdbcType=VARCHAR},
- </if>
- <if test="timeRecord != null">
- #{timeRecord,jdbcType=VARCHAR},
- </if>
- <if test="ifPublicity != null">
- #{ifPublicity,jdbcType=INTEGER},
- </if>
- <if test="checkStatus != null">
- #{checkStatus,jdbcType=INTEGER},
- </if>
- <if test="patentType != null">
- #{patentType,jdbcType=INTEGER},
- </if>
- <if test="pubicityUrl != null">
- #{pubicityUrl,jdbcType=VARCHAR},
- </if>
- <if test="processStatus != null">
- #{processStatus,jdbcType=INTEGER},
- </if>
- <if test="memberType != null">
- #{memberType,jdbcType=INTEGER},
- </if>
- <if test="pictureUrl != null">
- #{pictureUrl,jdbcType=VARCHAR},
- </if>
- </trim>
- </insert>
- <update id="updateByPrimaryKeySelective" parameterType="com.goafanti.common.model.TOrderTask">
- update t_order_task
- <set>
- <if test="orderNo != null">
- order_no = #{orderNo,jdbcType=VARCHAR},
- </if>
- <if test="main != null">
- main = #{main,jdbcType=INTEGER},
- </if>
- <if test="superId != null">
- super_id = #{superId,jdbcType=VARCHAR},
- </if>
- <if test="commodityId != null">
- commodity_id = #{commodityId,jdbcType=VARCHAR},
- </if>
- <if test="commodityName != null">
- commodity_name = #{commodityName,jdbcType=VARCHAR},
- </if>
- <if test="commodityQuantity != null">
- commodity_quantity = #{commodityQuantity,jdbcType=INTEGER},
- </if>
- <if test="commodityMode != null">
- commodity_mode = #{commodityMode,jdbcType=VARCHAR},
- </if>
- <if test="commodityPrice != null">
- commodity_price = #{commodityPrice,jdbcType=DECIMAL},
- </if>
- <if test="taskStatus != null">
- task_status = #{taskStatus,jdbcType=INTEGER},
- </if>
- <if test="taskDistributionTime != null">
- task_distribution_time = #{taskDistributionTime,jdbcType=TIMESTAMP},
- </if>
- <if test="taskAllocator != null">
- task_allocator = #{taskAllocator,jdbcType=VARCHAR},
- </if>
- <if test="taskReceiver != null">
- task_receiver = #{taskReceiver,jdbcType=VARCHAR},
- </if>
- <if test="taskComment != null">
- task_comment = #{taskComment,jdbcType=VARCHAR},
- </if>
- <if test="taskStartTime != null">
- task_start_time = #{taskStartTime,jdbcType=TIMESTAMP},
- </if>
- <if test="taskEndTime != null">
- task_end_time = #{taskEndTime,jdbcType=TIMESTAMP},
- </if>
- <if test="attachmentUrl != null">
- attachment_url = #{attachmentUrl,jdbcType=VARCHAR},
- </if>
- <if test="projectStatus != null">
- project_status = #{projectStatus,jdbcType=INTEGER},
- </if>
- <if test="acceptTime != null">
- accept_time = #{acceptTime,jdbcType=DATE},
- </if>
- <if test="reviewTime != null">
- review_time = #{reviewTime,jdbcType=DATE},
- </if>
- <if test="publicityTime != null">
- publicity_time = #{publicityTime,jdbcType=DATE},
- </if>
- <if test="licenceTime != null">
- licence_time = #{licenceTime,jdbcType=DATE},
- </if>
- <if test="certificateNumber != null">
- certificate_number = #{certificateNumber,jdbcType=VARCHAR},
- </if>
- <if test="status != null">
- `status` = #{status,jdbcType=INTEGER},
- </if>
- <if test="formRetrieve != null">
- form_retrieve = #{formRetrieve,jdbcType=INTEGER},
- </if>
- <if test="taskRefund != null">
- task_refund = #{taskRefund,jdbcType=INTEGER},
- </if>
- <if test="refundContent != null">
- refund_content = #{refundContent,jdbcType=VARCHAR},
- </if>
- <if test="retrieveContent != null">
- retrieve_content = #{retrieveContent,jdbcType=VARCHAR},
- </if>
- <if test="declareUser != null">
- declare_user = #{declareUser,jdbcType=VARCHAR},
- </if>
- <if test="declarePwd != null">
- declare_pwd = #{declarePwd,jdbcType=VARCHAR},
- </if>
- <if test="setUpAmount != null">
- set_up_amount = #{setUpAmount,jdbcType=DECIMAL},
- </if>
- <if test="arrivalMoney != null">
- arrival_money = #{arrivalMoney,jdbcType=INTEGER},
- </if>
- <if test="outsourceName != null">
- outsource_name = #{outsourceName,jdbcType=VARCHAR},
- </if>
- <if test="outsourcePrice != null">
- outsource_price = #{outsourcePrice,jdbcType=DECIMAL},
- </if>
- <if test="consultantId != null">
- consultant_id = #{consultantId,jdbcType=VARCHAR},
- </if>
- <if test="managerId != null">
- manager_id = #{managerId,jdbcType=VARCHAR},
- </if>
- <if test="outsource != null">
- outsource = #{outsource,jdbcType=INTEGER},
- </if>
- <if test="splitSuper != null">
- split_super = #{splitSuper,jdbcType=INTEGER},
- </if>
- <if test="splitStatus != null">
- split_status = #{splitStatus,jdbcType=INTEGER},
- </if>
- <if test="splitId != null">
- split_id = #{splitId,jdbcType=INTEGER},
- </if>
- <if test="splitAid != null">
- split_aid = #{splitAid,jdbcType=VARCHAR},
- </if>
- <if test="splitTime != null">
- split_time = #{splitTime,jdbcType=TIMESTAMP},
- </if>
- <if test="cname != null">
- cname = #{cname,jdbcType=VARCHAR},
- </if>
- <if test="receiverName != null">
- receiver_name = #{receiverName,jdbcType=VARCHAR},
- </if>
- <if test="declarationBatch != null">
- declaration_batch = #{declarationBatch,jdbcType=INTEGER},
- </if>
- <if test="costReduction != null">
- cost_reduction = #{costReduction,jdbcType=INTEGER},
- </if>
- <if test="officialCost != null">
- official_cost = #{officialCost,jdbcType=INTEGER},
- </if>
- <if test="setUpStatus != null">
- set_up_status = #{setUpStatus,jdbcType=INTEGER},
- </if>
- <if test="setUpTime != null">
- set_up_time = #{setUpTime,jdbcType=TIMESTAMP},
- </if>
- <if test="spotCheckStatus != null">
- spot_check_status = #{spotCheckStatus,jdbcType=INTEGER},
- </if>
- <if test="highTechStatus != null">
- high_tech_status = #{highTechStatus,jdbcType=INTEGER},
- </if>
- <if test="specialComment != null">
- special_comment = #{specialComment,jdbcType=VARCHAR},
- </if>
- <if test="ifCertificationFee != null">
- if_certification_fee = #{ifCertificationFee,jdbcType=INTEGER},
- </if>
- <if test="certificationFee != null">
- certification_fee = #{certificationFee,jdbcType=DECIMAL},
- </if>
- <if test="certificationCorporate != null">
- certification_corporate = #{certificationCorporate,jdbcType=VARCHAR},
- </if>
- <if test="timeRecord != null">
- time_record = #{timeRecord,jdbcType=VARCHAR},
- </if>
- <if test="ifPublicity != null">
- if_publicity = #{ifPublicity,jdbcType=INTEGER},
- </if>
- <if test="checkStatus != null">
- check_status = #{checkStatus,jdbcType=INTEGER},
- </if>
- <if test="patentType != null">
- patent_type = #{patentType,jdbcType=INTEGER},
- </if>
- <if test="pubicityUrl != null">
- pubicity_url = #{pubicityUrl,jdbcType=VARCHAR},
- </if>
- <if test="processStatus != null">
- process_status = #{processStatus,jdbcType=INTEGER},
- </if>
- <if test="memberType != null">
- member_type = #{memberType,jdbcType=INTEGER},
- </if>
- <if test="pictureUrl != null">
- picture_url = #{pictureUrl,jdbcType=VARCHAR},
- </if>
- </set>
- where id = #{id,jdbcType=INTEGER}
- </update>
- <update id="updateByPrimaryKey" parameterType="com.goafanti.common.model.TOrderTask">
- update t_order_task
- set order_no = #{orderNo,jdbcType=VARCHAR},
- main = #{main,jdbcType=INTEGER},
- super_id = #{superId,jdbcType=VARCHAR},
- commodity_id = #{commodityId,jdbcType=VARCHAR},
- commodity_name = #{commodityName,jdbcType=VARCHAR},
- commodity_quantity = #{commodityQuantity,jdbcType=INTEGER},
- commodity_mode = #{commodityMode,jdbcType=VARCHAR},
- commodity_price = #{commodityPrice,jdbcType=DECIMAL},
- task_status = #{taskStatus,jdbcType=INTEGER},
- task_distribution_time = #{taskDistributionTime,jdbcType=TIMESTAMP},
- task_allocator = #{taskAllocator,jdbcType=VARCHAR},
- task_receiver = #{taskReceiver,jdbcType=VARCHAR},
- task_comment = #{taskComment,jdbcType=VARCHAR},
- task_start_time = #{taskStartTime,jdbcType=TIMESTAMP},
- task_end_time = #{taskEndTime,jdbcType=TIMESTAMP},
- attachment_url = #{attachmentUrl,jdbcType=VARCHAR},
- project_status = #{projectStatus,jdbcType=INTEGER},
- accept_time = #{acceptTime,jdbcType=DATE},
- review_time = #{reviewTime,jdbcType=DATE},
- publicity_time = #{publicityTime,jdbcType=DATE},
- licence_time = #{licenceTime,jdbcType=DATE},
- certificate_number = #{certificateNumber,jdbcType=VARCHAR},
- `status` = #{status,jdbcType=INTEGER},
- form_retrieve = #{formRetrieve,jdbcType=INTEGER},
- task_refund = #{taskRefund,jdbcType=INTEGER},
- refund_content = #{refundContent,jdbcType=VARCHAR},
- retrieve_content = #{retrieveContent,jdbcType=VARCHAR},
- declare_user = #{declareUser,jdbcType=VARCHAR},
- declare_pwd = #{declarePwd,jdbcType=VARCHAR},
- set_up_amount = #{setUpAmount,jdbcType=DECIMAL},
- arrival_money = #{arrivalMoney,jdbcType=INTEGER},
- outsource_name = #{outsourceName,jdbcType=VARCHAR},
- outsource_price = #{outsourcePrice,jdbcType=DECIMAL},
- consultant_id = #{consultantId,jdbcType=VARCHAR},
- manager_id = #{managerId,jdbcType=VARCHAR},
- outsource = #{outsource,jdbcType=INTEGER},
- split_super = #{splitSuper,jdbcType=INTEGER},
- split_status = #{splitStatus,jdbcType=INTEGER},
- split_id = #{splitId,jdbcType=INTEGER},
- split_aid = #{splitAid,jdbcType=VARCHAR},
- split_time = #{splitTime,jdbcType=TIMESTAMP},
- cname = #{cname,jdbcType=VARCHAR},
- receiver_name = #{receiverName,jdbcType=VARCHAR},
- declaration_batch = #{declarationBatch,jdbcType=INTEGER},
- cost_reduction = #{costReduction,jdbcType=INTEGER},
- official_cost = #{officialCost,jdbcType=INTEGER},
- set_up_status = #{setUpStatus,jdbcType=INTEGER},
- set_up_time = #{setUpTime,jdbcType=TIMESTAMP},
- spot_check_status = #{spotCheckStatus,jdbcType=INTEGER},
- high_tech_status = #{highTechStatus,jdbcType=INTEGER},
- special_comment = #{specialComment,jdbcType=VARCHAR},
- if_certification_fee = #{ifCertificationFee,jdbcType=INTEGER},
- certification_fee = #{certificationFee,jdbcType=DECIMAL},
- certification_corporate = #{certificationCorporate,jdbcType=VARCHAR},
- time_record = #{timeRecord,jdbcType=VARCHAR},
- if_publicity = #{ifPublicity,jdbcType=INTEGER},
- check_status = #{checkStatus,jdbcType=INTEGER},
- patent_type = #{patentType,jdbcType=INTEGER},
- pubicity_url = #{pubicityUrl,jdbcType=VARCHAR},
- process_status = #{processStatus,jdbcType=INTEGER},
- member_type = #{memberType,jdbcType=INTEGER},
- picture_url = #{pictureUrl,jdbcType=VARCHAR}
- where id = #{id,jdbcType=INTEGER}
- </update>
- <select id="selectOrderTask" resultType="com.goafanti.order.bo.TOrderTaskBo">
- select a.id,e.contract_no contractNo,a.order_no as orderNo,h.nickname userName,f.name salesmanName,
- a.outsource_name outsourceName,a.outsource, a.outsource_price outsourcePrice,g.name depName,
- e.order_status orderStatus,d.name as contacts,d.contact_mobile as contactsMobile,a.main, c.cname,
- c.sort cSort,a.commodity_name as commodityName,a.commodity_quantity as commodityQuantity,b.patent_transfer patentTransfer ,
- i.price,a.certificate_number as certificateNumber, a.commodity_id as commodityId,a.manager_id managerId,
- a.consultant_id consultantId,a.project_status as projectStatus,a.set_up_amount setUpAmount,j.contract_term contractTerm,
- a.task_comment as taskComment ,a.commodity_price as commodityPrice, a.task_status as taskStatus,
- a.task_receiver as taskReceiver ,a.if_certification_fee ifCertificationFee , a.split_status splitStatus,
- a.cost_reduction costReduction,a.official_cost officialCost,i.`type` ,d.name ,a.declaration_batch declarationBatch,
- a.patent_type patentType,a.picture_url pictureUrl,j.service_life serviceLife ,j.service_year serviceYear,j.year_sum yearSum
- from t_order_task a left join business_project b on a.commodity_id=b.id left join t_order_new e on a.order_no=e.order_no
- left join admin f on e.salesman_id=f.id left join department g on e.order_dep=g.id left join user h on e.buyer_id=h.id
- left join business_project i on a.commodity_id=i.id left join business_category c on b.cid=c.id
- left join admin d on a.task_receiver=d.id left join t_task_member j on a.id =j.tid
- where a.super_id is null and a.split_status in(0,1)
- <if test="orderNo != null">
- and a.order_no= #{orderNo,jdbcType=VARCHAR}
- </if>
- <if test="type == 1">
- and a.process_status in(0,3)
- </if>
- order by a.id
- </select>
- <select id="selectOrderTaskAll" resultType="com.goafanti.order.bo.TOrderTaskBo">
- select a.id,e.contract_no contractNo,a.order_no as orderNo,h.nickname userName,f.name salesmanName,a.outsource_name outsourceName,a.outsource,
- a.outsource_price outsourcePrice,g.name depName,e.order_status orderStatus,d.name as contacts,d.contact_mobile as contactsMobile,a.main, c.cname,
- c.sort cSort,a.commodity_name as commodityName,a.commodity_quantity as commodityQuantity,i.price,a.certificate_number as certificateNumber,a.receiver_name receiverName,
- a.commodity_id as commodityId,a.manager_id managerId,a.consultant_id consultantId,a.project_status as projectStatus,a.set_up_amount setUpAmount,
- a.task_comment as taskComment ,a.commodity_price as commodityPrice, a.task_status as taskStatus, a.task_receiver as taskReceiver ,
- a.split_status splitStatus,a.split_super splitSuper,a.split_aid splitAid,a.split_time splitTime,a.patent_type patentType,ttm.contract_term contractTerm,
- a.picture_url pictureUrl, ttm.service_life serviceLife ,ttm.service_year serviceYear,ttm.year_sum yearSum
- from t_order_task a left join business_project b on a.commodity_id=b.id left join t_order_new e on a.order_no=e.order_no
- left join admin f on e.salesman_id=f.id left join department g on e.order_dep=g.id left join user h on e.buyer_id=h.id
- left join business_project i on a.commodity_id=i.id left join business_category c on b.cid=c.id left join admin d on a.task_receiver=d.id
- left join t_task_member ttm on a.id=ttm.tid
- where a.super_id is null and a.order_no= #{orderNo,jdbcType=VARCHAR}
- <if test="splitStatus !=null">
- <if test="splitStatus < 3">
- and a.split_status= #{splitStatus}
- </if>
- <if test="splitStatus ==3">
- and a.split_status in(0,1)
- </if>
- <if test="splitStatus ==4">
- and a.split_status in(0,2)
- </if>
- </if>
- order by a.id
- </select>
- <select id="selectOrderTaskListByPage" resultType="com.goafanti.order.bo.TOrderTaskListBo">
- select a.id,a.commodity_name as taskName,a.order_no as orderNo,c.cname,a.receiver_name receiverName,a.project_status projectStatus,e.contract_no contractNo,
- a.task_receiver taskReceiver,a.task_status as taskStatus,date_format(a.task_distribution_time,'%Y-%m-%d %H:%i:%S') as taskDate, a.commodity_quantity as commodityQuantity,
- e.approval,l.refund_status outsourceStatus,l.start_type outsourceType,ttm.certificates_count alreadyNumber,f.nickname as userName,h.name as depName, l.company_name as outsourceName ,
- ifnull(k.hours,0) hours,a.split_status splitStatus,a.split_super splitSuper, a.split_id splitId,b.`type` projectType,ttm.cost_amount costAmount,tm.salesman_name salesmanName ,
- ttm.party_amount partyAmount,a.commodity_price commodityPrice,a.outsource,date_format(a.task_end_time,'%Y-%m-%d') taskEndTime,date_format(e.sign_time,'%Y-%m-%d') signTime,
- date_format(e.create_time ,'%Y-%m-%d')creteTime,a.patent_type patentType
- from t_order_task a left join business_project b on a.commodity_id=b.id left join business_category c on b.cid=c.id
- left join t_order_new e on a.order_no=e.order_no left join user f on e.buyer_id=f.id left join t_order_mid tm on a.order_no =tm.order_no
- left join department h on e.order_dep=h.id left join task_hours_count k on a.id=k.tid and a.task_receiver=k.aid left join t_order_outsource l
- on a.id=l.tid left join t_task_mid ttm on a.id=ttm.tid where e.delete_sign in (0,2,3) and e.order_status in (2,4)
- and a.outsource= #{outsource,jdbcType=INTEGER}
- <if test="role == 0 ">
- and a.task_receiver= #{aid,jdbcType=VARCHAR}
- </if>
- <if test="role ==1 and fids != null and fids.size() > 0">
- and e.finance_id in
- <foreach close=")" collection="fids" index="" item="item" open="(" separator=",">
- #{item}
- </foreach>
- </if>
- <if test="specially == 0 ">
- and a.split_status in (0,2)
- </if>
- <if test="orderNo != null">
- and a.order_no= #{orderNo,jdbcType=VARCHAR}
- </if>
- <if test="approval ==0">
- and e.approval = 0
- </if>
- <if test="approval ==1">
- and e.approval = 1
- </if>
- <if test="approval ==2">
- and e.approval > 1
- </if>
- <if test="cid != null">
- and c.id = #{cid}
- </if>
- <if test="outsourceStatus !=null">
- and l.refund_status = #{outsourceStatus,jdbcType=INTEGER}
- </if>
- <if test="contractNo != null">
- and e.contract_no like CONCAT('%',#{contractNo,jdbcType=VARCHAR},'%')
- </if>
- <if test="projectStatus != null">
- and a.project_status = #{projectStatus,jdbcType=INTEGER}
- </if>
- <if test="deps != null">
- and e.order_dep in
- <foreach close=")" collection="deps" item="depId" open="(" separator=",">
- #{depId}
- </foreach>
- </if>
- <if test="name != null">
- and f.nickname like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
- </if>
- <if test="orderNo != null">
- and a.order_no= #{orderNo,jdbcType=VARCHAR}
- </if>
- <if test="taskId != null">
- and (a.id= #{taskId,jdbcType=VARCHAR} or a.split_super= #{taskId,jdbcType=VARCHAR})
- </if>
- <if test="taskStatus != null">
- and a.task_status= #{taskStatus,jdbcType=INTEGER}
- </if>
- <if test="adminName != null">
- and a.receiver_name like CONCAT('%', #{adminName,jdbcType=VARCHAR},'%')
- </if>
- <if test="startTime != null and endTime != null">
- and e.sign_time between #{startTime} and #{endTime}
- </if>
- order by a.task_distribution_time desc
- <if test="page_sql!=null">
- ${page_sql}
- </if>
- </select>
- <select id="selectOrderTaskListCount" resultType="java.lang.Integer">
- select count(*) from t_order_task a left join business_project b on a.commodity_id=b.id left join business_category c on b.cid=c.id
- left join t_order_new e on a.order_no=e.order_no left join user f on e.buyer_id=f.id left join admin g on e.salesman_id=g.id
- left join t_order_outsource l on a.id=l.tid left join department h on g.department_id=h.id
- where e.delete_sign in (0,2,3) and e.order_status in (2,4)
- and a.outsource= #{outsource,jdbcType=INTEGER}
- <if test="role == 0 ">
- and a.task_receiver= #{aid,jdbcType=VARCHAR}
- </if>
- <if test="role ==1 and fids != null and fids.size() > 0">
- and e.finance_id in
- <foreach close=")" collection="fids" index="" item="item" open="(" separator=",">
- #{item}
- </foreach>
- </if>
- <if test="specially == 0 ">
- and a.split_status in (0,2)
- </if>
- <if test="orderNo != null">
- and a.order_no= #{orderNo,jdbcType=VARCHAR}
- </if>
- <if test="approval ==0">
- and e.approval = 0
- </if>
- <if test="approval ==1">
- and e.approval = 1
- </if>
- <if test="approval ==2">
- and e.approval > 1
- </if>
- <if test="cid != null">
- and c.id = #{cid}
- </if>
- <if test="outsourceStatus !=null">
- and l.refund_status = #{outsourceStatus,jdbcType=INTEGER}
- </if>
- <if test="contractNo != null">
- and e.contract_no like CONCAT('%',#{contractNo,jdbcType=VARCHAR},'%')
- </if>
- <if test="projectStatus != null">
- and a.project_status = #{projectStatus,jdbcType=INTEGER}
- </if>
- <if test="deps != null">
- and e.order_dep in
- <foreach close=")" collection="deps" item="depId" open="(" separator=",">
- #{depId}
- </foreach>
- </if>
- <if test="name != null">
- and f.nickname like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
- </if>
- <if test="orderNo != null">
- and a.order_no= #{orderNo,jdbcType=VARCHAR}
- </if>
- <if test="taskId != null">
- and (a.id= #{taskId,jdbcType=VARCHAR} or a.split_super= #{taskId,jdbcType=VARCHAR})
- </if>
- <if test="taskStatus != null">
- and a.task_status= #{taskStatus,jdbcType=INTEGER}
- </if>
- <if test="adminName != null">
- and a.receiver_name like CONCAT('%', #{adminName,jdbcType=VARCHAR},'%')
- </if>
- <if test="startTime != null and endTime != null">
- and e.sign_time between #{startTime} and #{endTime}
- </if>
- </select>
- <select id="getOrderTaskDetail" resultType="com.goafanti.order.bo.TOrderTaskDetailBo">
- select
- a.id,a.commodity_name as taskName,a.order_no as orderNo,c.sort ,c.cname,d.name as receiverName,a.task_comment as taskComment,a.project_status as projectStatus,
- a.task_status as taskStatus,e.contacts,a.attachment_url as attachmentUrl,a.outsource_name outsourceName, f.nickname as userName,a.set_up_amount as setUpAmount,
- g.name as salesmanName,date_format(a.task_start_time,'%Y-%m-%d') as startDate,a.retrieve_content as retrieveContent, a.arrival_money as arrivalMoney,
- a.certificate_number as certificateNumber, a.status,a.form_retrieve as formRetrieve, a.task_refund as taskRefund,a.task_receiver taskReceiver,b.patent_transfer patentTransfer,
- a.refund_content as refundContent, a.declare_user as declareUser, a.declare_pwd as declarePwd,e.contract_no as contractNo,e.contacts ,b.`type` bpType,
- date_format(a.task_end_time,'%Y-%m-%d') as endDate,date_format(a.accept_time,'%Y-%m-%d') as acceptDate,h.name as depName,e.contact_mobile as contactMobile ,
- date_format(a.review_time,'%Y-%m-%d') as reviewDate,date_format(a.publicity_time,'%Y-%m-%d') as publicityDate,a.outsource_price outsourcePrice,
- date_format(a.licence_time,'%Y-%m-%d') as licenceDate,date_format(a.task_distribution_time,'%Y-%m-%d %H:%i:%S') as taskDate,e.legal_person as legalPerson,
- e.legal_person_tel as legalPersonTel, a.split_status splitStatus, a.split_super splitSuper, a.split_id splitId,a.declaration_batch declarationBatch,a.patent_type patentType,
- a.if_certification_fee ifCertificationFee , a.certification_corporate certificationCorporate ,a.certification_fee certificationFee ,a.time_record timeRecord,
- a.cost_reduction costReduction, a.official_cost officialCost,a.set_up_status setUpStatus ,date_format(a.set_up_time,'%Y-%m-%d') setUpTime ,a.high_tech_status highTechStatus ,
- a.spot_check_status spotCheckStatus , a.special_comment specialComment ,ttm.certificates_count certificatesCount ,ttm.reject_count rejectCount ,a.check_status checkStatus,
- ttm.authorize_count authorizeCount ,ttm.end_count endCount,ttm.accept_count acceptCount,a.commodity_price commodityPrice,a.commodity_quantity commodityQuantity
- from t_order_task a left join business_project b on a.commodity_id=b.id left join business_category c on b.cid=c.id
- left join admin d on a.task_receiver=d.id left join t_order_new e on a.order_no=e.order_no
- left join department h on e.order_dep=h.id left join user f on e.buyer_id=f.id LEFT JOIN t_task_mid ttm ON a.id=ttm.tid
- left join admin g on e.salesman_id=g.id
- where a.id= #{id,jdbcType=VARCHAR}
- </select>
- <select id="selectBySuperId" resultType="com.goafanti.common.model.TOrderTask">
- select super_id as superId,min(task_status) as taskStatus,min(project_status) as projectStatus,max(main) as main from t_order_task
- where super_id = #{superId,jdbcType=VARCHAR} group by super_id
- </select>
- <select id="selectTaskHoursListByPage" resultType="com.goafanti.order.bo.TOrderTaskListBo">
- select a.id,a.commodity_name as taskName,a.order_no as orderNo,c.cname,a.receiver_name as receiverName,dep.name as depName,a.project_status projectStatus,
- a.task_status as taskStatus,f.nickname as userName,ifnull(g.hours,0) as hours,a.commodity_quantity as commodityQuantity,a.commodity_price commodityPrice,
- e.contract_no as contractNo,date_format(e.create_time,'%Y-%m-%d %H:%i:%S')as creteTime,date_format(e.sign_time,'%Y-%m-%d')as signTime,a.outsource,
- date_format(a.task_distribution_time,'%Y-%m-%d %H:%i:%S')taskDate, date_format(a.task_end_time,'%Y-%m-%d')taskEndTime,tm.salesman_name salesmanName,
- a.split_status splitStatus, a.split_super splitSuper, a.split_id splitId,ifnull(ttm.cost_amount,0) costAmount,ifnull(ttm.party_amount,0) partyAmount
- from t_order_task a left join business_project b on a.commodity_id=b.id left join business_category c on b.cid=c.id
- left join t_order_new e on a.order_no=e.order_no left join department dep on e.order_dep=dep.id
- left join user f on e.buyer_id=f.id left join (select tid,sum(hours)hours from task_hours_count group by tid) g on a.id=g.tid
- left join t_order_mid tm on a.order_no=tm.order_no left join t_task_mid ttm on a.id=ttm.tid
- where e.delete_sign =0 and a.super_id is null and a.split_status in(0,2)
- <if test="shiroType == 1 and aid !=null">
- and tm.finance_id= #{aid,jdbcType=VARCHAR}
- </if>
- <if test="shiroType == 2 and aid !=null">
- and tm.finance_id in (select id from admin where superior_id= #{aid,jdbcType=VARCHAR})
- </if>
- <if test="name != null">
- and f.nickname like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
- </if>
- <if test="cid != null">
- and b.cid = #{cid,jdbcType=VARCHAR}
- </if>
- <if test="outsource != null">
- and a.outsource = #{outsource,jdbcType=INTEGER}
- </if>
- <if test="depId != null">
- and e.order_dep = #{depId,jdbcType=VARCHAR}
- </if>
- <if test="contractNo != null">
- and e.contract_no like CONCAT('%',#{contractNo,jdbcType=VARCHAR},'%')
- </if>
- <if test="orderNo != null">
- and e.order_no like CONCAT('%',#{orderNo,jdbcType=VARCHAR},'%')
- </if>
- <if test="taskId != null">
- and a.id= #{taskId,jdbcType=VARCHAR}
- </if>
- <if test="starTime !=null and endTime !=null">
- and e.sign_time between #{starTime,jdbcType=VARCHAR} and #{endTime,jdbcType=VARCHAR}
- </if>
- order by a.task_start_time desc,e.create_time desc
- <if test="page_sql!=null">
- ${page_sql}
- </if>
- </select>
- <select id="selectTaskHoursListCount" resultType="java.lang.Integer">
- select count(*) from t_order_task a left join business_project b on a.commodity_id=b.id left join business_category c on b.cid=c.id
- left join t_order_new e on a.order_no=e.order_no left join user f on e.buyer_id=f.id left join t_order_mid tm on a.order_no=tm.order_no
- where e.delete_sign =0 and a.super_id is null and a.split_status in(0,2)
- <if test="shiroType == 1 and aid !=null">
- and tm.finance_id= #{aid,jdbcType=VARCHAR}
- </if>
- <if test="shiroType == 2 and aid !=null">
- and tm.finance_id in (select id from admin where superior_id= #{aid,jdbcType=VARCHAR})
- </if>
- <if test="name != null">
- and f.nickname like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
- </if>
- <if test="outsource != null">
- and a.outsource = #{outsource,jdbcType=INTEGER}
- </if>
- <if test="cid != null">
- and b.cid = #{cid,jdbcType=VARCHAR}
- </if>
- <if test="depId != null">
- and e.order_dep = #{depId,jdbcType=VARCHAR}
- </if>
- <if test="contractNo != null">
- and e.contract_no like CONCAT('%',#{contractNo,jdbcType=VARCHAR},'%')
- </if>
- <if test="orderNo != null">
- and e.order_no like CONCAT('%',#{orderNo,jdbcType=VARCHAR},'%')
- </if>
- <if test="taskId != null">
- and a.id= #{taskId,jdbcType=VARCHAR}
- </if>
- <if test="starTime !=null and endTime !=null">
- and e.sign_time between #{starTime,jdbcType=VARCHAR} and #{endTime,jdbcType=VARCHAR}
- </if>
- </select>
- <select id="selectTaskListByPage" resultType="com.goafanti.order.bo.TOrderTaskListBo">
- select a.id,a.commodity_name as taskName,a.order_no as orderNo,c.cname,d.name as receiverName,
- a.project_status as projectStatus,a.task_status as taskStatus,date_format(a.task_distribution_time,'%Y-%m-%d') as taskDate,
- a.commodity_quantity as commodityQuantity,f.nickname as userName,h.name as depName,ifnull(i.alreadyNumber,0)as alreadyNumber,
- a.split_status splitStatus,a.split_super splitSuper, a.split_id splitId
- from (select task_id from t_task_log a where task_receiver=#{aid ,jdbcType=VARCHAR} UNION select task_id from t_task_log a
- where task_allocator=#{aid ,jdbcType=VARCHAR}) x left join t_order_task a on x.task_id=a.id
- left join business_project b on a.commodity_id=b.id left join business_category c on b.cid=c.id
- left join admin d on a.task_receiver=d.id left join t_order_new e on a.order_no=e.order_no
- left join user f on e.buyer_id=f.id left join department h on e.order_dep=h.id
- left join (select task_id , sum(already_number) as alreadyNumber from task_progress group by task_id) i on a.id=i.task_id
- where e.delete_sign in(0,2,3)
- <if test="orderNo != null">
- and a.order_no= #{orderNo,jdbcType=VARCHAR}
- </if>
- <if test="name != null">
- and f.nickname like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
- </if>
- <if test="orderNo != null">
- and a.order_no= #{orderNo,jdbcType=VARCHAR}
- </if>
- <if test="depId != null">
- and e.order_dep= #{depId ,jdbcType=VARCHAR}
- </if>
- <if test="taskId != null">
- and (a.id= #{taskId,jdbcType=VARCHAR} or a.split_super= #{taskId,jdbcType=VARCHAR})
- </if>
- <if test="taskStatus != null">
- and a.task_status= #{taskStatus,jdbcType=INTEGER}
- </if>
- <if test="adminName != null">
- and d.name like CONCAT('%', #{adminName,jdbcType=VARCHAR},'%')
- </if>
- order by a.task_distribution_time desc
- <if test="page_sql!=null">
- ${page_sql}
- </if>
- </select>
- <select id="selectTaskListCount" resultType="java.lang.Integer">
- select count(*)
- from (select task_id from t_task_log a where task_receiver=#{aid ,jdbcType=VARCHAR} UNION select task_id from t_task_log a
- where task_allocator=#{aid ,jdbcType=VARCHAR}) x left join t_order_task a on x.task_id=a.id
- left join business_project b on a.commodity_id=b.id
- left join business_category c on b.cid=c.id
- left join admin d on a.task_receiver=d.id
- left join t_order_new e on a.order_no=e.order_no
- left join user f on e.buyer_id=f.id
- left join department h on e.order_dep=h.id
- left join (select task_id , sum(already_number) as alreadyNumber from task_progress group by task_id) i on a.id=i.task_id
- where e.delete_sign in(0,2,3)
- <if test="orderNo != null">
- and a.order_no= #{orderNo,jdbcType=VARCHAR}
- </if>
- <if test="name != null">
- and f.nickname like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
- </if>
- <if test="depId != null">
- and e.order_dep= #{depId ,jdbcType=VARCHAR}
- </if>
- <if test="orderNo != null">
- and a.order_no= #{orderNo,jdbcType=VARCHAR}
- </if>
- <if test="taskId != null">
- and (a.id= #{taskId,jdbcType=VARCHAR} or a.split_super= #{taskId,jdbcType=VARCHAR})
- </if>
- <if test="taskStatus != null">
- and a.task_status= #{taskStatus,jdbcType=INTEGER}
- </if>
- <if test="adminName != null">
- and d.name like CONCAT('%', #{adminName,jdbcType=VARCHAR},'%')
- </if>
- </select>
- <!-- 根据订单编号获得所有的任务负责人 -->
- <select id="getReceiverByOid" resultType="com.goafanti.order.bo.TOrderTaskBo">
- select distinct task_receiver, a.name, a.email, t.id, t.project_status from t_order_task t
- inner join admin a on t.task_receiver = a.id
- where order_no = #{orderNo,jdbcType=VARCHAR} and task_status > 0 and super_id is null
- </select>
- <update id="updateDimissionTransfer" parameterType="java.lang.String">
- update t_order_task set task_allocator= #{aid,jdbcType=VARCHAR},task_receiver= #{transferId,jdbcType=VARCHAR}
- <if test="type==0">
- ,consultant_id=#{transferId,jdbcType=VARCHAR}
- </if>
- <if test="type==1">
- ,manager_id=#{transferId,jdbcType=VARCHAR}
- </if>
- <if test="type==3">
- ,consultant_id= null
- </if>
- <if test="type==1">
- ,manager_id= null
- </if>
- where task_receiver=#{aid,jdbcType=VARCHAR}
- </update>
- <select id="selectEstimateCost" resultType="java.lang.String">
- select ifnull(sum(a.commodity_quantity * ifnull(b.price,0)),0) from t_order_task a
- left join business_project b on a.commodity_id=b.id
- where order_no= #{orderNo}
- </select>
- <select id="listNameByDepAndName" resultType="java.lang.String">
- select
- <if test="type ==0">
- consultant_id
- </if>
- <if test="type ==1">
- manager_id
- </if>
- from t_order_task
- where order_no= #{orderNo}
- group by
- <if test="type ==0">
- consultant_id
- </if>
- <if test="type ==1">
- manager_id
- </if>
- </select>
- <select id="splitProjectList" resultType="com.goafanti.order.bo.TOrderTaskListBo">
- select a.id,a.commodity_name as taskName,a.order_no as orderNo,c.cname,d.name as receiverName,a.project_status as projectStatus,d.contact_mobile receiverMobile,
- e.contract_no contractNo,a.task_receiver taskReceiver, a.task_status as taskStatus,date_format(a.task_distribution_time,'%Y-%m-%d') as taskDate,
- a.commodity_quantity as commodityQuantity,e.approval,l.refund_status outsourceStatus, ifnull(i.alreadyNumber,0) as alreadyNumber,a.task_comment taskComment ,
- f.nickname as userName,h.name as depName, j.name as outsourceName ,ifnull(k.hours,0) hours,a.split_status splitStatus,a.split_super splitSuper,a.member_type memberType,
- date_format(a.split_time,'%Y-%m-%d %H:%i:%S') splitTimes,ad.name splitAname,a.split_id splitId,a.patent_type patentType,a.picture_url pictureUrl,
- ttm.service_life serviceLife,ttm.service_year serviceYear ,ttm.year_sum yearSum ,ttm.contract_term contractTerm,a.process_status processStatus
- from t_order_task a left join business_project b on a.commodity_id=b.id left join business_category c on b.cid=c.id
- left join admin d on a.task_receiver=d.id left join t_order_new e on a.order_no=e.order_no left join user f on e.buyer_id=f.id
- left join department h on e.order_dep=h.id left join (select task_id , sum(already_number) as alreadyNumber
- from task_progress group by task_id) i on a.id=i.task_id left join (select order_no,max(name)as name
- from outsource_organization group by order_no) j on a.order_no=j.order_no left join task_hours_count k on a.id=k.tid and a.task_receiver=k.aid
- left join t_order_outsource l on a.id=l.tid left join admin ad on ad.id=a.split_aid left join t_task_member ttm on a.id=ttm.tid
- where e.order_status in (0,1,2,3,4,5)
- and split_status =2 and a.split_super= #{tid}
- <if test="type == 1">
- and a.process_status in(0,3)
- </if>
- order by split_id
- </select>
- <select id="selectByidGetCname" resultType="java.lang.String">
- select b.cname from business_project a left join business_category b on a.cid =b.id
- where a.id= #{pid}
- </select>
- <update id="updateByOutsourceToOrderNo">
- update t_order_task set outsource= #{type} where order_no= #{orderNo}
- </update>
- <select id="getLockId" resultType="java.lang.String">
- select id from user_lock_release a left join (select commodity_id from t_order_task
- where order_no = #{orderNo} GROUP by commodity_id ) b on a.business_project_id =b.commodity_id
- where a.`type` =1 and a.aid = #{aid} and a.uid = #{uid}
- </select>
- <select id="selectProjectStatisticsListByPage" resultType="com.goafanti.order.bo.OutProjectStatistics">
- select date_format( a.task_distribution_time, '%Y-%m-%d %H:%i:%S' ) distributionTime ,d.name province ,c.name depName,e.salesman_name salesmanName,
- b.contract_no contractNo ,b.order_no orderNo ,e.buyer_name userName,bc.cname ,a.commodity_name pname,ta.name techName,td.name techDepName,
- a.project_status projectStatus,a.id,b.order_remarks orderRemarks,
- a.set_up_status setUpStatus , date_format( a.set_up_time , '%Y-%m-%d' ) setUpTime ,a.spot_check_status spotCheckStatus ,b.contact_mobile contactMobile ,
- b.legal_person_tel legalPersonTel , a.certificate_number certificateNumber,a.declaration_batch declarationBatch,
- date_format(a.licence_time, '%Y-%m-%d' ) licenceTime,
- a.commodity_quantity commodityQuantity ,ttm.certificates_count certificatesCount,ttm.urgent_day urgentDay ,ttm.if_material ifMaterial,
- date_format(tp.licence_time, '%Y-%m-%d' ) licenceTime,
- a.certificate_number certificateNumber,ttm.cost_amount costAmount ,
- (a.commodity_price-ttm.cost_amount)profit,
- ttm.certificates_count certificatesCount,a.high_tech_status highTechStatus,
- tp.patent_name patentName ,tp.patent_no patentNo ,date_format(tp.accept_time, '%Y-%m-%d ' ) acceptTime ,
- date_format(tp.licence_time, '%Y-%m-%d' ) licenceTime ,date_format(tp.authorize_time, '%Y-%m-%d ' ) authorizeTime,
- ttm.reject_count rejectCount ,ttm.cost_amount costAmount ,(a.commodity_price-ttm.cost_amount)profit,
- tm.service_life serviceLife,tm.service_year serviceyear, tm.year_sum yearsum,tm.contract_term contractTerm,
- a.commodity_quantity commodityQuantity , a.commodity_price commodityPrice ,a.special_comment specialComment,a.task_comment taskComment
- from t_order_task a left join t_order_new b on a.order_no =b.order_no left join department c on b.order_dep =c.id left join district_glossory d on c.province=d.id
- left join task_progress tp on a.id=tp.task_id
- left join t_task_member tm on a.id=tm.tid
- left join t_order_mid e on b.order_no =e.order_no left join business_project bp on a.commodity_id =bp.id left join business_category bc on bp.cid =bc.id
- left join t_task_mid ttm on a.id=ttm.tid left join admin ta on a.task_receiver =ta.id left join department td on ta.department_id =td.id
- <if test="screen ==6">
- right join (select tid ,accept_count sls from t_task_mid where accept_count > 0)tj on a.id=tj.tid
- </if>
- <if test="screen ==7">
- right join (select tid ,end_count wjs from t_task_mid where end_count > 0)tj on a.id=tj.tid
- </if>
- <if test="screen ==8">
- right join (select tid ,authorize_count sqs from t_task_mid where authorize_count > 0)tj on a.id=tj.tid
- </if>
- <if test="screen ==9">
- right join (select tid ,reject_count bhs from t_task_mid where reject_count > 0)tj on a.id=tj.tid
- </if>
- <if test="screen ==10">
- right join (select tid ,certificates_count xzs from t_task_mid where certificates_count > 0)tj on a.id=tj.tid
- </if>
- <if test="screen ==11">
- right join (select tid ,apply_count sqs,reject_count bhs,certificates_count xzs from t_task_mid
- where apply_count > 0)tj on a.id=tj.tid
- </if>
- where a.split_status in (0,2) and b. delete_sign in (0,2)
- <!-- 筛选项 0库存 1派单 2完成 3立项 4抽查 5未通过 6受理 7完结 8授权 9驳回 10下证 11申请 -->
- <if test="screen ==0">
- and a.project_status in(0,1,2,3)
- </if>
- <if test="screen ==2">
- and a.project_status > 3
- </if>
- <if test="screen ==3">
- and a.set_up_status =1
- </if>
- <if test="screen ==4">
- and a.spot_check_status in (1,2)
- </if>
- <if test="screen ==5">
- and a.spot_check_status =1
- </if>
- <if test="screen ==12">
- and a.publicity_time is not null
- </if>
- <if test="startDate != null and endDate != null">
- and a.task_distribution_time between #{startDate} and #{endDate}
- </if>
- <if test="province !=null">
- and c.province = #{province}
- </if>
- <if test="projectId !=null">
- and a.commodity_id = #{projectId}
- </if>
- <if test="deps != null">
- and b.order_dep in
- <foreach close=")" collection="deps" item="dep" open="(" separator=",">
- #{dep}
- </foreach>
- </if>
- <if test="thchDeps != null">
- and td.id in
- <foreach close=")" collection="thchDeps" item="thchDep" open="(" separator=",">
- #{thchDep}
- </foreach>
- </if>
- <if test="projectStatus !=null">
- and bp.cid= #{projectStatus}
- </if>
- <if test="projectType !=null">
- and bp.type= #{projectType}
- </if>
- <if test="orderNo !=null">
- and b.order_no = #{orderNo}
- </if>
- <if test="contractNo !=null">
- and b.contract_no = #{contractNo}
- </if>
- <if test="userName !=null">
- and e.buyer_name like concat('%', #{userName},'%')
- </if>
- <if test="declarationBatch !=null">
- and a.declaration_batch = #{declarationBatch}
- </if>
- <if test="projectSituation !=null">
- and a.status = #{projectSituation}
- </if>
- <if test=" projectAmount !=null and projectAmount != 9">
- and a.commodity_price >= #{amountStart} and a.commodity_price < #{amountEnd}
- </if>
- <if test=" projectAmount == 9">
- and a.commodity_price >= #{amountStart}
- </if>
- <if test="page_sql!=null">
- ${page_sql}
- </if>
- </select>
- <select id="selectProjectStatisticsCount" resultType="java.lang.Integer">
- select count(*)
- from t_order_task a left join t_order_new b on a.order_no =b.order_no
- <if test="province !=null">
- left join department c on b.order_dep =c.id
- </if>
- <if test="userName !=null">
- left join t_order_mid e on b.order_no =e.order_no
- </if>
- <if test="projectStatus !=null or projectType !=null">
- left join business_project bp on a.commodity_id =bp.id
- </if>
- <if test="thchDeps !=null">
- left join admin ta on a.task_receiver =ta.id
- left join department td on ta.department_id =td.id
- </if>
- <if test="status==3 or status==4">
- left join task_progress tp on a.id=tp.task_id
- </if>
- <if test="screen ==6">
- right join (select tid ,accept_count sls from t_task_mid where accept_count > 0)tj on a.id=tj.tid
- </if>
- <if test="screen ==7">
- right join (select tid ,end_count wjs from t_task_mid where end_count > 0)tj on a.id=tj.tid
- </if>
- <if test="screen ==8">
- right join (select tid ,authorize_count sqs from t_task_mid where authorize_count > 0)tj on a.id=tj.tid
- </if>
- <if test="screen ==9">
- right join (select tid ,reject_count bhs from t_task_mid where reject_count > 0)tj on a.id=tj.tid
- </if>
- <if test="screen ==10">
- right join (select tid ,certificates_count xzs from t_task_mid where certificates_count > 0)tj on a.id=tj.tid
- </if>
- <if test="screen ==11">
- right join (select tid ,apply_count sqs,reject_count bhs,certificates_count xzs from t_task_mid
- where apply_count > 0)tj on a.id=tj.tid
- </if>
- where a.split_status in (0,2) and b. delete_sign in (0,2)
- <!-- 筛选项 0库存 1派单 2完成 3立项 4抽查 5未通过 6受理 7完结 8授权 9驳回 10下证 11申请 -->
- <if test="screen ==0">
- and a.project_status in(0,1,2,3)
- </if>
- <if test="screen ==2">
- and a.project_status > 3
- </if>
- <if test="screen ==3">
- and a.set_up_status =1
- </if>
- <if test="screen ==4">
- and a.spot_check_status in (1,2)
- </if>
- <if test="screen ==5">
- and a.spot_check_status =1
- </if>
- <if test="screen ==12">
- and a.publicity_time is not null
- </if>
- <if test="startDate != null and endDate != null">
- and a.task_distribution_time between #{startDate} and #{endDate}
- </if>
- <if test="province !=null">
- and c.province = #{province}
- </if>
- <if test="projectId !=null">
- and a.commodity_id = #{projectId}
- </if>
- <if test="deps != null">
- and b.order_dep in
- <foreach close=")" collection="deps" item="dep" open="(" separator=",">
- #{dep}
- </foreach>
- </if>
- <if test="thchDeps != null">
- and td.id in
- <foreach close=")" collection="thchDeps" item="thchDep" open="(" separator=",">
- #{thchDep}
- </foreach>
- </if>
- <if test="projectStatus !=null">
- and bp.cid= #{projectStatus}
- </if>
- <if test="projectType !=null">
- and bp.type= #{projectType}
- </if>
- <if test="orderNo !=null">
- and b.order_no = #{orderNo}
- </if>
- <if test="contractNo !=null">
- and b.contract_no = #{contractNo}
- </if>
- <if test="userName !=null">
- and e.buyer_name like concat('%', #{userName},'%')
- </if>
- <if test="declarationBatch !=null">
- and a.declaration_batch = #{declarationBatch}
- </if>
- <if test="projectSituation !=null">
- and a.status = #{projectSituation}
- </if>
- <if test=" projectAmount !=null and projectAmount != 9">
- and a.commodity_price >= #{amountStart} and a.commodity_price < #{amountEnd}
- </if>
- <if test=" projectAmount == 9">
- and a.commodity_price >= #{amountStart}
- </if>
- </select>
- <select id="selectProvincialStatisticsListByPage" resultType="com.goafanti.order.bo.OutProvincialStatistics">
- select z.cid bpId, bc.cname projectStatus,z.dispatch_province province,dg.name provinceName,
- z.duty_dep thchDepId,d.name thchDepName,z.distributeCount,z.stockCount,z.completeCount,z.publicityCount,
- z.setUpCount,z.spotCheckCount,z.failCount,z.certificatesCount,z.acceptCount,z.endCount,z.authorizeCount,
- z.rejectCount,z.applyCount,z.amountCount,z.costAmount,z.profit
- from ( select y.dispatch_province, y.cid, y.duty_dep, sum(y.dispatch_count)distributeCount,
- sum(y.stock_count)stockCount, sum(y.complete_count)completeCount,sum(y.promulgate_count)publicityCount,
- sum(y.set_up_count)setUpCount,sum(y.spot_check_count)spotCheckCount,sum(y.fail_count)failCount,
- sum(y.certificates_count)certificatesCount,sum(y.accept_count)acceptCount,sum(y.end_count)endCount,
- sum(y.authorize_count)authorizeCount,sum(y.reject_count)rejectCount, sum(y.apply_count)applyCount,
- sum(y.commodity_price)amountCount,sum(y.cost_amount)costAmount, sum(y.commodity_price-y.cost_amount)profit
- from(select b.dispatch_province, bp.cid, b.duty_dep,
- b.stock_count,b.dispatch_count,b.promulgate_count, b.complete_count,b.set_up_count ,b.spot_check_count ,
- b.fail_count ,b.certificates_count, b.accept_count,b.end_count,b.authorize_count,b.reject_count,b.apply_count,
- a.commodity_price ,b.cost_amount, a.task_distribution_time from t_order_task a
- left join t_task_mid b on a.id=b.tid left join business_project bp on a.commodity_id =bp.id
- left join t_order_new ton on a.order_no =ton .order_no
- where a.task_status in(1,2,3) and ton.delete_sign in (0,2)
- <if test="projectId !=null">
- and a.commodity_id = #{projectId}
- </if>
- <if test="province !=null">
- and b.dispatch_province = #{province}
- </if>
- <if test="thchDeps !=null">
- and b.duty_dep in
- <foreach close=")" collection="thchDeps" item="depId" open="(" separator=",">
- #{depId}
- </foreach>
- </if>
- <if test="projectType !=null">
- and bp.`type` = #{projectType}
- </if>
- <if test="projectStatus !=null">
- and bp.cid= #{projectStatus}
- </if>
- <if test="startDate != null and endDate != null">
- and a.task_distribution_time between #{startDate} and #{endDate}
- </if>
- )y
- group by y.dispatch_province, y.cid, y.duty_dep )z
- left join business_category bc on z.cid=bc.id left join district_glossory dg on z.dispatch_province=dg.id
- left join department d on z.duty_dep=d.id
- <if test="page_sql!=null">
- ${page_sql}
- </if>
- </select>
- <select id="selectProvincialStatisticsCount" resultType="java.lang.Integer">
- select count(*)
- from(select y.dispatch_province from (select bp.cid,
- b.dispatch_province,b.duty_dep,a.cname,b.stock_count,b.dispatch_count,b.promulgate_count,
- b.complete_count,b.set_up_count ,b.spot_check_count ,b.fail_count ,b.certificates_count,
- b.accept_count,b.end_count,b.authorize_count,b.reject_count,b.apply_count,
- a.commodity_price ,b.cost_amount, a.task_distribution_time
- from t_order_task a
- left join t_task_mid b on a.id=b.tid
- left join business_project bp on a.commodity_id =bp.id
- left join t_order_new ton on a.order_no =ton .order_no
- where a.task_status in(1,2,3) and ton.delete_sign in (0,2)
- <if test="projectId !=null">
- and a.commodity_id = #{projectId}
- </if>
- <if test="province !=null">
- and b.dispatch_province = #{province}
- </if>
- <if test="thchDeps !=null">
- and b.duty_dep in
- <foreach close=")" collection="thchDeps" item="depId" open="(" separator=",">
- #{depId}
- </foreach>
- </if>
- <if test="projectType !=null">
- and bp.`type` = #{projectType}
- </if>
- <if test="projectStatus !=null">
- and bp.cid= #{projectStatus}
- </if>
- <if test="startDate != null and endDate != null">
- and a.task_distribution_time between #{startDate} and #{endDate}
- </if>
- )y group by y.dispatch_province, y.cid, y.duty_dep )x
- </select>
- <select id="managerSelectByPage" resultType="com.goafanti.order.bo.managerListBo">
- select a.id,a.task_distribution_time taskDistributionTime ,tm.province_name provinceName,tm.dep_name depName,
- tm.salesman_name salesmanName, b.contract_no contractNo ,b.order_no orderNo,tm.buyer_name UserName,a.cname ,
- a.commodity_name commodityName,a.commodity_quantity commodityQuantity,dep.name techDepName,a.receiver_name techName,
- a.project_status projectStatus ,a.commodity_price commodityPrice ,a.special_comment specialComment
- from (select task_id from t_task_log a where task_receiver=#{aid}
- UNION select task_id from t_task_log a where task_allocator=#{aid}) x
- left join t_order_task a on x.task_id=a.id left join t_order_new b on a.order_no =b.order_no
- left join t_order_mid tm on b.order_no=tm.order_no left join admin ad on a.task_receiver =ad.id
- left join department dep on ad.department_id =dep.id left join business_project bp on a.commodity_id =bp.id
- where 1=1
- <if test="orderNo !=null">
- and a.order_no = #{orderNo}
- </if>
- <if test="contractNo !=null">
- and b.contract_no = #{contractNo}
- </if>
- <if test="name !=null">
- and tm.buyer_name like CONCAT('%',#{name},'%')
- </if>
- <if test="cid !=null">
- and bp.cid =#{cid}
- </if>
- <if test="projectType !=null">
- and bp.`type` =#{projectType}
- </if>
- <if test="depId !=null">
- and b.order_dep =#{depId}
- </if>
- <if test="techDepId !=null">
- and ad.department_id =#{techDepId}
- </if>
- <if test="declarationBatch !=null">
- and a.declaration_batch =#{declarationBatch}
- </if>
- <if test="commodityPrice !=null">
- and a.commodity_price =#{commodityPrice}
- </if>
- <if test="startTime !=null and endTime !=null">
- and a.task_distribution_time between #{startTime} and #{endTime}
- </if>
- <if test="page_sql!=null">
- ${page_sql}
- </if>
- </select>
- <select id="managerSelectCount" resultType="java.lang.Integer">
- select count(*)
- from (select task_id from t_task_log a where task_receiver= #{aid} UNION
- select task_id from t_task_log a where task_allocator= #{aid}) x
- left join t_order_task a on x.task_id=a.id left join t_order_new b on a.order_no =b.order_no
- left join t_order_mid tm on b.order_no=tm.order_no left join admin ad on a.task_receiver =ad.id
- left join department dep on ad.department_id =dep.id left join business_project bp on a.commodity_id =bp.id
- where 1=1
- <if test="orderNo !=null">
- and a.order_no = #{orderNo}
- </if>
- <if test="contractNo !=null">
- and b.contract_no = #{contractNo}
- </if>
- <if test="name !=null">
- and tm.buyer_name like CONCAT('%',#{name},'%')
- </if>
- <if test="cid !=null">
- and bp.cid =#{cid}
- </if>
- <if test="projectType !=null">
- and bp.`type` =#{projectType}
- </if>
- <if test="depId !=null">
- and b.order_dep =#{depId}
- </if>
- <if test="techDepId !=null">
- and ad.department_id =#{techDepId}
- </if>
- <if test="declarationBatch !=null">
- and a.declaration_batch =#{declarationBatch}
- </if>
- <if test="commodityPrice !=null">
- and a.commodity_price =#{commodityPrice}
- </if>
- <if test="startTime !=null and endTime !=null">
- and a.task_distribution_time between #{startTime} and #{endTime}
- </if>
- </select>
- <resultMap id="userOrder" type="com.goafanti.common.bo.UserOrderTask">
- <id column="orderNo" jdbcType="VARCHAR" property="orderNo" />
- <collection ofType="com.goafanti.common.bo.UserTask" property="list">
- <id column="id" jdbcType="VARCHAR" property="id" />
- <result column="commodityName" jdbcType="VARCHAR" property="commodityName" />
- </collection>
- </resultMap>
- <select id="selectUidByproject" resultMap="userOrder">
- select a.order_no orderNo ,b.id,b.commodity_name commodityName from t_order_new a
- left join t_order_task b on a.order_no =b.order_no
- where a.buyer_id = #{uid}
- </select>
- <select id="selectProjectCheck" resultType="com.goafanti.order.bo.OutProjectCheck">
- select a.id,a.commodity_name commodityName ,b.order_no orderNo,b.contract_no contractNo,a.commodity_quantity commodityQuantity,
- c.buyer_name userName ,e.cname ,a.task_distribution_time taskDistributionTime,f.name depName ,a.check_status checkStatus ,
- a.main ,a.commodity_price commodityPrice ,a.task_comment taskComment ,a.official_cost officialCost,a.cost_reduction costReduction,
- a.patent_type patentType
- from t_order_task a left join t_order_new b on a.order_no =b.order_no
- left join t_order_mid c on a.order_no =c.order_no
- left join business_project d on a.commodity_id =d.id
- left join business_category e on d.cid =e.id
- left join department f on b.order_dep =f.id
- where check_status =1
- <if test="aid !=null">
- and b.salesman_id = #{aid}
- </if>
- <if test="name !=null">
- and c.buyer_name like concat('%',#{name},'%')
- </if>
- <if test="orderNo !=null">
- and a.order_no = #{orderNo}
- </if>
- <if test="contractNo !=null">
- and b.contract_no = #{contractNo}
- </if>
- <if test="pname !=null">
- and a.commodity_name like concat('%',#{pname},'%')
- </if>
- <if test="deps !=null">
- and b.order_dep in
- <foreach close=")" collection="deps" item="depId" open="(" separator=",">
- #{depId}
- </foreach>
- </if>
- <if test="page_sql!=null">
- ${page_sql}
- </if>
- </select>
- <select id="countProjectCheck" resultType="java.lang.Integer">
- select count(*)
- from t_order_task a left join t_order_new b on a.order_no =b.order_no
- left join t_order_mid c on a.order_no =c.order_no
- left join business_project d on a.commodity_id =d.id
- left join business_category e on d.cid =e.id
- left join department f on b.order_dep =f.id
- where check_status =1
- <if test="aid !=null">
- and b.salesman_id = #{aid}
- </if>
- <if test="name !=null">
- and c.buyer_name like concat('%',#{name},'%')
- </if>
- <if test="orderNo !=null">
- and a.order_no = #{orderNo}
- </if>
- <if test="contractNo !=null">
- and b.contract_no = #{contractNo}
- </if>
- <if test="pname !=null">
- and a.commodity_name like concat('%',#{pname},'%')
- </if>
- <if test="deps !=null">
- and b.order_dep in
- <foreach close=")" collection="deps" item="depId" open="(" separator=",">
- #{depId}
- </foreach>
- </if>
- </select>
- <update id="resstPayment">
- update t_order_task a ,t_task_mid c
- set c.party_amount =0,c.cost_amount =0
- where a.id= #{id} and a.id=c.tid
- </update>
- <update id="updateAddCostAmount">
- update t_task_mid
- set cost_amount =cost_amount + #{cost}
- where tid= #{tid}
- </update>
- <select id="selectAidByParam" resultType="com.goafanti.common.bo.OrderOperator">
- select a.id tid,b.order_no orderNo ,b.salesman_id salesmanId,b.finance_id financeId ,a.task_receiver techId,
- b.salesman_name salesmanName ,b.finance_name financeName ,d.name techName,b.buyer_name buyerName
- from t_order_task a left join t_order_mid b on a.order_no=b.order_no
- left join t_task_mid c on a.id =c.tid left join admin d on a.task_receiver=d.id
- where 1=1
- <if test="tid !=null">
- and a.id= #{tid}
- </if>
- </select>
- <select id="selectByTidGetDtails" resultType="com.goafanti.organization.bo.ProjectTypePuls">
- select a.id,a.official_cost officialCost,a.cost_reduction costReduction ,a.commodity_quantity quantity ,a.patent_type patentType,b.patent_name_type projectType,
- c.amount officialAmount,c.proportion85,b.patent_type outPatentType from t_order_task a left join t_order_outsource b on a.id=b.tid
- left join official_fee_price c on a.patent_type =c.patent_type and b.patent_name_type =c.`type`
- where a.id= #{tid}
- </select>
- <select id="highNewRetrialStatistics" resultType="com.goafanti.order.bo.OutHighNewRetrialStatistics">
- select t1. province,dg.name provinceName ,t1.quantity,t1.pass,t1.notPass,ifnull(t1.signBacks,0) signBacks
- from (SELECT e.province ,sum(1) quantity,sum(if(a.project_status=10,1,0))pass,sum(if(a.project_status != 10,1,0))notPass,
- sum(ttm.high_new_retrial)signBacks
- from t_order_task a left join business_project b on a.commodity_id =b.id left join t_task_mid ttm on a.id=ttm.tid
- left join t_order_new c on a.order_no =c.order_no left join admin d on c.salesman_id =d.id
- left join department e on d.department_id =e.id where b.`type` =5 and c.process_status >4 and c.delete_sign in (0,2)
- <if test="depId!=null">
- and e.id= #{depId}
- </if>
- <if test="startDate!=null and endDate!=null">
- and c.sign_time between #{startDate} and #{endDate}
- </if>
- group by e.province )t1 left join district_glossory dg on t1.province=dg.id
- </select>
- <select id="getHighNewRetrial" resultType="java.lang.Integer">
- select count(*) from t_order_new a left join t_order_new b on a.buyer_id =b.buyer_id
- left join t_order_task c on b.order_no =c.order_no left join business_project d on c.commodity_id =d.id
- where a.order_no =#{orderNo} and b.create_time < a.create_time and d.`type` =5
- </select>
- <select id="highNewRetrialList" resultType="com.goafanti.order.bo.OutHighNewRetrialList">
- select t1.province,dg.name provinceName,t1.salesman_id aid,t1.name name,t1.quantity,t1.pass,t1.notPass,t1.signBacks
- from (SELECT e.province,c.salesman_id,d.name ,sum(1) quantity,sum(if(a.project_status=10,1,0))pass,
- sum(if(a.project_status != 10,1,0))notPass, sum(ttm.high_new_retrial)signBacks
- from t_order_task a left join business_project b on a.commodity_id =b.id left join t_task_mid ttm on a.id=ttm.tid
- left join t_order_new c on a.order_no =c.order_no left join admin d on c.salesman_id =d.id
- left join department e on d.department_id =e.id where b.`type` =5 and c.process_status >4 and c.delete_sign in (0,2)
- <if test="province!=null">
- and e.province= #{province}
- </if>
- <if test="depId!=null">
- and e.id= #{depId}
- </if>
- <if test="startDate!=null and endDate!=null">
- and c.sign_time between #{startDate} and #{endDate}
- </if>
- <if test="aid !=null">
- and c.salesman_id = #{aid}
- </if>
- <if test="depId !=null">
- and d.department_id = #{depId}
- </if>
- group by e.province ,c.salesman_id ,d.name )t1 left join district_glossory dg on t1.province=dg.id
- order by
- <if test="sort==0">
- t1.pass
- </if>
- <if test="sort==1">
- t1.notPass
- </if>
- desc
- </select>
- <select id="findMemberList" resultType="com.goafanti.order.bo.OutMemberList">
- select a.id,b.contract_no contractNo,c.buyer_name userName,a.order_no orderNo,b.approval ,c.dep_name depName,
- c.salesman_name salesmanName,c.finance_name financeName,a.commodity_name projectName,a.member_type memberType,
- b.delete_sign deleteSign ,b.total_amount totalAmount ,b.sales_type salesType ,b.other,
- a.process_status status,a.commodity_id commodityId,a.commodity_name commodityName,
- a.commodity_quantity commodityQuantity,a.task_comment taskComment,a.picture_url pictureUrl,
- e.service_life serviceLife ,e.service_year serviceYear,e.year_sum yearSum
- from t_order_task a left join t_order_new b on a.order_no =b.order_no
- left join t_order_mid c on a.order_no =c.order_no
- left join t_task_member e on a.id=e.tid
- <if test="shiroType ==2">
- left join department d on b.order_dep =d.id
- </if>
- where b.delete_sign in (0,2) and b.approval in (0,1,2)
- and a.process_status in (1,2,3,4)
- <if test="shiroType ==1">
- and b.salesman_id = #{aid}
- </if>
- <if test="shiroType ==2">
- and d.finance_id = #{aid}
- </if>
- <if test="orderNo != null">
- and a.order_no = #{orderNo}
- </if>
- <if test="userName != null">
- and c.buyer_name like concat('%',#{userName},'%')
- </if>
- <if test="deps != null">
- and b.order_dep in
- <foreach close=")" collection="deps" item="dep" open="(" separator=",">
- #{dep}
- </foreach>
- </if>
- <if test="contractNo != null">
- and b.contract_no =#{contractNo}
- </if>
- <if test="salesmanId != null">
- and b.salesman_id =#{salesmanId}
- </if>
- <if test="projectName != null">
- and a.commodity_name like concat('%',#{projectName},'%')
- </if>
- <if test="amountStatus == 0">
- and b.total_amount < 10
- </if>
- <if test="amountStatus == 1">
- and b.total_amount between 10 and 20
- </if>
- <if test="amountStatus == 2">
- and b.total_amount between 20 and 30
- </if>
- <if test="amountStatus == 3">
- and b.total_amount between 30 and 40
- </if>
- <if test="amountStatus == 4">
- and b.total_amount > 40
- </if>
- <if test="approval != null and approval < 3">
- and b.approval = #{approval}
- </if>
- <if test="approval != null and approval ==4">
- and b.approval in (1,2)
- </if>
- <if test="status != null and status !=5">
- and a.process_status = #{status}
- </if>
- order by a.process_status
- <if test="page_sql!=null">
- ${page_sql}
- </if>
- </select>
- <select id="findMemberCount" resultType="java.lang.Integer">
- select count(*)
- from t_order_task a left join t_order_new b on a.order_no =b.order_no
- left join t_order_mid c on a.order_no =c.order_no
- <if test="shiroType ==2">
- left join department d on b.order_dep =d.id
- </if>
- where b.delete_sign in (0,2) and b.approval in (0,1,2)
- and a.process_status in (1,2,3,4)
- <if test="shiroType ==1">
- and b.salesman_id = #{aid}
- </if>
- <if test="shiroType ==2">
- and d.finance_id = #{aid}
- </if>
- <if test="orderNo != null">
- and a.order_no = #{orderNo}
- </if>
- <if test="userName != null">
- and c.buyer_name like concat('%',#{userName},'%')
- </if>
- <if test="deps != null">
- and b.order_dep in
- <foreach close=")" collection="deps" item="dep" open="(" separator=",">
- #{dep}
- </foreach>
- </if>
- <if test="contractNo != null">
- and b.contract_no =#{contractNo}
- </if>
- <if test="salesmanId != null">
- and b.salesman_id =#{salesmanId}
- </if>
- <if test="projectName != null">
- and a.commodity_name like concat('%',#{projectName},'%')
- </if>
- <if test="amountStatus == 1">
- and b.total_amount between 10 and 20
- </if>
- <if test="amountStatus == 2">
- and b.total_amount between 20 and 30
- </if>
- <if test="amountStatus == 3">
- and b.total_amount between 30 and 40
- </if>
- <if test="amountStatus == 4">
- and b.total_amount > 40
- </if>
- <if test="approval != null and approval < 3">
- and b.approval = #{approval}
- </if>
- <if test="approval != null and approval ==4">
- and b.approval in (1,2)
- </if>
- <if test="status != null and status !=5">
- and a.process_status = #{status}
- </if>
- </select>
- <select id="selectByAid" resultType="com.goafanti.common.model.TChangeTask">
- select b.id,b.cid from t_order_task a
- left join t_change_task b on a.id=b.tid
- left join new_order_change noc on b.cid =noc.id
- where b.id is not null and noc.process_state < 4 and noc.status in (0,1,2)
- and a.task_receiver = #{aid}
- </select>
- <select id="getSplitCount" resultType="java.lang.Integer">
- select count(*) from t_order_task
- where split_super = #{tid}
- </select>
- </mapper>
|