mirror of https://github.com/1099438829/apeblog
修正部分模板错误
This commit is contained in:
parent
08676cadf8
commit
3641864d1f
|
|
@ -44,7 +44,7 @@ function get_document_category_list(){
|
|||
//缓存文章菜单
|
||||
$docuemtCategory=cache('DATA_DOCUMENT_CATEGORY_LIST');
|
||||
if($docuemtCategory===null){
|
||||
$docuemtCategoryList=Db::name('document_category')->where('status',1)->order('sort asc')->select();
|
||||
$docuemtCategoryList= \app\common\model\DocumentCategory::where('status',1)->order('sort asc')->select()->toArray();
|
||||
//转换,让id作为数组的键
|
||||
$docuemtCategory=[];
|
||||
foreach ($docuemtCategoryList as $key=>$item){
|
||||
|
|
|
|||
|
|
@ -6,7 +6,6 @@
|
|||
$theme = system_config('web_template');
|
||||
//检查主题目录是否存在,不存在则更新为默认目录
|
||||
if (file_exists(public_path("template/{$theme}"))){
|
||||
|
||||
$theme = 'default';
|
||||
}
|
||||
//检查是否切换模板
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@
|
|||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\index\controller;
|
||||
use app\common\model\Document;
|
||||
use think\facade\Db;
|
||||
use think\facade\Log;
|
||||
|
||||
|
|
@ -92,12 +93,13 @@ class Article extends Base
|
|||
$this->error('参数错误!');
|
||||
}
|
||||
//获取该文章
|
||||
$article=Db::name('document')->where('status',1)->where('id',$id)->find();
|
||||
$article = (new Document())->where('status',1)->where('id',$id)->find();
|
||||
if(!$article){
|
||||
$this->error('文章不存在或已删除!');
|
||||
}
|
||||
$article = $article->toArray();
|
||||
//根据分类id找分类信息
|
||||
$dc=get_document_category($article['category_id']);
|
||||
$dc = get_document_category($article['category_id']);
|
||||
if(!$dc){
|
||||
$this->error('栏目不存在或已删除!');
|
||||
}
|
||||
|
|
@ -109,18 +111,16 @@ class Article extends Base
|
|||
$this->error('文章不存在或已删除!');
|
||||
}
|
||||
$article=array_merge($article,$articleExt);
|
||||
|
||||
|
||||
//添加当前页面的位置信息
|
||||
$article['position']=tpl_get_position($dc);
|
||||
//更新浏览次数
|
||||
Db::name('document')->where('id', $article['id'])->inc('view')->update();
|
||||
(new Document())->where('id', $article['id'])->inc('view')->update();
|
||||
//读取详情页模板
|
||||
$detailTmp=$dc['template_detail'];
|
||||
$detailTmp=$dc['template'];
|
||||
if(!$detailTmp){
|
||||
$this->error('请在栏目分类中,指定当前栏目的详情模板!');
|
||||
}
|
||||
if(!is_file(TPL.$detailTmp)){
|
||||
if(!is_file(config('view.view_path').'article/'.$detailTmp)){
|
||||
$this->error('模板文件不存在!');
|
||||
}
|
||||
$article['category_title']=$dc['title'];
|
||||
|
|
@ -129,20 +129,19 @@ class Article extends Base
|
|||
$this->assign('id',$id);
|
||||
//当前页面所属分类id
|
||||
$this->assign('cid',$article['category_id']);
|
||||
|
||||
//缓存当前页面栏目分类树ids
|
||||
cache('curr_category_patent_id',$dc['parent_id']?$dc['parent_id'].','.$article['category_id']:$article['category_id']);
|
||||
|
||||
|
||||
cache('curr_category_patent_id',$dc['pid']?$dc['pid'].','.$article['category_id']:$article['category_id']);
|
||||
//设置文章的url
|
||||
$article['link_str']=aurl($article);
|
||||
//判断后台统计配置是否开启 1 开启
|
||||
if($this->systemConfig["web_statistics"] ==1){
|
||||
if(system_config("web_statistics") ==1){
|
||||
//统计url
|
||||
$this->urlrecord($article['title']);
|
||||
}
|
||||
Log::info('详情页模板路径:'.TPL.$detailTmp);
|
||||
return $this->fetch(TPL.$detailTmp);
|
||||
Log::info('详情页模板路径:'.config('view.view_path').'article/'.$detailTmp);
|
||||
//去除后缀
|
||||
$detailTmp = substr($detailTmp,0,strpos($detailTmp,'.'));
|
||||
return $this->fetch('article/'.$detailTmp);
|
||||
}
|
||||
|
||||
//自定义页面,可通过参数指定模板文件。完成完全自定义的文件输出。
|
||||
|
|
|
|||
|
|
@ -12,33 +12,23 @@ use app\common\model\SystemConfig;
|
|||
*/
|
||||
class Base extends BaseController
|
||||
{
|
||||
//系统配置
|
||||
protected $systemConfig = [];
|
||||
|
||||
// 初始化
|
||||
protected function initialize(){
|
||||
parent::initialize();
|
||||
/* 读取数据库中的配置 */
|
||||
$systemConfig = cache('systemConfig');
|
||||
if (empty($systemConfig)){
|
||||
$systemConfig = SystemConfig::getSystemConfigValues();
|
||||
cache('systemConfig',$systemConfig);
|
||||
}
|
||||
$this->systemConfig = $systemConfig;
|
||||
//判断是否关闭站点。
|
||||
if(!$systemConfig['web_close']){
|
||||
if(!system_config('web_close')){
|
||||
$this->error('网站暂时关闭!','','stop');
|
||||
}
|
||||
//判断后台统计配置是否开启 1 开启
|
||||
if ($systemConfig["web_statistics"] == 1) {
|
||||
if (system_config("web_statistics") == 1) {
|
||||
//pv表 zz_pv_log 栏目存在 点击进入页面后
|
||||
$pvLogModel=new PvLog();
|
||||
$pvLogModel->set_view();
|
||||
}
|
||||
//判断是否开启了伪静态
|
||||
if ($systemConfig['web_rewrite']=='0') {
|
||||
if (system_config('web_rewrite')=='0') {
|
||||
$this->request->setRoot('/?s=');
|
||||
} elseif($systemConfig['web_rewrite']=='1') {
|
||||
} elseif(system_config('web_rewrite')=='1') {
|
||||
$this->request->setRoot('/');
|
||||
} else {
|
||||
$this->request->setRoot('/index.php');
|
||||
|
|
|
|||
|
|
@ -0,0 +1,724 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<title>行业字典管理 - {:web_config("title")}</title>
|
||||
<title>轻烟随风的博客blog</title>
|
||||
<meta name="keywords" content="轻烟随风,blog,博客,oracle,pl/sql,erp,数据库,sql server,EBS,ERP系统,甲骨文,R12">
|
||||
<meta name="description" content="oracle EBS等ERP系统上线,实施,维护过程中的心得,常见的开发工具的使用">
|
||||
|
||||
{include file="public/head" /}
|
||||
<link rel="stylesheet" href="__LIB__/nprogress/nprogress.min.css">
|
||||
<script src="__LIB__/nprogress/nprogress.min.js"></script>
|
||||
<script src="__JS__/tools.js"></script>
|
||||
<style>
|
||||
.post-content-post img {
|
||||
border-radius: 10px;
|
||||
}
|
||||
</style>
|
||||
<style>
|
||||
post-content-content img {
|
||||
box-shadow: 0 0 5px 0 rgba(0, 0, 0, .1);
|
||||
}
|
||||
</style>
|
||||
<script src="__JS__/qrcode.min.js"></script>
|
||||
<script src="__JS__/clipboard.min.js"></script>
|
||||
<link rel="stylesheet" href="__CSS__/comment-module.css">
|
||||
<link rel="stylesheet" href="__CSS__/post-content.css">
|
||||
<link rel="stylesheet" href="__LIB__/fancybox/jquery.fancybox.min.css">
|
||||
<script src="__LIB__/fancybox/jquery.fancybox.min.js"></script>
|
||||
<script src="__LIB__/fancybox/init.js"></script>
|
||||
<script src="__LIB__/highlight/highlight.min.js"></script>
|
||||
<link rel="stylesheet" href="__LIB__/highlight/style/corepress-dark.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<script>NProgress.start();</script>
|
||||
<div id="app">
|
||||
{include file="public/header" /}
|
||||
<div class="top-divider"></div>
|
||||
<main class="container">
|
||||
<div class="html-main">
|
||||
<div class="post-main">
|
||||
<div class="post-content-body">
|
||||
<div class="crumbs-plane-body">
|
||||
<div class="crumbs-plane">
|
||||
<span class="corepress-crumbs-ul"><li><a href="../index.html"><i class="fas fa-home"></i> 主页</a></li><li><a
|
||||
href="../category/oracle-finance/index.html"
|
||||
rel="category tag">Oracle-Finance-财务</a></li></span></div>
|
||||
</div>
|
||||
|
||||
<div class="post-content">
|
||||
<h1 class="post-title">
|
||||
oracle-EBS-AP应付采购单匹配付款经历主要表(多图) </h1>
|
||||
<div class="post-info">
|
||||
<div class="post-info-left">
|
||||
<a class="nickname url fn j-user-card" data-user="1"
|
||||
href="../author/james/index.html"><i class="fa fa-user" aria-hidden="true"></i>轻烟随风
|
||||
</a>
|
||||
<span class="dot">•</span>
|
||||
<time class="entry-date published" datetime="2020-12-29T16:31:24+08:00>" pubdate=""><i
|
||||
class="far fa-clock"></i>
|
||||
2020年12月29日 pm4:31
|
||||
</time>
|
||||
<span class="dot">•</span><i class="fas fa-folder"></i>
|
||||
<a href="../category/oracle-finance/index.html" rel="category tag">Oracle-Finance-财务</a>
|
||||
<span class="dot">•</span>
|
||||
<span><i class="fa fa-eye" aria-hidden="true"></i>103 阅读</span>
|
||||
</div>
|
||||
<div class="post-info-right">
|
||||
<span title="关闭或显示侧边栏" class="post-info-switch-sidebar post-info-switch-sidebar-show"><i
|
||||
class="fas fa-toggle-on"></i></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="post-content-post">
|
||||
<div class="post-content-content">
|
||||
<h1>oracle-EBS-AP应付采购单匹配付款经历主要表(多图)</h1>
|
||||
<p>本章接着之前的一篇采购订单:</p>
|
||||
<p> </p>
|
||||
<p>一、创建AP发票</p>
|
||||
<div id="attachment_335" style="width: 826px" class="wp-caption alignnone"><img
|
||||
aria-describedby="caption-attachment-335" loading="lazy"
|
||||
src="../wp-content/uploads/2020/12/oracle-ap-001-e1609251106356.png"
|
||||
alt="oracle-ap-EBS 发票" width="816" height="430" class=" wp-image-335">
|
||||
<p id="caption-attachment-335" class="wp-caption-text">oracle-ap-EBS 发票</p></div>
|
||||
<p><strong>AP_BATCHES_ALL</strong> <br>--批名表 select * from AP_BATCHES_ALL where
|
||||
batch_id=160183<br><strong>ap_invoices_all</strong> <br>--发票主表 select * from
|
||||
ap_invoices_all where INVOICE_NUM ='28-12-2020'<br>--batch_id = AP_BATCHES_ALL
|
||||
.batch_id<br><br></p>
|
||||
<p>二、匹配采购订单</p>
|
||||
<p><img loading="lazy" src="../wp-content/uploads/2020/12/oracle-ap-002.png" alt=""
|
||||
width="1006" height="602" class="alignnone size-full wp-image-354"></p>
|
||||
<div id="attachment_358" style="width: 998px" class="wp-caption alignnone"><img
|
||||
aria-describedby="caption-attachment-358" loading="lazy"
|
||||
src="../wp-content/uploads/2020/12/oracle-ap-003.png" alt="oracle-ap"
|
||||
width="988" height="562" class="size-full wp-image-358">
|
||||
<p id="caption-attachment-358" class="wp-caption-text">oracle-ap</p></div>
|
||||
<p>
|
||||
<strong>ap_invoice_lines_all <br></strong>--发票明细行<strong><br></strong><strong></strong><strong></strong>--select
|
||||
* from ap_invoice_lines_all where invoice_id in (5361405)<br>--invoice_id =
|
||||
<strong>ap_invoices_all</strong> .invoice_id <br><strong>ap_invoice_distributions_all</strong>
|
||||
<br>--发票分配<br>--select * from ap_invoice_distributions_all AID where
|
||||
AID.invoice_id in ( 5361405)<br>--MATCH_STATUS_FLAG:A Validated (it used to be
|
||||
called Approved) N or NULL - Never validated T - Tested but not validated</p>
|
||||
<p>三、付款</p>
|
||||
<div id="attachment_362" style="width: 1002px" class="wp-caption alignnone"><img
|
||||
aria-describedby="caption-attachment-362" loading="lazy"
|
||||
src="../wp-content/uploads/2020/12/oracle-ap-004.png" alt="oracle-ap ebs"
|
||||
width="992" height="657" class="size-full wp-image-362">
|
||||
<p id="caption-attachment-362" class="wp-caption-text">oracle-ap ebs 发票付款</p></div>
|
||||
<p><strong>AP_PAYMENT_SCHEDULES_ALL </strong><br>---付款排程主档<br>-- select * from
|
||||
AP_PAYMENT_SCHEDULES_ALL where INVOICE_ID in (5361405) <br>--invoice_id=<strong>ap_invoices_all</strong>
|
||||
.invoice_id<br>----该表一张AP
|
||||
应付发票对应一条或多条记录(根据付款条件而定,一次到期对应一条记录),记录了剩余金额amount_remaining、发票原始金额gross_amount、付款状态payment_status_flag(N从未付款、Y全部付款、P部分付款)<br><strong>AP_INVOICE_PAYMENTS_ALL</strong>
|
||||
<br>--付款冲发票明细,对应多个invoice,<br>--select * from AP_INVOICE_PAYMENTS_ALL where
|
||||
INVOICE_ID in (5361405)<br>--CHECK_ID =AP_CHECKS_ALL.CHECK_ID <br>--INVOICE_ID=AP_INVOICES_ALL.INVOICE_ID<br><strong>AP_CHECKS_ALL</strong>
|
||||
<br>--付款文件头<br>--CHECK_ID =<strong>AP_INVOICE_PAYMENTS_ALL</strong> .CHECK_ID <br>--select
|
||||
* from AP_CHECKS_ALL where CHECK_ID =2993939</p>
|
||||
</div>
|
||||
|
||||
<div class="post-end-tools">
|
||||
<div class="post-copyright">
|
||||
----欢迎转载----
|
||||
</div>
|
||||
<div class="post-end-dividing">
|
||||
THE END
|
||||
</div>
|
||||
<div class="post-tags">
|
||||
<span class="post-tags-icon"><i class="fas fa-tags"></i></span><a
|
||||
href="../tag/ebs/index.html" rel="tag">EBS</a><a href="../tag/oracle/index.html"
|
||||
rel="tag">oracle</a></div>
|
||||
|
||||
<div class="post-end-tool-btns">
|
||||
<div class="post-share-btn post-end-tool-btn-item"
|
||||
onclick="showplane('.post-share-btn','#share-plane',event)">
|
||||
<svg class="icon" viewbox="0 0 1024 1024">
|
||||
<path d="M793.472 102.208c-70.592 0-128 57.408-128 128 0 7.744 0.96 15.232 2.304 22.656L273.6 422.976C250.368 399.04 217.92 384 181.952 384c-70.592 0-128 57.408-128 128 0 70.592 57.408 128 128 128 22.912 0 44.096-6.592 62.72-17.152l289.088 180.992c-4.672 13.312-7.744 27.392-7.744 42.24 0 70.592 57.408 128 128 128s128-57.408 128-128-57.408-128-128-128c-32.512 0-61.888 12.544-84.48 32.64L291.712 576.832C302.976 557.696 309.952 535.744 309.952 512c0-11.456-1.984-22.336-4.8-32.896l389.76-168.32c23.488 28.672 58.752 47.36 98.624 47.36 70.592 0 128-57.408 128-128S864.064 102.208 793.472 102.208zM117.952 512c0-35.264 28.736-64 64-64s64 28.736 64 64-28.736 64-64 64S117.952 547.264 117.952 512zM654.016 782.144c35.328 0 64 28.672 64 64s-28.672 64-64 64-64-28.672-64-64S618.688 782.144 654.016 782.144zM793.472 294.208c-35.328 0-64-28.736-64-64s28.672-64 64-64 64 28.736 64 64S828.8 294.208 793.472 294.208z"></path>
|
||||
</svg>
|
||||
分享
|
||||
</div>
|
||||
<div class="post-qrcode-btn post-end-tool-btn-item"
|
||||
onclick="showplane('.post-qrcode-btn','#qrcode-plane',event)">
|
||||
<svg t="1599190411371" class="icon" viewbox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" p-id="2306" width="200" height="200">
|
||||
<path d="M742.8 121.5c-2.3 0.3-4.7 0.1-7 0.1-38 0-76-0.1-114 0.1-11 0-21.9 1.4-32.4 5.1-18.6 6.5-29.8 19.5-34.4 38.4-1.7 7-2.4 14.1-2.4 21.3 0 67.2-0.1 134.3 0.1 201.5 0 13.8 0.9 27.6 6.2 40.8 6.9 17.1 19.7 27.2 37.3 31.7 6.3 1.6 12.8 2.2 19.3 2.2h218c8.3 0 16.6-0.7 24.8-2.3 24.4-4.5 40.4-20.7 44.9-45 0.4-2.2-0.4-5.2 2.9-6.2v-232c-0.4-0.4-0.5-0.9-0.5-1.5-1.5-4.8-1.7-9.8-3.3-14.7-7.1-21-21.7-33.4-42.8-38.8-6.4-1.6-12.8-2.4-19.5-2.1-1.3 0.1-3 1-3.9-0.9h-89c-0.4 2.6-2.7 2.1-4.3 2.3z m98.7 40.7c4 0 8.1 0.9 11.9 2.1 6.9 2.2 10.7 7.6 10.7 15.1 0 74.8 0.1 149.6-0.1 224.4 0 11.2-8.6 18-21.1 18.1-38.2 0.3-76.3 0.1-114.5 0.1h-113c-4.5 0-8.6-1.3-12.7-2.7-8.5-3.1-9.6-10.5-9.7-17.9-0.2-37.5-0.1-75-0.1-112.5V183.4c0-6.5 1.5-12.5 6.9-17 4.6-3.8 10.3-4.3 15.6-4.3 75.4-0.1 150.8 0 226.1 0.1z"
|
||||
p-id="2307"></path>
|
||||
<path d="M742 120c-39.5 0.1-79 0.1-118.4 0.1-9.4 0-18.6 1-27.7 3.1-11.6 2.7-22.1 7.7-30 16.7-10.6 12.1-14.8 26.9-14.8 42.6-0.2 69.6-0.2 139.3 0 208.9 0 9.1 0.7 18.3 2.8 27.2 2.8 11.7 7.6 22.5 16.7 30.5 11.7 10.3 25.9 15 41.5 15 74.1 0.1 148.3 0.1 222.4 0 9.3 0 18.7-0.5 27.7-3 19-5.4 33.6-15.9 40-35.8 1.7-5.3 1.8-10.9 3.8-16.1-3.2 1-2.5 4-2.9 6.2-4.5 24.4-20.5 40.5-44.9 45-8.2 1.5-16.5 2.3-24.8 2.3h-218c-6.5 0-13-0.6-19.3-2.2-17.5-4.5-30.4-14.6-37.3-31.7-5.3-13.1-6.2-27-6.2-40.8-0.2-67.2-0.1-134.3-0.1-201.5 0-7.2 0.7-14.3 2.4-21.3 4.6-18.9 15.8-31.9 34.4-38.4 10.5-3.7 21.4-5 32.4-5.1 38-0.2 76-0.1 114-0.1 2.3 0 4.7 0.2 7-0.1 1.7-0.2 3.9 0.2 4.2-2.4-1.2 2.1-3.2 0.9-4.9 0.9zM120.6 410.3c2 12.5 5.5 24.4 14.3 34 11.5 12.7 26.5 18 43 18.1 75.1 0.3 150.2 0.3 225.4 0 9.4 0 18.9-1 28.1-3.9 24.5-7.7 39.1-27.3 39.1-53.1 0-74 0-147.9 0.1-221.9 0-6.4-0.8-12.6-2.4-18.8-5.8-22.4-24.5-39.1-47.5-42.3-4.1-0.6-8.2-1.1-12.4-1.1-2 0-4.5 0.6-5.2-2.4h-89c-1.3 2.1-3.3 0.9-4.9 0.9-41.1 0.1-82.2-0.2-123.3 0.2-14.8 0.1-29.2 2.6-42.2 10.7-12.5 7.8-19.8 19.1-23.7 33-0.8 2.7-0.2 5.7-1.9 8.2v233c2.9 0.9 2.2 3.5 2.5 5.4z m39.5-231c0-8.1 6.2-14.6 14.5-16.3 4.4-0.9 8.8-1 13.2-1h219c4.3 0 8.4 0.8 12.4 2 7.5 2.4 10.8 6.9 10.8 14.6v225.5c0 8.2-3.8 13.3-11.6 15.9-4 1.3-8.1 2.1-12.4 2-37.2-0.1-74.3-0.1-111.5-0.1-37.7 0-75.3 0.1-113-0.1-6.3 0-12.6-0.9-17.3-6.1-2.7-3-4.1-6.3-4.1-10.1-0.1-75.3-0.1-150.8 0-226.3z"
|
||||
p-id="2308"></path>
|
||||
<path d="M119 407.5c0.1 8.9 2.6 17.3 6.4 25.1 10.4 21.4 28.9 31 51.6 31.2 74.5 0.6 149 0.2 223.4 0.2 9.3 0 18.6-0.8 27.7-3 27.1-6.7 43.6-26.4 43.8-54.4 0.5-73.8 0.2-147.6 0.2-221.4 0-4.9 0-9.8-0.9-14.7-3-16.2-10.7-29.4-24.2-39-11-7.8-23.5-11-36.9-11.4-2.3-0.1-4.9 1.2-6.9-0.9 0.7 3 3.3 2.4 5.2 2.4 4.2 0 8.3 0.6 12.4 1.1 23 3.2 41.7 19.9 47.5 42.3 1.6 6.2 2.4 12.4 2.4 18.8-0.1 74 0 147.9-0.1 221.9 0 25.7-14.6 45.3-39.1 53.1-9.2 2.9-18.7 3.9-28.1 3.9-75.1 0.2-150.2 0.3-225.4 0-16.5-0.1-31.4-5.4-43-18.1-8.8-9.7-12.3-21.5-14.3-34-0.3-1.9 0.4-4.6-2.6-5.2 1.3 0.1 0.9 1.3 0.9 2.1zM191.8 882.7c2.1-0.3 4.3-0.1 6.5-0.1h206c8.4 0 16.6-1 24.7-3.1 25.5-6.6 41.4-26.9 41.5-53.2 0.1-25.3 0-50.7 0-76v-148c0-32.3-21.4-56.2-53.6-59.7-11.4-1.2-22.9-1.7-34.4-2-34.5-0.7-69 0.5-103.4 1.3-33 0.8-66 0.2-98.9 0.7-11.5 0.2-22.6 2.7-32.7 8.1-13.6 7.2-21.9 18.5-25.7 33.4-0.7 2.8-0.1 6.5-3.7 8v234c2 5.5 2.2 11.4 3.9 17.1 5.9 20.7 19.4 33.3 39.8 38.9 6.5 1.8 13.2 2.3 19.9 2.1 1.4 0 3.3-1.1 4.4 0.9h2c0.2-2.3 2.1-2.2 3.7-2.4z m-11.4-40.6c-12.2 0-20.7-6.6-20.6-20.5 0.4-73.3 0.2-146.6 0.1-220 0-11.8 7-18.1 18.3-18.5 74.6-2.4 149.1-0.5 223.7-0.8 6.4 0 13.4-0.4 19.6 3 5.4 3 8.5 7.2 8.5 13.7-0.1 37.5 0 75 0 112.5 0 37.2-0.2 74.3 0.1 111.5 0.1 12.1-7.8 17.6-18.7 19.3-8.6 1.3-17 0-25.5-0.1-68.5-0.2-137-0.1-205.5-0.1z"
|
||||
p-id="2309"></path>
|
||||
<path d="M193.5 884.2c67.8-0.1 135.7-0.1 203.5 0 9.4 0 18.7-0.2 28-2.1 12.5-2.5 23.8-7.8 32.5-17.1 9.7-10.4 14.5-23.4 14.5-37.6 0.2-74.3 0.1-148.7 0.1-223 0-6.3-0.4-12.4-2-18.5-5.3-19.9-17.3-33.7-36.7-41.3-13.3-5.2-27.3-5-41-5.3-23.1-0.5-46.2-0.9-69.3 0.5-19 1.2-38.2 0.3-57.3 1-27.6 0.9-55.3 0.3-83 0.2-6.4 0-12.7 0.6-19 2-18.4 4.2-32.5 13.8-40.6 31.3-2.6 5.7-2.8 12-5.2 17.7 3.7-1.5 3-5.2 3.7-8 3.8-14.9 12.2-26.2 25.7-33.4 10.2-5.4 21.2-7.9 32.7-8.1 33-0.5 65.9 0.1 98.9-0.7 34.5-0.8 68.9-2 103.4-1.3 11.5 0.2 23 0.7 34.4 2 32.2 3.5 53.5 27.4 53.6 59.7v148c0 25.3 0.1 50.7 0 76-0.2 26.4-16 46.6-41.5 53.2-8.1 2.1-16.3 3.1-24.7 3.1h-206c-2.2 0-4.3-0.1-6.5 0.1-1.6 0.2-3.5 0-3.7 2.4 1.5-1.9 3.7-0.8 5.5-0.8z"
|
||||
p-id="2310"></path>
|
||||
<path d="M143.6 130.9c13-8 27.4-10.6 42.2-10.7 41.1-0.4 82.2-0.1 123.3-0.2 1.6 0 3.6 1.2 4.9-0.9-1.7 1-3.6 0.5-5.4 0.5-44.8 0.3-89.6-0.8-134.4 0.6-18.9 0.6-34.9 8.1-46.5 23.6-6.3 8.4-9.1 18-9.7 28.3 1.8-2.4 1.2-5.4 1.9-8.2 4-13.9 11.2-25.2 23.7-33zM840 120c6.6-0.3 13.1 0.5 19.5 2.1 21 5.4 35.7 17.8 42.8 38.8 1.6 4.8 1.8 9.9 3.3 14.7v-0.4c0.4-28.1-24.4-53.2-52.7-55.3-5.6-0.4-11.2 0.5-16.8-0.9 0.8 2.1 2.6 1.1 3.9 1zM181.6 884.2c-6.7 0.2-13.4-0.3-19.9-2.1-20.4-5.6-33.9-18.2-39.8-38.9-1.6-5.7-1.8-11.6-3.9-17.1 1.1 5.3 0.8 10.8 2.1 16.1 5.5 22.8 25.5 40.6 48.6 42 5.8 0.4 11.6-0.6 17.3 0.8-1.1-1.9-3-0.9-4.4-0.8z"
|
||||
p-id="2311"></path>
|
||||
<path d="M608.4 667.2c-12.3 0.2-20.4 8.3-20.4 20V859c0 12.3 8.5 20.1 20.8 19.9 12.9-0.2 21-6.9 21.1-19.7 0.2-57.4 0.1-114.9 0-172.3 0-12-8.4-19.9-21.5-19.7zM861.4 667.4c-9.9-1.8-23.3 4.9-23.3 18.2-0.2 29.2 0 58.3 0 87.5v87c0 1.6-0.1 3.4 0.4 4.9 3.3 9.4 14.4 16.2 23.5 14 11.4-2.7 17.9-7.2 18-21.4 0.2-55.5 0.1-111 0.1-166.5-0.1-14.4-4.6-21.1-18.7-23.7zM768.7 727.3c-2.6-9.4-13-16.8-22.1-15.1-12.4 2.4-19.4 6.6-19.5 20.9-0.3 41.1-0.1 82.3-0.1 123.4 0 13.8 5.7 20 17.5 22.2 11.1 2.1 24.4-4.5 24.5-19.1v-63.5-64.5c0-1.3 0-2.9-0.3-4.3zM741 544.8c-8.7 1.9-14 10.2-14 19.8V653c0 13.1 4 21 18.1 23.7 10.3 1.9 24-5.2 23.9-18.5-0.1-15.8 0-31.6 0-47.5 0-15.3-0.2-30.6 0-46 0.3-19-14.6-22.8-28-19.9zM622 547.4c-4.9-3.4-10.1-3.3-15.4-3.3-10.5 0-18.5 7.9-18.5 18.3v26c0 9-0.1 18 0 27 0.1 4.6 1.3 8.7 4.9 12.3 5.2 5.2 11.2 6.7 18.2 6.5 9.9-0.3 18.8-8.9 18.8-18.7 0.1-17.7 0.2-35.3-0.1-53 0-6.1-2.4-11.3-7.9-15.1zM878.3 555.9c-2.2-6.2-9.8-11.8-17.9-12-14.3-0.5-23.6 7.9-22.5 22.8 0.5 7 0.1 14 0.1 21v25c0 1.5 0 3 0.4 4.4 3.2 10.3 12.9 15.5 23.9 14 11-1.6 17.4-8.4 17.6-19.7 0.3-15.8 0.1-31.7 0.1-47.5 0-2.9-0.8-5.5-1.7-8zM352 257.8c-1.9-7.3-7.9-12.7-15.4-13.7-1.3-0.2-2.7-0.4-4-0.4-0.6 0-1.5 0.2-1.7-0.8h-28.8c-0.4 0.7-1.1 0.3-1.6 0.3-13.3 0-26.6-0.1-39.9 0.1-4.8 0-9.5 0.9-13.7 3.5-4.1 2.5-6.4 6.2-7.7 10.7-0.2 0.9 0 1.9-0.6 2.6v75.5c1 0.2 0.7 1.1 0.8 1.7 0.7 4.1 1.8 7.9 4.6 11 3.7 4.1 8.6 5.8 13.9 5.9 24.3 0.1 48.7 0.1 73 0 3.1 0 6.1-0.3 9.1-1.3 7.9-2.5 12.7-8.9 12.7-17.2v-71.9c0.1-2-0.2-4-0.7-6zM785.5 250.1c-1.9-7.3-7.9-12.7-15.4-13.7-1.3-0.2-2.7-0.4-4-0.4-0.6 0-1.5 0.2-1.7-0.8h-28.8c-0.4 0.7-1.1 0.3-1.6 0.3-13.3 0-26.6-0.1-39.9 0.1-4.8 0-9.5 0.9-13.7 3.5-4.1 2.5-6.4 6.2-7.7 10.7-0.2 0.9 0 1.9-0.6 2.6v75.5c1 0.2 0.7 1.1 0.8 1.7 0.7 4.1 1.8 7.9 4.6 11 3.7 4.1 8.6 5.8 13.9 5.9 24.3 0.1 48.7 0.1 73 0 3.1 0 6.1-0.3 9.1-1.3 7.9-2.5 12.7-8.9 12.7-17.2v-71.9c0.2-2-0.2-4.1-0.7-6zM351.4 676.6c-1.9-7.3-7.9-12.7-15.4-13.7-1.3-0.2-2.7-0.4-4-0.4-0.6 0-1.5 0.2-1.7-0.8h-28.8c-0.4 0.7-1.1 0.3-1.6 0.3-13.3 0-26.6-0.1-39.9 0.1-4.8 0-9.5 0.9-13.7 3.5-4.1 2.5-6.4 6.2-7.7 10.7-0.2 0.9 0 1.9-0.6 2.6v75.5c1 0.2 0.7 1.1 0.8 1.7 0.7 4.1 1.8 7.9 4.6 11 3.7 4.1 8.6 5.8 13.9 5.9 24.3 0.1 48.7 0.1 73 0 3.1 0 6.1-0.3 9.1-1.3 7.9-2.5 12.7-8.9 12.7-17.2v-71.9c0.1-2-0.2-4-0.7-6z"
|
||||
p-id="2312"></path>
|
||||
</svg>
|
||||
二维码
|
||||
</div>
|
||||
|
||||
<div id="share-plane" class="post-pop-plane">
|
||||
<div class="post-share-list">
|
||||
<a href="javascript:;" target="_blank">
|
||||
<svg t="1599120943195" name="share-qq" class="share-icon"
|
||||
viewbox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" p-id="3139" width="200"
|
||||
height="200">
|
||||
<path d="M511.09761 957.257c-80.159 0-153.737-25.019-201.11-62.386-24.057 6.702-54.831 17.489-74.252 30.864-16.617 11.439-14.546 23.106-11.55 27.816 13.15 20.689 225.583 13.211 286.912 6.767v-3.061z"
|
||||
fill="#FAAD08" p-id="3140"></path>
|
||||
<path d="M496.65061 957.257c80.157 0 153.737-25.019 201.11-62.386 24.057 6.702 54.83 17.489 74.253 30.864 16.616 11.439 14.543 23.106 11.55 27.816-13.15 20.689-225.584 13.211-286.914 6.767v-3.061z"
|
||||
fill="#FAAD08" p-id="3141"></path>
|
||||
<path d="M497.12861 474.524c131.934-0.876 237.669-25.783 273.497-35.34 8.541-2.28 13.11-6.364 13.11-6.364 0.03-1.172 0.542-20.952 0.542-31.155C784.27761 229.833 701.12561 57.173 496.64061 57.162 292.15661 57.173 209.00061 229.832 209.00061 401.665c0 10.203 0.516 29.983 0.547 31.155 0 0 3.717 3.821 10.529 5.67 33.078 8.98 140.803 35.139 276.08 36.034h0.972z"
|
||||
fill="#000000" p-id="3142"></path>
|
||||
<path d="M860.28261 619.782c-8.12-26.086-19.204-56.506-30.427-85.72 0 0-6.456-0.795-9.718 0.148-100.71 29.205-222.773 47.818-315.792 46.695h-0.962C410.88561 582.017 289.65061 563.617 189.27961 534.698 185.44461 533.595 177.87261 534.063 177.87261 534.063 166.64961 563.276 155.56661 593.696 147.44761 619.782 108.72961 744.168 121.27261 795.644 130.82461 796.798c20.496 2.474 79.78-93.637 79.78-93.637 0 97.66 88.324 247.617 290.576 248.996a718.01 718.01 0 0 1 5.367 0C708.80161 950.778 797.12261 800.822 797.12261 703.162c0 0 59.284 96.111 79.783 93.637 9.55-1.154 22.093-52.63-16.623-177.017"
|
||||
fill="#000000" p-id="3143"></path>
|
||||
<path d="M434.38261 316.917c-27.9 1.24-51.745-30.106-53.24-69.956-1.518-39.877 19.858-73.207 47.764-74.454 27.875-1.224 51.703 30.109 53.218 69.974 1.527 39.877-19.853 73.2-47.742 74.436m206.67-69.956c-1.494 39.85-25.34 71.194-53.24 69.956-27.888-1.238-49.269-34.559-47.742-74.435 1.513-39.868 25.341-71.201 53.216-69.974 27.909 1.247 49.285 34.576 47.767 74.453"
|
||||
fill="#FFFFFF" p-id="3144"></path>
|
||||
<path d="M683.94261 368.627c-7.323-17.609-81.062-37.227-172.353-37.227h-0.98c-91.29 0-165.031 19.618-172.352 37.227a6.244 6.244 0 0 0-0.535 2.505c0 1.269 0.393 2.414 1.006 3.386 6.168 9.765 88.054 58.018 171.882 58.018h0.98c83.827 0 165.71-48.25 171.881-58.016a6.352 6.352 0 0 0 1.002-3.395c0-0.897-0.2-1.736-0.531-2.498"
|
||||
fill="#FAAD08" p-id="3145"></path>
|
||||
<path d="M467.63161 256.377c1.26 15.886-7.377 30-19.266 31.542-11.907 1.544-22.569-10.083-23.836-25.978-1.243-15.895 7.381-30.008 19.25-31.538 11.927-1.549 22.607 10.088 23.852 25.974m73.097 7.935c2.533-4.118 19.827-25.77 55.62-17.886 9.401 2.07 13.75 5.116 14.668 6.316 1.355 1.77 1.726 4.29 0.352 7.684-2.722 6.725-8.338 6.542-11.454 5.226-2.01-0.85-26.94-15.889-49.905 6.553-1.579 1.545-4.405 2.074-7.085 0.242-2.678-1.834-3.786-5.553-2.196-8.135"
|
||||
fill="#000000" p-id="3146"></path>
|
||||
<path d="M504.33261 584.495h-0.967c-63.568 0.752-140.646-7.504-215.286-21.92-6.391 36.262-10.25 81.838-6.936 136.196 8.37 137.384 91.62 223.736 220.118 224.996H506.48461c128.498-1.26 211.748-87.612 220.12-224.996 3.314-54.362-0.547-99.938-6.94-136.203-74.654 14.423-151.745 22.684-215.332 21.927"
|
||||
fill="#FFFFFF" p-id="3147"></path>
|
||||
<path d="M323.27461 577.016v137.468s64.957 12.705 130.031 3.91V591.59c-41.225-2.262-85.688-7.304-130.031-14.574"
|
||||
fill="#EB1C26" p-id="3148"></path>
|
||||
<path d="M788.09761 432.536s-121.98 40.387-283.743 41.539h-0.962c-161.497-1.147-283.328-41.401-283.744-41.539l-40.854 106.952c102.186 32.31 228.837 53.135 324.598 51.926l0.96-0.002c95.768 1.216 222.4-19.61 324.6-51.924l-40.855-106.952z"
|
||||
fill="#EB1C26" p-id="3149"></path>
|
||||
</svg>
|
||||
</a>
|
||||
<a href="javascript:;" target="_blank">
|
||||
<svg t="1599121101983" name="share-qzone" class="share-icon"
|
||||
viewbox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" p-id="7781" width="200"
|
||||
height="200">
|
||||
<path d="M504.768 24.224c-5.216 2.144-19.872 17.728-19.872 21.28 0 1.184-22.944 49.888-51.072 108.064S381.568 262.56 380.16 266.592c-1.184 3.776-3.328 8.288-4.256 9.696-1.184 1.408-7.808 14.176-14.88 28.384-7.552 15.616-15.616 28.608-20.096 32.16-10.88 9.216-3.552 8.288-221.312 32.64C21.248 380.576 10.368 382.24 4.48 387.68c-4.256 3.776-5.92 17.504-2.848 25.536 0.96 2.112 43.264 42.336 94.112 89.376 160.768 148.48 150.368 138.08 150.368 149.184 0 5.44-3.296 25.056-7.104 43.968-4.032 18.912-12.992 66.208-20.32 105.216s-15.84 83.712-18.912 99.296c-16.32 83.232-16.544 85.6-8.032 94.592 8.032 8.512 17.248 7.552 41.6-4.736 22.688-11.584 24.832-12.768 69.504-39.008 16.32-9.472 37.6-21.76 47.296-27.2s27.648-16.064 39.712-23.392 22.464-13.248 23.168-13.248c0.48 0 7.808-4.256 16.064-9.472s15.84-9.44 16.8-9.44c0.96 0 9.472-4.736 18.912-10.624 22.464-13.952 41.856-21.056 52.96-18.912 4.736 0.96 16.064 5.44 25.056 10.4 23.648 12.544 172.608 98.368 218.944 126.016 39.488 23.648 51.072 28.128 64.544 24.576 8.992-2.144 11.584-15.136 8.512-40.896-1.408-11.584-3.552-24.608-4.736-29.088-1.888-7.552-9.696-49.408-28.608-154.4-8.736-49.888-8.736-50.848 10.88-58.176 27.2-10.176 39.968-19.136 35.008-24.128-1.664-1.664-16.8 0.256-48.224 5.92-58.4 10.624-70.464 12.288-132.16 17.984-70.208 6.624-135.008 8.032-221.568 4.96-67.616-2.368-148-8.288-152.512-11.104-3.552-2.368-1.888-9.696 3.552-14.432 2.848-2.592 38.784-28.384 79.68-57.44 128.16-90.784 211.392-150.848 218.24-157.248 11.808-11.104 10.88-11.584-38.304-17.984-77.792-9.92-98.112-11.584-224.864-17.504-42.336-1.888-80.64-4.256-85.12-4.96-46.336-7.808 189.856-29.088 289.632-26.016 65.504 1.888 142.592 7.328 187.968 13.248 42.336 5.664 44.928 6.144 44.928 10.88 0 3.776-4.48 7.104-104.032 75.648-40.896 28.384-84.416 58.4-96.704 66.912-12.064 8.512-24.576 17.248-27.424 19.136-13.248 8.992-57.696 39.968-69.984 48.928-7.808 5.664-13.952 11.808-13.952 13.728 0 4.48 11.584 7.328 47.296 11.584 94.816 11.104 271.2 17.248 279.008 9.472 1.664-1.664 1.408-6.848-1.184-17.728-1.888-8.288-3.552-16.096-3.552-17.248 0-3.328 40.192-43.52 95.744-95.52 146.816-137.6 150.144-140.928 150.144-151.808 0-9.472-7.808-17.984-19.392-20.8-5.664-1.408-39.488-5.216-75.2-8.736-35.712-3.328-75.2-7.104-87.488-8.288-12.288-1.408-38.304-4.032-57.92-6.144-74.944-7.552-97.888-10.4-103.328-12.992-10.4-4.736-20.096-24.128-91.744-185.376C537.824 44.8 533.344 35.584 526.24 29.216c-5.888-5.44-15.104-7.552-21.504-4.96z"
|
||||
fill="#FFCE00" p-id="7782"></path>
|
||||
</svg>
|
||||
</a>
|
||||
<a href="javascript:;" target="_blank">
|
||||
<svg t="1599121004264" name="share-weibo" class="share-icon"
|
||||
viewbox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" p-id="4523" width="200"
|
||||
height="200">
|
||||
<path d="M851.4 590.193c-22.196-66.233-90.385-90.422-105.912-91.863-15.523-1.442-29.593-9.94-19.295-27.505 10.302-17.566 29.304-68.684-7.248-104.681-36.564-36.14-116.512-22.462-173.094 0.866-56.434 23.327-53.39 7.055-51.65-8.925 1.89-16.848 32.355-111.02-60.791-122.395C311.395 220.86 154.85 370.754 99.572 457.15 16 587.607 29.208 675.873 29.208 675.873h0.58c10.009 121.819 190.787 218.869 412.328 218.869 190.5 0 350.961-71.853 398.402-169.478 0 0 0.143-0.433 0.575-1.156 4.938-10.506 8.71-21.168 11.035-32.254 6.668-26.205 11.755-64.215-0.728-101.66z m-436.7 251.27c-157.71 0-285.674-84.095-285.674-187.768 0-103.671 127.82-187.76 285.674-187.76 157.705 0 285.673 84.089 285.673 187.76 0 103.815-127.968 187.768-285.673 187.768z"
|
||||
fill="#E71F19" p-id="4524"></path>
|
||||
<path d="M803.096 425.327c2.896 1.298 5.945 1.869 8.994 1.869 8.993 0 17.7-5.328 21.323-14.112 5.95-13.964 8.993-28.793 8.993-44.205 0-62.488-51.208-113.321-114.181-113.321-15.379 0-30.32 3.022-44.396 8.926-11.755 4.896-17.263 18.432-12.335 30.24 4.933 11.662 18.572 17.134 30.465 12.238 8.419-3.46 17.268-5.33 26.41-5.33 37.431 0 67.752 30.241 67.752 67.247 0 9.068-1.735 17.857-5.369 26.202a22.832 22.832 0 0 0 12.335 30.236l0.01 0.01z"
|
||||
fill="#F5AA15" p-id="4525"></path>
|
||||
<path d="M726.922 114.157c-25.969 0-51.65 3.744-76.315 10.942-18.423 5.472-28.868 24.622-23.5 42.91 5.509 18.29 24.804 28.657 43.237 23.329a201.888 201.888 0 0 1 56.578-8.064c109.253 0 198.189 88.271 198.189 196.696 0 19.436-2.905 38.729-8.419 57.16-5.508 18.289 4.79 37.588 23.212 43.053 3.342 1.014 6.817 1.442 10.159 1.442 14.943 0 28.725-9.648 33.37-24.48 7.547-24.906 11.462-50.826 11.462-77.175-0.143-146.588-120.278-265.813-267.973-265.813z"
|
||||
fill="#F5AA15" p-id="4526"></path>
|
||||
<path d="M388.294 534.47c-84.151 0-152.34 59.178-152.34 132.334 0 73.141 68.189 132.328 152.34 132.328 84.148 0 152.337-59.182 152.337-132.328 0-73.15-68.19-132.334-152.337-132.334zM338.53 752.763c-29.454 0-53.39-23.755-53.39-52.987 0-29.228 23.941-52.989 53.39-52.989 29.453 0 53.39 23.76 53.39 52.989 0 29.227-23.937 52.987-53.39 52.987z m99.82-95.465c-6.382 11.086-19.296 15.696-28.726 10.219-9.43-5.323-11.75-18.717-5.37-29.803 6.386-11.09 19.297-15.7 28.725-10.224 9.43 5.472 11.755 18.864 5.37 29.808z"
|
||||
fill="#040000" p-id="4527"></path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div id="qrcode-plane" class="post-pop-plane">
|
||||
<div id="qrcode-img"></div>
|
||||
</div>
|
||||
<div id="reward-plane" class="post-pop-plane">
|
||||
<img src="" alt="">
|
||||
<img src="" alt="">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="post-turn-page-plane">
|
||||
<div class="post-turn-page post-turn-page-previous" style="background-image:url()">
|
||||
<div class="post-turn-page-main">
|
||||
<div>
|
||||
<a href="../oracle-ebs-pur-inventory-table/index1.html">oracle-EBS-采购单创建接收检验入库经历主要表(多图)</a>
|
||||
</div>
|
||||
<div class="post-turn-page-link-pre">
|
||||
<a href="../oracle-ebs-pur-inventory-table/index1.html"><
|
||||
<上一篇></上一篇>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="post-turn-page post-turn-page-next"
|
||||
style="background-image:url(../wp-content/uploads/2020/12/oracleAP_Payments_GL_Voucher.png)">
|
||||
<div class="post-turn-page-main">
|
||||
<div>
|
||||
<a href="javascript:;">oracle-EBS-PL/sql AP GL总账付款凭证</a>
|
||||
</div>
|
||||
<div class="post-turn-page-link-next">
|
||||
<a href="javascript:;">下一篇>></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
$(document).click(function (e) {
|
||||
$('.post-pop-plane').removeClass("post-pop-plane-show");
|
||||
e.stopPropagation();
|
||||
});
|
||||
$('.post-info-switch-sidebar').click(function () {
|
||||
$('.sidebar').toggleClass('sidebar-display');
|
||||
$('.post-main').toggleClass('post-main-full');
|
||||
$(this).toggleClass('post-info-switch-sidebar-show');
|
||||
})
|
||||
$('.clickshow').click(function () {
|
||||
$('#share-plane').removeClass("share-plane-show");
|
||||
$('#qrcode-plane').removeClass("share-plane-show");
|
||||
$(this).toggleClass('clickshow-show');
|
||||
});
|
||||
|
||||
function showplane(btn_name, plane_name, e) {
|
||||
$('.post-pop-plane').removeClass("post-pop-plane-show");
|
||||
$(plane_name).addClass("post-pop-plane-show");
|
||||
var btn_left = $(btn_name).position().left;
|
||||
var plane_width = $(plane_name).outerWidth();
|
||||
var btn_width = $(btn_name).outerWidth();
|
||||
var btn_hight = $(btn_name).outerHeight();
|
||||
$(plane_name).css('left', btn_left - plane_width / 2 + btn_width / 2 + 'px');
|
||||
$(plane_name).css('bottom', btn_hight + 10 + 'px');
|
||||
e.stopPropagation();
|
||||
}
|
||||
|
||||
$('.post-qrcode-btn').click((e) => {
|
||||
$('#qrcode-plane').addClass("share-plane-show");
|
||||
e.stopPropagation();
|
||||
});
|
||||
$(document).ready(function () {
|
||||
new QRCode($('#qrcode-img')[0], window.location.href);
|
||||
});
|
||||
$(this).next().animate({height: '100%'}, 500);
|
||||
$('.zd-plane-title').click(function (e) {
|
||||
if (!$(this).hasClass('zd-plane-title-zk')) {
|
||||
$(this).addClass('zd-plane-title-zk');
|
||||
$(this).next().slideDown();
|
||||
} else {
|
||||
$(this).removeClass('zd-plane-title-zk')
|
||||
$(this).next().slideUp();
|
||||
}
|
||||
})
|
||||
var clipboard = new ClipboardJS('.code-bar-btn-copy-fonticon', {
|
||||
text: function (trigger) {
|
||||
copynotmsg = 1;
|
||||
return $(trigger).parent().prev().text();
|
||||
}
|
||||
});
|
||||
|
||||
var copy_pwd = new ClipboardJS('.btn-copy-pwd', {
|
||||
text: function (trigger) {
|
||||
copynotmsg = 1;
|
||||
return $(trigger).parent().find('.c-downbtn-pwd-key').text();
|
||||
}
|
||||
});
|
||||
copy_pwd.on('success', function (e) {
|
||||
$(e.trigger).toggleClass('fal fa-clone')
|
||||
$(e.trigger).toggleClass('fal fa-check')
|
||||
setTimeout(function () {
|
||||
$(e.trigger).toggleClass('fal fa-clone')
|
||||
$(e.trigger).toggleClass('fal fa-check')
|
||||
}, 2000);
|
||||
});
|
||||
|
||||
|
||||
clipboard.on('success', function (e) {
|
||||
$(e.trigger).toggleClass('fal fa-clone')
|
||||
$(e.trigger).toggleClass('fal fa-check')
|
||||
setTimeout(function () {
|
||||
//$(e.trigger).text('复制')
|
||||
$(e.trigger).toggleClass('fal fa-clone')
|
||||
$(e.trigger).toggleClass('fal fa-check')
|
||||
}, 2000);
|
||||
});
|
||||
clipboard.on('error', function (e) {
|
||||
$(e.trigger).toggleClass('fal fa-clone')
|
||||
$(e.trigger).toggleClass('fal times')
|
||||
setTimeout(function () {
|
||||
$(e.trigger).toggleClass('fal fa-clone')
|
||||
$(e.trigger).toggleClass('fal times')
|
||||
}, 2000);
|
||||
});
|
||||
</script>
|
||||
</div>
|
||||
<div class="post-tool-plane">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="relevant-plane">
|
||||
<div class="plane-title">
|
||||
相关内容
|
||||
</div>
|
||||
<div>
|
||||
<ul class="relevant-list">
|
||||
<li><a href="../oracle-ebs-pl-sql-ar-receipt-detail/index.html">oracle-EBS-PL/sql AR
|
||||
收款的核销明细</a></li>
|
||||
<li><a href="../oracle-ebs-pl-sql-ap-aging/index.html">oracle-EBS-PL/sql AP 供应商的未清余额明细AP
|
||||
AGING</a></li>
|
||||
<li><a href="../oracle-ebs-pl-sql-ap-podetial/index.html">oracle-EBS-PL/sql AP
|
||||
发票中匹配的po明细按发票</a></li>
|
||||
<li><a href="../oracle-ebs-pl-sql-ap-pomatchdetails/index.html">oracle-EBS-PL/sql AP
|
||||
发票中匹配的po明细</a></li>
|
||||
<li><a href="">oracle-EBS-AP应付采购单匹配付款经历主要表(多图)</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div id="comments" class="responsesWrapper">
|
||||
<div class="reply-title">
|
||||
发表评论
|
||||
</div>
|
||||
<div id="respond" class="comment-respond">
|
||||
<h3 id="reply-title" class="comment-reply-title"><small><a rel="nofollow"
|
||||
id="cancel-comment-reply-link"
|
||||
href="#respond"
|
||||
style="display:none;">取消回复</a></small>
|
||||
</h3>
|
||||
<form action="https://www.zyxpp.com/wp-comments-post.php" method="post" id="form_comment"
|
||||
class="comment-form">
|
||||
<div class="comment-user-plane">
|
||||
<div class="logged-in-as"><img class="comment-user-avatar" width="48" height="auto"
|
||||
src="../wp-content/plugins/wp-user-avatar/images/wpua-96x96.png"
|
||||
alt=""></div>
|
||||
<div class="comment_form_textarea_box"><textarea class="comment_form_textarea"
|
||||
name="comment" id="comment"
|
||||
placeholder="发表你的看法"
|
||||
rows="5"></textarea>
|
||||
<div id="comment_addplane">
|
||||
<button class="popover-btn popover-btn-face" type="button"><i
|
||||
class="far fa-smile-wink"></i> 添加表情
|
||||
</button>
|
||||
<div class="conment-face-plane">
|
||||
<img class="img-pace"
|
||||
src="/template/default//img/face/yun.gif" width="30"
|
||||
facename="yun"><img class="img-pace"
|
||||
src="/template/default//img/face/youling.gif"
|
||||
width="30" facename="youling"><img class="img-pace"
|
||||
src="/template/default//img/face/yiwen.gif"
|
||||
width="30"
|
||||
facename="yiwen"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/yinxian.gif"
|
||||
width="30" facename="yinxian"><img class="img-pace"
|
||||
src="/template/default//img/face/xigua.gif"
|
||||
width="30" facename="xigua"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/xieyanxiao.gif"
|
||||
width="30" facename="xieyanxiao"><img class="img-pace"
|
||||
src="/template/default//img/face/xiaoku.gif"
|
||||
width="30" facename="xiaoku"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/xiaojiujie.gif"
|
||||
width="30" facename="xiaojiujie"><img class="img-pace"
|
||||
src="/template/default//img/face/wunai.gif"
|
||||
width="30" facename="wunai"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/wozuimei.gif"
|
||||
width="30" facename="wozuimei"><img class="img-pace"
|
||||
src="/template/default//img/face/woshou.gif"
|
||||
width="30" facename="woshou"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/weiqu.gif"
|
||||
width="30" facename="weiqu"><img class="img-pace"
|
||||
src="/template/default//img/face/tuosai.gif"
|
||||
width="30" facename="tuosai"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/touxiao.gif"
|
||||
width="30" facename="touxiao"><img class="img-pace"
|
||||
src="/template/default//img/face/tiaopi.gif"
|
||||
width="30" facename="tiaopi"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/shuai.gif"
|
||||
width="30" facename="shuai"><img class="img-pace"
|
||||
src="/template/default//img/face/shengli.gif"
|
||||
width="30" facename="shengli"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/se.gif" width="30"
|
||||
facename="se"><img class="img-pace"
|
||||
src="/template/default//img/face/quantou.gif"
|
||||
width="30" facename="quantou"><img class="img-pace"
|
||||
src="/template/default//img/face/qinqin.gif"
|
||||
width="30"
|
||||
facename="qinqin"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/qiang.gif"
|
||||
width="30" facename="qiang"><img class="img-pace"
|
||||
src="/template/default//img/face/piezui.gif"
|
||||
width="30" facename="piezui"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/penxue.gif"
|
||||
width="30" facename="penxue"><img class="img-pace"
|
||||
src="/template/default//img/face/nanguo.gif"
|
||||
width="30" facename="nanguo"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/liuhan.gif"
|
||||
width="30" facename="liuhan"><img class="img-pace"
|
||||
src="/template/default//img/face/lenghan.gif"
|
||||
width="30" facename="lenghan"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/leiben.gif"
|
||||
width="30" facename="leiben"><img class="img-pace"
|
||||
src="/template/default//img/face/ku.gif"
|
||||
width="30" facename="ku"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/koubi.gif"
|
||||
width="30" facename="koubi"><img class="img-pace"
|
||||
src="/template/default//img/face/keai.gif"
|
||||
width="30" facename="keai"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/jingkong.gif"
|
||||
width="30" facename="jingkong"><img class="img-pace"
|
||||
src="/template/default//img/face/jie.gif"
|
||||
width="30" facename="jie"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/huaixiao.gif"
|
||||
width="30" facename="huaixiao"><img class="img-pace"
|
||||
src="/template/default//img/face/hanxiao.gif"
|
||||
width="30" facename="hanxiao"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/haixiu.gif"
|
||||
width="30" facename="haixiu"><img class="img-pace"
|
||||
src="/template/default//img/face/guzhang.gif"
|
||||
width="30" facename="guzhang"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/ganga.gif"
|
||||
width="30" facename="ganga"><img class="img-pace"
|
||||
src="/template/default//img/face/fadai.gif"
|
||||
width="30" facename="fadai"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/doge.gif" width="30"
|
||||
facename="doge"><img class="img-pace"
|
||||
src="/template/default//img/face/dabing.gif"
|
||||
width="30" facename="dabing"><img class="img-pace"
|
||||
src="/template/default//img/face/ciya.gif"
|
||||
width="30"
|
||||
facename="ciya"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/caidao.gif"
|
||||
width="30" facename="caidao"><img class="img-pace"
|
||||
src="/template/default//img/face/cahan.gif"
|
||||
width="30" facename="cahan"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/bizui.gif"
|
||||
width="30" facename="bizui"><img class="img-pace"
|
||||
src="/template/default//img/face/baoquan.gif"
|
||||
width="30" facename="baoquan"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/aoman.gif"
|
||||
width="30" facename="aoman"><img class="img-pace"
|
||||
src="/template/default//img/face/aixin.gif"
|
||||
width="30" facename="aixin"><img
|
||||
class="img-pace"
|
||||
src="/template/default//img/face/OK.gif" width="30"
|
||||
facename="OK">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="comment_userinput">
|
||||
<div class="comment-form-author"><input id="author" name="author" placeholder="昵称(*)"
|
||||
type="text" value="" size="30"></div>
|
||||
<div class="comment-form-email"><input id="email" name="email" type="text"
|
||||
placeholder="邮箱(*)" value=""></div>
|
||||
<div class="comment-form-url"><input id="url" placeholder="网址" name="url" type="text"
|
||||
value="" size="30"></div>
|
||||
</div>
|
||||
<div class="comment-form-cookies-consent"><input id="wp-comment-cookies-consent"
|
||||
name="wp-comment-cookies-consent"
|
||||
type="checkbox" value="yes"> 记住用户信息
|
||||
</div>
|
||||
<div class="form-submit">
|
||||
<div style="text-align: right">
|
||||
<input name="submit" type="submit" id="submit" class="button primary-btn"
|
||||
value="发表评论"></div>
|
||||
<input type='hidden' name='comment_post_ID' value='322' id='comment_post_ID'>
|
||||
<input type='hidden' name='comment_parent' id='comment_parent' value='0'>
|
||||
</div>
|
||||
</form>
|
||||
</div><!-- #respond -->
|
||||
|
||||
<meta content="UserComments:0" itemprop="interactionCount">
|
||||
<h3 class="comments-title">共有 <span class="commentCount">0</span> 条评论</h3>
|
||||
|
||||
<div class="comment-sofa">
|
||||
<i class="fas fa-couch"></i> 沙发空余
|
||||
</div>
|
||||
|
||||
<script type='text/javascript' src='../wp-includes/js/comment-reply.min.js'></script>
|
||||
<script type='text/javascript'>
|
||||
|
||||
$('body').on('click', '.comment-reply-link', function (e) {
|
||||
addComment.moveForm("li-comment-" + $(this).attr('data-commentid'), $(this).attr('data-commentid'), "respond", $(this).attr('data-postid'));
|
||||
console.log("li-comment-" + $(this).attr('data-commentid'), $(this).attr('data-commentid'), "respond", $(this).attr('data-postid'));
|
||||
e.stopPropagation();
|
||||
return false;
|
||||
});
|
||||
$(document).click(function (e) {
|
||||
$('.conment-face-plane').css("opacity", "0");
|
||||
$('.conment-face-plane').css("visibility", "hidden");
|
||||
e.stopPropagation();
|
||||
});
|
||||
$('body').on('click', '.img-pace', function (e) {
|
||||
$('.comment_form_textarea').val($('.comment_form_textarea').val() + '[f=' + $(this).attr('facename') + ']')
|
||||
});
|
||||
$('body').on('click', '.popover-btn-face', function (e) {
|
||||
if ($('.conment-face-plane').css("visibility") == 'visible') {
|
||||
$('.conment-face-plane').css("opacity", "0");
|
||||
$('.conment-face-plane').css("visibility", "hidden");
|
||||
} else {
|
||||
$('.conment-face-plane').css("opacity", "1");
|
||||
$('.conment-face-plane').css("visibility", "visible");
|
||||
}
|
||||
e.stopPropagation();
|
||||
});
|
||||
</script>
|
||||
<nav class="comment-navigation pages">
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
<div class="sidebar">
|
||||
<div class="sidebar-box-list">
|
||||
<div class="aside-box"><h2 class="widget-title">热门文章</h2>
|
||||
<div class="hot-post-widget-item">
|
||||
<div>
|
||||
<span class="hot-post-widget-item-num">
|
||||
1 </span>
|
||||
<span class="hot-post-widget-item-title">
|
||||
<a href="../oracle-ebs-om-order-table/index1.html"> oracle-EBS甲骨文销售订单下单发放挑库发运(销售到出货全过程)主要相关表(多图)</a>
|
||||
</span>
|
||||
</div>
|
||||
<div class="hot-post-widget-item-meta">
|
||||
<div>
|
||||
2020-12-09
|
||||
</div>
|
||||
<div>
|
||||
<a href="../category/oracle-om/index.html"> Oracle-OM-销售物流</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hot-post-widget-item">
|
||||
<div>
|
||||
<span class="hot-post-widget-item-num">
|
||||
2 </span>
|
||||
<span class="hot-post-widget-item-title">
|
||||
<a href="../decoration-erp/index.html"> 某家装公司项目管理软件系统的设计思路</a>
|
||||
</span>
|
||||
</div>
|
||||
<div class="hot-post-widget-item-meta">
|
||||
<div>
|
||||
2021-03-24
|
||||
</div>
|
||||
<div>
|
||||
<a href="../category/talk/index.html"> 学习笔记</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hot-post-widget-item">
|
||||
<div>
|
||||
<span class="hot-post-widget-item-num">
|
||||
3 </span>
|
||||
<span class="hot-post-widget-item-title">
|
||||
<a href="../oaworkflowapprove/index1.html"> 常见企业OA办公审批流、工作流实现层级审批、层层签核的方式</a>
|
||||
</span>
|
||||
</div>
|
||||
<div class="hot-post-widget-item-meta">
|
||||
<div>
|
||||
2021-02-28
|
||||
</div>
|
||||
<div>
|
||||
<a href="../category/sql-server/index.html"> sql-server</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hot-post-widget-item">
|
||||
<div>
|
||||
<span class="hot-post-widget-item-num">
|
||||
4 </span>
|
||||
<span class="hot-post-widget-item-title">
|
||||
<a href="../oracle-ebs-pur-inventory-table/index1.html"> oracle-EBS-采购单创建接收检验入库经历主要表(多图)</a>
|
||||
</span>
|
||||
</div>
|
||||
<div class="hot-post-widget-item-meta">
|
||||
<div>
|
||||
2020-12-13
|
||||
</div>
|
||||
<div>
|
||||
<a href="../category/oracle-pur-prod/index.html"> Oracle-PROD-采购生产</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hot-post-widget-item">
|
||||
<div>
|
||||
<span class="hot-post-widget-item-num">
|
||||
5 </span>
|
||||
<span class="hot-post-widget-item-title">
|
||||
<a href="../oracle-ebs-pl-sql-ap-podetial/index.html"> oracle-EBS-PL/sql AP 发票中匹配的po明细按发票</a>
|
||||
</span>
|
||||
</div>
|
||||
<div class="hot-post-widget-item-meta">
|
||||
<div>
|
||||
2021-03-07
|
||||
</div>
|
||||
<div>
|
||||
<a href="../category/oracle-finance/index.html"> Oracle-Finance-财务</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hot-post-widget-item">
|
||||
<div>
|
||||
<span class="hot-post-widget-item-num">
|
||||
6 </span>
|
||||
<span class="hot-post-widget-item-title">
|
||||
<a href="../oracle-ebs-pl-sql-price-list/index.html"> oracle EBS PL/sql 查看销售订单的价目表Price List</a>
|
||||
</span>
|
||||
</div>
|
||||
<div class="hot-post-widget-item-meta">
|
||||
<div>
|
||||
2020-12-13
|
||||
</div>
|
||||
<div>
|
||||
<a href="../category/oracle-pl-sql/index.html"> Oracle-PL/SQL</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hot-post-widget-item">
|
||||
<div>
|
||||
<span class="hot-post-widget-item-num">
|
||||
7 </span>
|
||||
<span class="hot-post-widget-item-title">
|
||||
<a href="../oracle-ebs-om-confirm-transferto-ar/index.html"> oracle-EBS-PL/sql查看销售订单已经确认出货,和过账到AR应收的订单行明细,查看物流操作时间</a>
|
||||
</span>
|
||||
</div>
|
||||
<div class="hot-post-widget-item-meta">
|
||||
<div>
|
||||
2020-12-04
|
||||
</div>
|
||||
<div>
|
||||
<a href="../category/oracle-pl-sql/index.html"> Oracle-PL/SQL</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hot-post-widget-item">
|
||||
<div>
|
||||
<span class="hot-post-widget-item-num">
|
||||
8 </span>
|
||||
<span class="hot-post-widget-item-title">
|
||||
<a href="../sql-server-max-lineconverttocolumn/index.html"> SQL Server- 行列转换 行转列,多行转多列 – max 函数用法</a>
|
||||
</span>
|
||||
</div>
|
||||
<div class="hot-post-widget-item-meta">
|
||||
<div>
|
||||
2020-12-07
|
||||
</div>
|
||||
<div>
|
||||
<a href="../category/sql-server/index.html"> sql-server</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
{include file="public/footer"/}
|
||||
<script src="__LIB__/highlight/init.js"></script>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Reference in New Issue